.elementor-1006 .elementor-element.elementor-element-4318d60{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-ad5e86e *//* ===== RESET و تنظیمات پایه ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0d47a1; /* آبی تیره برای H1 */
    --secondary-color: #1565c0; /* آبی تیره برای H2 */
    --accent-color: #1976d2; /* آبی تیره */
    --accent-gradient: linear-gradient(135deg, #0d47a1 0%, #1565c0 100%);
    --text-color: #000000;
    --light-text: #333333;
    --glass-bg: rgba(255, 255, 255, 0.15);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    --card-bg: rgba(255, 255, 255, 0.2);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --black-btn-text: #000000; /* متن دکمه مشکی */
    --black-btn-bg: #ffffff;
    --black-btn-hover: #f0f0f0;
}

body {
    font-family: 'Vazirmatn', sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    color: var(--text-color);
    line-height: 1.8;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    font-size: 16px;
}

/* ===== استایل عکس هدر - 3 برابر بزرگتر در بالای صفحه ===== */
.header-image-container {
    width: 100%;
    max-width: 450px;
    height: 450px;
    margin: 0 auto 40px;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border: 4px solid rgba(255, 255, 255, 0.4);
    position: relative;
}

.header-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.header-image:hover {
    transform: scale(1.05);
}

/* ===== طراحی Glassmorphism برای محتوا ===== */
.glassmorphism-article {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 25px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    padding: 40px;
    margin-top: 20px;
    position: relative;
    overflow: hidden;
}

.glassmorphism-article::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--accent-gradient);
    z-index: 1;
}

/* ===== تایپوگرافی - همه تیترها آبی تیره ===== */
.main-title {
    color: #0d47a1 !important; /* آبی تیره برای H1 */
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 3px solid rgba(13, 71, 161, 0.3);
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.8);
    position: relative;
    font-weight: 700;
}

.main-title::after {
    content: '⚡';
    position: absolute;
    right: 10px;
    top: 10px;
    font-size: 2rem;
    animation: pulse 2s infinite;
}

.section-title {
    color: #1565c0 !important; /* آبی تیره برای H2 */
    font-size: 2rem;
    margin: 40px 0 20px;
    padding-right: 15px;
    border-right: 5px solid #1565c0;
    font-weight: 600;
}

h3 {
    color: #1976d2 !important; /* آبی تیره برای H3 */
    font-size: 1.7rem;
    margin: 30px 0 15px;
    font-weight: 600;
}

h4 {
    color: #1e88e5 !important; /* آبی تیره برای H4 */
    font-size: 1.4rem;
    margin: 25px 0 12px;
    font-weight: 500;
}

h5 {
    color: #2196f3 !important; /* آبی تیره برای H5 */
    font-size: 1.2rem;
    margin: 20px 0 10px;
    font-weight: 500;
}

h6 {
    color: #42a5f5 !important; /* آبی تیره برای H6 */
    font-size: 1.1rem;
    margin: 15px 0 8px;
    font-weight: 400;
}

/* عنوان ناوبری هم آبی تیره */
.nav-title {
    color: #0d47a1 !important;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ===== متن‌ها ===== */
.justified-text {
    text-align: justify;
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.9;
    text-align-last: right;
    color: var(--text-color);
}

/* ===== کارت‌های شیشه‌ای ===== */
.glass-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    padding: 25px;
    margin: 20px 0;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.1);
    transition: var(--transition);
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(31, 38, 135, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

/* ===== ناوبری ===== */
.content-nav {
    margin-bottom: 40px;
    position: sticky;
    top: 20px;
    z-index: 10;
}

.nav-list {
    list-style: none;
    padding-right: 20px;
}

.nav-list li {
    margin-bottom: 12px;
    position: relative;
    padding-right: 25px;
}

.nav-list li::before {
    content: '•';
    color: var(--accent-color);
    font-size: 1.5rem;
    position: absolute;
    right: 0;
    top: -2px;
}

.nav-link {
    color: #3949ab;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    padding: 5px 0;
    font-weight: 500;
}

.nav-link:hover {
    color: var(--primary-color);
    transform: translateX(-5px);
}

/* ===== شبکه‌بندی ===== */
.service-grid,
.feature-list,
.future-trends,
.tips-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.service-card,
.feature,
.trend,
.tip-box {
    height: 100%;
    text-align: center;
}

/* ===== مراحل فرآیند ===== */
.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin: 30px 0;
}

.step {
    flex: 1;
    min-width: 150px;
    max-width: 200px;
    text-align: center;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--accent-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 15px;
    box-shadow: 0 5px 15px rgba(79, 172, 254, 0.4);
}

/* ===== تبلیغات ===== */
.promotion-box {
    display: flex;
    align-items: center;
    margin: 40px 0;
    padding: 30px;
    gap: 25px;
    border-radius: 20px;
}

.ppt-promotion {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.2) 0%, rgba(255, 142, 83, 0.2) 100%);
    border-right: 5px solid #ff6b6b;
}

.reskar-promotion {
    background: linear-gradient(135deg, rgba(72, 187, 120, 0.2) 0%, rgba(56, 163, 165, 0.2) 100%);
    border-right: 5px solid #48bb78;
}

.promotion-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.promotion-content {
    flex: 1;
}

/* ===== دکمه‌های مشکی ===== */
.promotion-btn {
    display: inline-block;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    font-weight: bold;
    text-align: center;
    width: 100%;
}

.black-btn {
    background: var(--black-btn-bg);
    color: var(--black-btn-text) !important;
    padding: 18px 35px;
    border-radius: 12px;
    margin-top: 20px;
    font-size: 1.2rem;
    border: 2px solid rgba(0, 0, 0, 0.1);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.black-btn:hover {
    background: var(--black-btn-hover);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border-color: rgba(0, 0, 0, 0.2);
}

/* ===== جدول قیمت‌گذاری ===== */
.pricing-table {
    overflow-x: auto;
    margin: 30px 0;
}

.pricing-table table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.pricing-table th {
    background: rgba(13, 71, 161, 0.3);
    padding: 18px 15px;
    text-align: right;
    color: var(--primary-color);
    font-weight: 600;
    border-bottom: 2px solid var(--accent-color);
}

.pricing-table td {
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    text-align: right;
    color: var(--text-color);
}

.pricing-table tr:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* ===== باکس تماس ===== */
.contact-box, .contact-cta {
    text-align: center;
    padding: 30px;
    margin: 30px 0;
}

.contact-phone, .cta-phone {
    display: inline-block;
    background: var(--accent-gradient);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: bold;
    margin: 15px 0;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(13, 71, 161, 0.4);
}

.contact-phone:hover, .cta-phone:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(13, 71, 161, 0.6);
}

.contact-info p {
    margin: 10px 0;
    color: var(--light-text);
}

/* ===== نکات متخصص ===== */
.expert-tip {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.2) 0%, rgba(255, 235, 59, 0.2) 100%);
    border-right: 5px solid #ffc107;
    margin: 30px 0;
}

.expert-tip h4 {
    color: #1e88e5 !important;
}

/* ===== CTA نهایی ===== */
.final-cta {
    text-align: center;
    background: linear-gradient(135deg, rgba(13, 71, 161, 0.3) 0%, rgba(21, 101, 192, 0.3) 100%);
    padding: 40px;
    margin: 50px 0;
}

.final-cta h3 {
    color: #1565c0 !important;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.contact-method {
    text-align: center;
    padding: 20px;
}

.contact-method h4 {
    color: #1e88e5 !important;
}

.contact-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    display: block;
    margin: 10px 0;
}

.cta-note {
    font-size: 1rem;
    color: var(--text-color);
    margin-top: 25px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    border-right: 4px solid var(--accent-color);
}

/* ===== سوالات متداول ===== */
.faq-section {
    margin-top: 60px;
}

.faq-container {
    margin-top: 30px;
}

.faq-item {
    margin-bottom: 25px;
    transition: var(--transition);
}

.faq-item:hover {
    transform: translateX(-10px);
}

.faq-item h4 {
    color: #1e88e5 !important;
    margin-bottom: 15px;
    padding-right: 15px;
    border-right: 3px solid var(--accent-color);
}

/* ===== لینک‌های خارجی ===== */
.external-link {
    color: var(--accent-color);
    text-decoration: none;
    border-bottom: 2px dotted var(--accent-color);
    transition: var(--transition);
    font-weight: 500;
}

.external-link:hover {
    color: var(--primary-color);
    border-bottom-style: solid;
}

/* ===== انیمیشن‌ها ===== */
@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-pop {
    animation: fadeIn 0.8s ease-out;
}

.content-section {
    animation: fadeIn 0.5s ease-out;
}

/* ===== افکت‌های hover تعاملی ===== */
.glass-card, .service-card, .feature, .technique, .trend, .tip-box, .faq-item {
    transition: var(--transition);
}

.glass-card:hover, .service-card:hover, .feature:hover, .technique:hover, .trend:hover, .tip-box:hover, .faq-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(31, 38, 135, 0.25);
}

/* ===== واکنش‌گرایی ===== */
@media (max-width: 1024px) {
    .glassmorphism-article {
        padding: 30px;
    }
    
    .main-title {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    body {
        padding: 15px;
    }
    
    .header-image-container {
        height: 350px;
        margin-bottom: 30px;
    }
    
    .glassmorphism-article {
        padding: 20px;
    }
    
    .main-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    h3 { font-size: 1.3rem; }
    h4 { font-size: 1.2rem; }
    h5 { font-size: 1.1rem; }
    h6 { font-size: 1rem; }
    
    .promotion-box {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        gap: 20px;
    }
    
    .promotion-icon {
        font-size: 2.5rem;
    }
    
    .black-btn {
        padding: 15px 25px;
        font-size: 1.1rem;
    }
    
    .feature-list, .future-trends, .service-grid, .tips-container {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .step {
        max-width: 100%;
        margin-bottom: 25px;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    body {
        padding: 10px;
    }
    
    .header-image-container {
        height: 280px;
    }
    
    .main-title {
        font-size: 1.5rem;
    }
    
    .black-btn {
        padding: 12px 20px;
        font-size: 1rem;
    }
    
    .contact-phone, .cta-phone {
        padding: 12px 25px;
        font-size: 1.1rem;
    }
    
    .pricing-table {
        font-size: 0.9rem;
    }
}

@media (max-width: 400px) {
    .header-image-container {
        height: 250px;
    }
}

/* ===== خوانایی و دسترسی ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===== پشتیبانی از حالت تاریک ===== */
@media (prefers-color-scheme: dark) {
    :root {
        --primary-color: #0d47a1;
        --secondary-color: #1565c0;
        --accent-color: #1976d2;
        --black-btn-text: #ffffff;
        --black-btn-bg: #333333;
        --black-btn-hover: #444444;
    }
    
    body {
        background: linear-gradient(135deg, #0d1b2a 0%, #1b263b 100%);
        color: #e0e0e0;
    }
    
    .glassmorphism-article {
        background: rgba(30, 30, 40, 0.7);
        border-color: rgba(255, 255, 255, 0.1);
    }
    
    .glass-card {
        background: rgba(40, 40, 50, 0.6);
        border-color: rgba(255, 255, 255, 0.1);
    }
    
    .nav-link, .external-link {
        color: #90caf9;
    }
    
    .black-btn {
        background: #333;
        color: #fff !important;
        border-color: rgba(255, 255, 255, 0.2);
    }
    
    .black-btn:hover {
        background: #444;
    }
    
    /* در حالت تاریک هم تیترها آبی تیره باقی بمانند */
    .main-title,
    .section-title,
    h3, h4, h5, h6,
    .nav-title,
    .expert-tip h4,
    .final-cta h3,
    .contact-method h4,
    .faq-item h4 {
        color: inherit !important;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-09532a7 *//* بارگذاری فونت IRANSans */
@font-face {
    font-family: 'IRANSans';
    src: url('https://dockar.ir/wp-content/uploads/2025/11/pptkar-Font-IRANSans.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary-color: #ff7b00;
    --background-color: rgba(30, 144, 255, 0.85);
    --text-color: #333333;
    --hover-color: rgba(255, 255, 255, 0.4);
    --glass-effect: blur(25px);
    --glass-border: rgba(255, 255, 255, 0.25);
    --glass-shadow: 0 10px 35px rgba(0, 0, 0, 0.2);
    --icon-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    --gradient-start: rgba(30, 144, 255, 0.7);
    --gradient-end: rgba(70, 130, 255, 0.5);
    
    /* مقادیر استاندارد برای همه دستگاه‌ها */
    --icon-size: 55px;
    --icon-img-size: 24px;
    --font-size-text: 11px;
    --font-size-button: 13px;
    --font-size-handwritten: 14px;
    --bar-height: 90px;
    --bar-padding: 18px 35px;
    --button-padding: 12px 25px;
    --border-radius-icon: 16px;
    --border-radius-bar: 50px;
    --border-radius-button: 40px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.social-bar {
    position: fixed;
    bottom: 20px;
    right: 50%;
    transform: translateX(50%);
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    backdrop-filter: var(--glass-effect);
    -webkit-backdrop-filter: var(--glass-effect);
    border: 1px solid var(--glass-border);
    box-shadow: 
        var(--glass-shadow),
        inset 0 0 25px rgba(255, 255, 255, 0.12),
        0 0 30px rgba(30, 144, 255, 0.25);
    padding: var(--bar-padding);
    z-index: 9999;
    border-radius: var(--border-radius-bar);
    animation: fadeInUp 0.6s ease-out, glass-pulse 5s infinite ease-in-out;
    max-width: 90%;
    min-width: 580px;
    height: var(--bar-height);
    display: flex;
    align-items: center;
    font-family: 'IRANSans', Tahoma, sans-serif;
    direction: rtl;
    overflow: hidden;
}

/* افکت نور متحرک در پس‌زمینه */
.social-bar::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.03) 0%,
        rgba(255, 255, 255, 0.1) 25%,
        rgba(30, 144, 255, 0.08) 50%,
        rgba(255, 255, 255, 0.1) 75%,
        rgba(255, 255, 255, 0.03) 100%
    );
    z-index: -1;
    animation: shimmer-flow 10s infinite linear;
}

@keyframes shimmer-flow {
    0% { transform: translateX(-25%) translateY(-25%) rotate(0deg); }
    100% { transform: translateX(-25%) translateY(-25%) rotate(360deg); }
}

@keyframes glass-pulse {
    0%, 100% { 
        box-shadow: 
            var(--glass-shadow),
            inset 0 0 25px rgba(255, 255, 255, 0.12),
            0 0 30px rgba(30, 144, 255, 0.25);
    }
    50% { 
        box-shadow: 
            0 12px 40px rgba(0, 0, 0, 0.25),
            inset 0 0 30px rgba(255, 255, 255, 0.18),
            0 0 40px rgba(30, 144, 255, 0.35);
    }
}

.social-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    gap: 30px;
    position: relative;
    z-index: 2;
}

.social-icons {
    display: flex;
    gap: 20px;
    flex: 1;
    justify-content: center;
}

.social-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    padding: 4px;
}

.social-item:hover {
    transform: translateY(-6px);
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--icon-size);
    height: var(--icon-size);
    border-radius: var(--border-radius-icon);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 
        var(--icon-shadow),
        inset 0 0 0 1px rgba(255, 255, 255, 0.12);
    position: relative;
    overflow: hidden;
    margin-bottom: 6px;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.25),
        transparent
    );
    transition: 0.6s;
}

.social-icon:hover::before {
    left: 100%;
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.08);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.25),
        inset 0 0 0 1px rgba(255, 255, 255, 0.2),
        0 0 20px rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.15);
}

.social-icon img {
    width: var(--icon-img-size);
    height: var(--icon-img-size);
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.social-icon:hover img {
    transform: scale(1.1);
}

.social-text {
    font-size: var(--font-size-text);
    color: var(--text-color);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    margin-top: 3px;
    text-align: center;
    font-weight: 600;
    font-family: 'IRANSans', Tahoma, sans-serif;
    background: rgba(0, 0, 0, 0.2);
    padding: 3px 10px;
    border-radius: 12px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.25s ease;
    white-space: nowrap;
}

.social-item:hover .social-text {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.order-section,
.contact-section {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: var(--button-padding);
    border-radius: var(--border-radius-button);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.15),
        inset 0 0 0 1px rgba(255, 255, 255, 0.15);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 50px;
    min-width: 160px;
    justify-content: center;
}

.order-section::before,
.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: 0.6s;
}

.order-section:hover::before,
.contact-section:hover::before {
    left: 100%;
}

.order-section {
    cursor: default;
    background: rgba(255, 123, 0, 0.2);
    border: 1px solid rgba(255, 123, 0, 0.3);
    box-shadow: 
        0 4px 20px rgba(255, 123, 0, 0.2),
        inset 0 0 0 1px rgba(255, 255, 255, 0.15);
}

.contact-section:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    box-shadow: 
        0 6px 25px rgba(0, 0, 0, 0.2),
        inset 0 0 0 1px rgba(255, 255, 255, 0.25);
}

.order-text,
.contact-text {
    color: var(--text-color);
    font-size: var(--font-size-button);
    font-weight: 700;
    margin-right: 10px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    font-family: 'IRANSans', Tahoma, sans-serif;
    position: relative;
    z-index: 2;
}

.handwritten-text {
    font-weight: 700;
    font-size: var(--font-size-handwritten);
    color: var(--text-color);
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
    position: relative;
    display: inline-block;
    font-family: 'IRANSans', Tahoma, sans-serif;
    background: rgba(255, 255, 255, 0.12);
    padding: 6px 15px;
    border-radius: 20px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.handwritten-text::after {
    content: '';
    position: absolute;
    bottom: -3px;
    right: 10%;
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.8) 20%, 
        rgba(255, 255, 255, 1) 50%, 
        rgba(255, 255, 255, 0.8) 80%, 
        transparent 100%
    );
    animation: shimmer 3s infinite ease-in-out;
    border-radius: 2px;
}

@keyframes shimmer {
    0%, 100% { 
        opacity: 0.3; 
        transform: scaleX(0.7); 
    }
    50% { 
        opacity: 1; 
        transform: scaleX(1); 
    }
}

/* انیمیشن ورود */
@keyframes fadeInUp {
    from { 
        opacity: 0; 
        transform: translateY(30px) translateX(50%); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0) translateX(50%); 
    }
}

/* رسپانسیو برای تبلت */
@media (max-width: 1024px) {
    :root {
        --icon-size: 50px;
        --icon-img-size: 22px;
        --font-size-text: 10px;
        --font-size-button: 12px;
        --font-size-handwritten: 13px;
        --bar-height: 85px;
        --bar-padding: 16px 30px;
        --button-padding: 11px 22px;
    }
    
    .social-bar {
        min-width: 520px;
    }
    
    .social-icons {
        gap: 18px;
    }
    
    .order-section,
    .contact-section {
        min-width: 150px;
        height: 48px;
    }
}

/* رسپانسیو برای موبایل */
@media (max-width: 768px) {
    :root {
        --icon-size: 45px;
        --icon-img-size: 20px;
        --font-size-text: 9px;
        --font-size-button: 11px;
        --font-size-handwritten: 12px;
        --bar-height: auto;
        --bar-padding: 15px 20px;
        --button-padding: 10px 20px;
        --border-radius-icon: 14px;
        --border-radius-bar: 40px;
        --border-radius-button: 35px;
    }
    
    .social-bar {
        position: fixed;
        bottom: 15px;
        left: 15px;
        right: 15px;
        transform: none;
        border-radius: var(--border-radius-bar);
        padding: var(--bar-padding);
        min-width: auto;
        max-width: 100%;
        min-height: 100px;
        flex-direction: column;
    }
    
    @keyframes fadeInUp {
        from { 
            opacity: 0; 
            transform: translateY(30px); 
        }
        to { 
            opacity: 1; 
            transform: translateY(0); 
        }
    }
    
    .social-container { 
        flex-direction: column;
        gap: 15px; 
        padding: 0;
    }
    
    .social-icons { 
        gap: 12px; 
        width: 100%;
        justify-content: center;
        order: 2;
        flex-wrap: wrap; /* تغییر اصلی: اجازه می‌دهد آیکون‌ها در چند ردیف نمایش داده شوند */
        row-gap: 8px; /* فاصله عمودی بین ردیف‌ها */
    }
    
    .social-item {
        flex: 0 0 auto; /* اجازه می‌دهد آیکون‌ها اندازه خود را حفظ کنند */
    }
    
    .social-icon { 
        margin-bottom: 5px;
    }
    
    .social-text { 
        padding: 2px 8px;
        white-space: nowrap; /* متن زیر آیکون‌ها در یک خط باقی می‌ماند */
    }
    
    .order-section, 
    .contact-section { 
        order: 1; 
        margin-bottom: 5px;
        min-width: 140px;
        height: 45px;
    }
    
    .handwritten-text {
        padding: 5px 12px;
    }
}

/* رسپانسیو برای موبایل‌های کوچک */
@media (max-width: 480px) {
    :root {
        --icon-size: 40px;
        --icon-img-size: 18px;
        --font-size-text: 8px;
        --font-size-button: 10px;
        --font-size-handwritten: 11px;
        --bar-padding: 12px 15px;
        --button-padding: 8px 16px;
        --border-radius-icon: 12px;
        --border-radius-bar: 35px;
        --border-radius-button: 30px;
    }
    
    .social-bar {
        padding: var(--bar-padding);
        min-height: 95px;
    }
    
    .social-icons {
        gap: 10px;
        row-gap: 6px; /* فاصله عمودی کمتر برای موبایل‌های کوچک */
    }
    
    .social-item {
        /* در موبایل‌های کوچک‌تر، آیکون‌ها می‌توانند کمی فشرده‌تر باشند */
    }
    
    .order-section, 
    .contact-section {
        min-width: 130px;
        height: 40px;
    }
}

/* رسپانسیو برای موبایل‌های خیلی کوچک */
@media (max-width: 360px) {
    :root {
        --icon-size: 38px;
        --icon-img-size: 16px;
        --font-size-text: 7px;
        --font-size-button: 9px;
        --bar-padding: 10px 12px;
    }
    
    .social-icons {
        gap: 8px;
        row-gap: 5px;
    }
    
    .social-text {
        padding: 1px 6px;
    }
    
    .order-section, 
    .contact-section {
        min-width: 120px;
        height: 38px;
    }
}

/* افکت هنگام اسکرول */
.social-bar.scrolled {
    background: rgba(30, 144, 255, 0.15);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
}/* End custom CSS */