/* ============================================================
 * modern-pages.css
 * استایل‌های مدرن صفحات فروشگاه (درباره ما، تماس با ما و...)
 * ============================================================ */

/* ============================================================
 * صفحه درباره ما
 * ============================================================ */

.sl-about-page {
    font-family: 'Estedad', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    direction: rtl;
    color: #1a1a2e;
    overflow-x: hidden;
}

.sl-about-wrapper {
    max-width: 100%;
}

/* ============================================================
 * بخش هدر
 * ============================================================ */

.sl-about-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.sl-about-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

.sl-about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 46, 0.6);
}

.sl-about-hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(244, 189, 8, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(244, 189, 8, 0.05) 0%, transparent 50%),
        repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(255, 255, 255, 0.02) 40px, rgba(255, 255, 255, 0.02) 41px);
}

.sl-about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 30px;
    width: 100%;
}

.sl-about-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 50px;
    background: rgba(244, 189, 8, 0.15);
    border: 1px solid rgba(244, 189, 8, 0.3);
    color: #f4bd08;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.sl-about-hero-content h1 {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800;
    color: #fff;
    margin: 0 0 16px 0;
    line-height: 1.2;
    max-width: 700px;
}

.sl-about-hero-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 0 30px 0;
    line-height: 1.7;
}

.sl-about-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.sl-about-hero-actions .sl-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.sl-about-hero-actions .sl-btn.primary {
    background: #f4bd08;
    color: #1a1a2e;
    box-shadow: 0 8px 24px rgba(244, 189, 8, 0.3);
}

.sl-about-hero-actions .sl-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(244, 189, 8, 0.4);
}

.sl-about-hero-actions .sl-btn.ghost {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.sl-about-hero-actions .sl-btn.ghost:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

/* ============================================================
 * بخش آمار
 * ============================================================ */

.sl-about-stats {
    padding: 60px 20px;
    background: #f8fafc;
}

.sl-stats-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.sl-stat-item {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e8ecf0;
    transition: all 0.3s ease;
}

.sl-stat-item:hover {
    transform: translateY(-4px);
    border-color: #f4bd08;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

.sl-stat-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 12px;
    border-radius: 14px;
    background: rgba(244, 189, 8, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #f4bd08;
}

.sl-stat-number {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a2e;
    display: block;
    line-height: 1.2;
}

.sl-stat-label {
    font-size: 14px;
    color: #8896a3;
    margin-top: 4px;
}

/* ============================================================
 * بخش داستان ما
 * ============================================================ */

.sl-about-story {
    padding: 70px 20px;
    background: #fff;
}

.sl-story-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.sl-story-image {
    position: relative;
}

.sl-story-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #f1f5f9;
    aspect-ratio: 4/3;
}

.sl-story-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sl-story-image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8fafc, #e8ecf0);
    color: #cbd5e1;
}

.sl-story-image-placeholder i {
    font-size: 48px;
    margin-bottom: 12px;
}

.sl-story-image-placeholder span {
    font-size: 16px;
    font-weight: 600;
}

.sl-story-experience {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #f4bd08;
    padding: 16px 24px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(244, 189, 8, 0.3);
}

.sl-exp-number {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1;
}

.sl-exp-label {
    font-size: 13px;
    color: #1a1a2e;
    font-weight: 600;
}

.sl-story-content {
    padding: 20px 0;
}

.sl-story-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 14px;
    border-radius: 50px;
    background: rgba(244, 189, 8, 0.12);
    color: #f4bd08;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 12px;
}

.sl-story-content h2 {
    font-size: clamp(28px, 3.5vw, 38px);
    font-weight: 800;
    color: #1a1a2e;
    margin: 0 0 16px 0;
    line-height: 1.3;
}

.sl-story-content p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.8;
    margin: 0 0 12px 0;
}

.sl-story-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 20px;
}

.sl-story-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: #f8fafc;
    border-radius: 10px;
    border: 1px solid #e8ecf0;
}

.sl-story-feature i {
    font-size: 18px;
    color: #f4bd08;
}

.sl-story-feature span {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a2e;
}

/* ============================================================
 * بخش ارزش‌های ما
 * ============================================================ */

.sl-about-values {
    padding: 70px 20px;
    background: #f8fafc;
}

.sl-values-header {
    max-width: 1280px;
    margin: 0 auto 40px;
    text-align: center;
}

.sl-values-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 14px;
    border-radius: 50px;
    background: rgba(244, 189, 8, 0.12);
    color: #f4bd08;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 12px;
}

.sl-values-header h2 {
    font-size: clamp(28px, 3vw, 36px);
    font-weight: 800;
    color: #1a1a2e;
    margin: 0 0 8px 0;
}

.sl-values-header p {
    font-size: 16px;
    color: #8896a3;
    margin: 0;
}

.sl-values-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.sl-value-card {
    background: #fff;
    border-radius: 20px;
    padding: 36px 30px 30px;
    border: 1px solid #e8ecf0;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.sl-value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #f4bd08;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sl-value-card:hover {
    transform: translateY(-6px);
    border-color: #f4bd08;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06);
}

.sl-value-card:hover::before {
    opacity: 1;
}

.sl-value-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(244, 189, 8, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #f4bd08;
    margin-bottom: 16px;
}

.sl-value-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 8px 0;
}

.sl-value-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.7;
    margin: 0 0 16px 0;
}

.sl-value-number {
    font-size: 48px;
    font-weight: 900;
    color: rgba(244, 189, 8, 0.08);
    position: absolute;
    bottom: 8px;
    right: 16px;
    line-height: 1;
}

/* ============================================================
 * بخش تیم
 * ============================================================ */

.sl-about-team {
    padding: 70px 20px;
    background: #fff;
}

.sl-team-header {
    max-width: 1280px;
    margin: 0 auto 40px;
    text-align: center;
}

.sl-team-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 14px;
    border-radius: 50px;
    background: rgba(244, 189, 8, 0.12);
    color: #f4bd08;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 12px;
}

.sl-team-header h2 {
    font-size: clamp(28px, 3vw, 36px);
    font-weight: 800;
    color: #1a1a2e;
    margin: 0 0 8px 0;
}

.sl-team-header p {
    font-size: 16px;
    color: #8896a3;
    margin: 0;
}

.sl-team-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.sl-team-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px 24px 24px;
    border: 1px solid #e8ecf0;
    text-align: center;
    transition: all 0.3s ease;
}

.sl-team-card:hover {
    transform: translateY(-6px);
    border-color: #f4bd08;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06);
}

.sl-team-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 16px;
    border-radius: 50%;
    overflow: hidden;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #cbd5e1;
    border: 3px solid #f4bd08;
}

.sl-team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sl-team-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 4px 0;
}

.sl-team-role {
    display: block;
    font-size: 13px;
    color: #f4bd08;
    font-weight: 600;
    margin-bottom: 8px;
}

.sl-team-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin: 0 0 12px 0;
}

.sl-team-social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.sl-team-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f8fafc;
    border: 1px solid #e8ecf0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sl-team-social a:hover {
    background: #f4bd08;
    border-color: #f4bd08;
    color: #1a1a2e;
    transform: translateY(-2px);
}

/* ============================================================
 * بخش تماس
 * ============================================================ */

.sl-about-contact {
    padding: 70px 20px;
    background: #f8fafc;
}

.sl-contact-info-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.sl-contact-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px 24px;
    border: 1px solid #e8ecf0;
    text-align: center;
    transition: all 0.3s ease;
}

.sl-contact-card:hover {
    transform: translateY(-4px);
    border-color: #f4bd08;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

.sl-contact-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 12px;
    border-radius: 14px;
    background: rgba(244, 189, 8, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #f4bd08;
}

.sl-contact-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 6px 0;
}

.sl-contact-card p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

.sl-contact-card a {
    color: #f4bd08;
    text-decoration: none;
    font-weight: 600;
}

.sl-contact-card a:hover {
    text-decoration: underline;
}

/* ============================================================
 * بخش دعوت به اقدام
 * ============================================================ */

.sl-about-cta {
    padding: 70px 20px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

.sl-cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
}

.sl-cta-content h2 {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 800;
    margin: 0 0 12px 0;
}

.sl-cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 30px 0;
    line-height: 1.7;
}

.sl-cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.sl-cta-actions .sl-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.sl-cta-actions .sl-btn.primary {
    background: #f4bd08;
    color: #1a1a2e;
    box-shadow: 0 8px 24px rgba(244, 189, 8, 0.3);
}

.sl-cta-actions .sl-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(244, 189, 8, 0.4);
}

.sl-cta-actions .sl-btn.ghost {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.sl-cta-actions .sl-btn.ghost:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

/* ============================================================
 * ریسپانسیو
 * ============================================================ */

@media (max-width: 992px) {
    .sl-story-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .sl-story-image {
        order: -1;
    }
    
    .sl-values-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .sl-team-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .sl-contact-info-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .sl-about-hero {
        min-height: 400px;
    }
    
    .sl-about-hero-content {
        padding: 60px 20px;
    }
    
    .sl-about-hero-content h1 {
        font-size: 28px;
    }
    
    .sl-about-hero-content p {
        font-size: 15px;
    }
    
    .sl-stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    
    .sl-stat-number {
        font-size: 28px;
    }
    
    .sl-values-grid {
        grid-template-columns: 1fr;
    }
    
    .sl-team-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: 0 auto;
    }
    
    .sl-contact-info-grid {
        grid-template-columns: 1fr;
        max-width: 380px;
        margin: 0 auto;
    }
    
    .sl-story-features {
        grid-template-columns: 1fr 1fr;
    }
    
    .sl-story-experience {
        bottom: -15px;
        right: -10px;
        padding: 12px 18px;
    }
    
    .sl-exp-number {
        font-size: 22px;
    }
    
    .sl-cta-content h2 {
        font-size: 24px;
    }
    
    .sl-cta-content p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .sl-about-hero-actions {
        flex-direction: column;
    }
    
    .sl-about-hero-actions .sl-btn {
        width: 100%;
        justify-content: center;
    }
    
    .sl-stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .sl-stat-item {
        padding: 20px 16px;
    }
    
    .sl-stat-number {
        font-size: 24px;
    }
    
    .sl-story-features {
        grid-template-columns: 1fr;
    }
    
    .sl-cta-actions {
        flex-direction: column;
    }
    
    .sl-cta-actions .sl-btn {
        width: 100%;
        justify-content: center;
    }
}


/* ============================================================
 * modern-pages.css - اضافه کنید
 * استایل‌های صفحه ارتباط با ما
 * ============================================================ */

/* ============================================================
 * صفحه ارتباط با ما
 * ============================================================ */

.sl-contact-page {
    font-family: 'Estedad', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    direction: rtl;
    color: #1a1a2e;
    overflow-x: hidden;
}

.sl-contact-wrapper {
    max-width: 100%;
}

/* ============================================================
 * بخش هدر
 * ============================================================ */

.sl-contact-hero {
    position: relative;
    min-height: 350px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

.sl-contact-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.sl-contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 46, 0.5);
}

.sl-contact-hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(244, 189, 8, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(244, 189, 8, 0.05) 0%, transparent 50%);
}

.sl-contact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 60px 30px;
    width: 100%;
}

.sl-contact-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 50px;
    background: rgba(244, 189, 8, 0.15);
    border: 1px solid rgba(244, 189, 8, 0.3);
    color: #f4bd08;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.sl-contact-hero-content h1 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: #fff;
    margin: 0 0 12px 0;
    line-height: 1.2;
    max-width: 600px;
}

.sl-contact-hero-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 500px;
    margin: 0;
    line-height: 1.7;
}

/* ============================================================
 * بخش اطلاعات تماس
 * ============================================================ */

.sl-contact-info {
    padding: 60px 20px;
    background: #f8fafc;
}

.sl-contact-info-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.sl-contact-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px 24px;
    border: 1px solid #e8ecf0;
    transition: all 0.3s ease;
}

.sl-contact-card:hover {
    transform: translateY(-4px);
    border-color: #f4bd08;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

.sl-contact-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 12px;
}

.sl-contact-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 6px 0;
}

.sl-contact-card p {
    font-size: 14px;
    color: #64748b;
    margin: 0 0 4px 0;
    line-height: 1.6;
}

.sl-contact-link {
    color: #f4bd08;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.sl-contact-link:hover {
    color: #c99200;
    gap: 10px;
}

/* ساعات کاری */
.sl-hours-row {
    display: flex;
    justify-content: space-between;
    padding: 4px 0;
    font-size: 14px;
    border-bottom: 1px solid #f1f5f9;
}

.sl-hours-row:last-child {
    border-bottom: none;
}

.sl-hours-day {
    color: #1a1a2e;
    font-weight: 500;
}

.sl-hours-time {
    color: #64748b;
}

.sl-hours-time.closed {
    color: #ef4444;
    font-weight: 600;
}

/* ============================================================
 * بخش نقشه و فرم
 * ============================================================ */

.sl-contact-map-form {
    padding: 60px 20px;
    background: #fff;
}

.sl-map-form-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* ============================================================
 * نقشه
 * ============================================================ */

.sl-map-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sl-map-container {
    border-radius: 20px;
    overflow: hidden;
    height: 450px;
    background: #f1f5f9;
    border: 1px solid #e8ecf0;
    position: relative;
}

.sl-map-container .leaflet-container {
    border-radius: 20px;
    z-index: 1;
}

.sl-map-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sl-map-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: #64748b;
}

.sl-map-loading i {
    font-size: 32px;
    color: #f4bd08;
}

.sl-map-info {
    background: #f8fafc;
    border-radius: 16px;
    padding: 16px 20px;
    border: 1px solid #e8ecf0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.sl-map-marker-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sl-map-marker-info i {
    font-size: 24px;
    color: #f4bd08;
}

.sl-map-marker-info strong {
    display: block;
    font-size: 14px;
    color: #1a1a2e;
}

.sl-map-marker-info span {
    font-size: 12px;
    color: #64748b;
}

.sl-map-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.sl-map-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid #e8ecf0;
    color: #1a1a2e;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.sl-map-btn:hover {
    border-color: #f4bd08;
    background: rgba(244, 189, 8, 0.05);
    transform: translateY(-2px);
}

/* ============================================================
 * فرم تماس
 * ============================================================ */

.sl-form-wrapper {
    background: #fff;
    border-radius: 20px;
    padding: 36px 32px;
    border: 1px solid #e8ecf0;
}

.sl-form-header {
    margin-bottom: 24px;
}

.sl-form-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 14px;
    border-radius: 50px;
    background: rgba(244, 189, 8, 0.12);
    color: #f4bd08;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 8px;
}

.sl-form-header h2 {
    font-size: 24px;
    font-weight: 800;
    color: #1a1a2e;
    margin: 0 0 4px 0;
}

.sl-form-header p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

.sl-form-notice {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 500;
}

.sl-form-notice.success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.sl-form-notice.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.sl-form-notice i {
    font-size: 20px;
}

.sl-contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sl-form-row {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sl-form-row.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.sl-form-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sl-form-group label {
    font-size: 13px;
    font-weight: 600;
    color: #1a1a2e;
}

.sl-form-group .required {
    color: #ef4444;
}

.sl-form-control {
    padding: 12px 16px;
    border: 2px solid #e8ecf0;
    border-radius: 12px;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #f8fafc;
    width: 100%;
}

.sl-form-control:focus {
    border-color: #f4bd08;
    outline: none;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(244, 189, 8, 0.1);
}

.sl-form-control::placeholder {
    color: #a0aec0;
}

.sl-form-control.error {
    border-color: #ef4444;
}

.sl-form-error {
    font-size: 12px;
    color: #ef4444;
    min-height: 18px;
}

.sl-form-char-count {
    font-size: 12px;
    color: #a0aec0;
    text-align: left;
    margin-top: 4px;
}

.sl-form-char-count #sl-char-count {
    font-weight: 600;
}

/* دکمه فرم */
.sl-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    background: #f4bd08;
    color: #1a1a2e;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    width: 100%;
}

.sl-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(244, 189, 8, 0.3);
}

.sl-btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.sl-form-note {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #a0aec0;
    margin: 0;
}

.sl-form-note i {
    color: #f4bd08;
}

/* ============================================================
 * بخش شبکه‌های اجتماعی
 * ============================================================ */

.sl-contact-social {
    padding: 60px 20px;
    background: #f8fafc;
}

.sl-social-header {
    max-width: 1280px;
    margin: 0 auto 32px;
    text-align: center;
}

.sl-social-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 14px;
    border-radius: 50px;
    background: rgba(244, 189, 8, 0.12);
    color: #f4bd08;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 8px;
}

.sl-social-header h2 {
    font-size: clamp(26px, 3vw, 32px);
    font-weight: 800;
    color: #1a1a2e;
    margin: 0 0 4px 0;
}

.sl-social-header p {
    font-size: 16px;
    color: #64748b;
    margin: 0;
}

.sl-social-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.sl-social-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: #fff;
    border-radius: 16px;
    border: 2px solid #e8ecf0;
    text-decoration: none;
    transition: all 0.3s ease;
    gap: 12px;
}

.sl-social-card:hover {
    transform: translateY(-4px);
    border-color: #f4bd08;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.sl-social-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    flex-shrink: 0;
}

.sl-social-name {
    flex: 1;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a2e;
}

.sl-social-arrow {
    color: #cbd5e1;
    font-size: 14px;
    transition: all 0.3s ease;
}

.sl-social-card:hover .sl-social-arrow {
    color: #f4bd08;
    transform: translateX(-4px);
}

/* ============================================================
 * بخش پرسش‌های متداول
 * ============================================================ */

.sl-contact-faq {
    padding: 60px 20px;
    background: #fff;
}

.sl-faq-header {
    max-width: 1280px;
    margin: 0 auto 32px;
    text-align: center;
}

.sl-faq-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 14px;
    border-radius: 50px;
    background: rgba(244, 189, 8, 0.12);
    color: #f4bd08;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 8px;
}

.sl-faq-header h2 {
    font-size: clamp(26px, 3vw, 32px);
    font-weight: 800;
    color: #1a1a2e;
    margin: 0 0 4px 0;
}

.sl-faq-header p {
    font-size: 16px;
    color: #64748b;
    margin: 0;
}

.sl-faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sl-faq-item {
    border: 1px solid #e8ecf0;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    transition: all 0.3s ease;
}

.sl-faq-item:hover {
    border-color: #f4bd08;
}

.sl-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 16px 20px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: #1a1a2e;
    text-align: right;
    font-family: inherit;
    transition: all 0.3s ease;
    gap: 12px;
}

.sl-faq-question:hover {
    background: #f8fafc;
}

.sl-faq-question i {
    font-size: 16px;
    color: #a0aec0;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.sl-faq-question.active {
    background: rgba(244, 189, 8, 0.05);
}

.sl-faq-question.active i {
    color: #f4bd08;
}

.sl-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 20px;
}

.sl-faq-answer p {
    padding: 0 0 16px 0;
    margin: 0;
    font-size: 14px;
    color: #64748b;
    line-height: 1.7;
}

/* ============================================================
 * بخش دعوت به اقدام
 * ============================================================ */

.sl-contact-cta {
    padding: 60px 20px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

.sl-cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
}

.sl-cta-icon {
    font-size: 48px;
    color: #f4bd08;
    margin-bottom: 16px;
}

.sl-cta-content h2 {
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 800;
    margin: 0 0 8px 0;
}

.sl-cta-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 24px 0;
}

.sl-cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.sl-cta-actions .sl-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.sl-cta-actions .sl-btn.primary {
    background: #f4bd08;
    color: #1a1a2e;
}

.sl-cta-actions .sl-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(244, 189, 8, 0.3);
}

.sl-cta-actions .sl-btn.ghost {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.sl-cta-actions .sl-btn.ghost:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

/* ============================================================
 * ریسپانسیو
 * ============================================================ */

@media (max-width: 992px) {
    .sl-contact-info-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .sl-map-form-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .sl-map-container {
        height: 350px;
    }
    
    .sl-social-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .sl-contact-hero {
        min-height: 280px;
    }
    
    .sl-contact-hero-content {
        padding: 40px 20px;
    }
    
    .sl-contact-hero-content h1 {
        font-size: 26px;
    }
    
    .sl-contact-hero-content p {
        font-size: 15px;
    }
    
    .sl-contact-info-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .sl-form-row.two-col {
        grid-template-columns: 1fr;
    }
    
    .sl-form-wrapper {
        padding: 24px 20px;
    }
    
    .sl-map-container {
        height: 280px;
    }
    
    .sl-map-info {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .sl-map-actions {
        width: 100%;
    }
    
    .sl-map-btn {
        flex: 1;
        justify-content: center;
    }
    
    .sl-social-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .sl-social-card {
        padding: 12px 16px;
    }
    
    .sl-faq-question {
        font-size: 14px;
        padding: 14px 16px;
    }
    
    .sl-cta-actions {
        flex-direction: column;
    }
    
    .sl-cta-actions .sl-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .sl-contact-hero-content h1 {
        font-size: 22px;
    }
    
    .sl-social-grid {
        grid-template-columns: 1fr;
    }
    
    .sl-map-container {
        height: 220px;
    }
    
    .sl-map-actions {
        flex-direction: column;
    }
    
    .sl-contact-card {
        padding: 20px 16px;
    }
}
