
        /* تنظیمات پایه */
        * {
            box-sizing: border-box; /* جلوگیری از بیرون زدن المان‌ها به خاطر پدینگ */
        }

        :root {
            --primary-color: #002642; /* رنگ سرمه‌ای تیره */
            --text-gray: #555555;
            --bg-color: #f8faff;
            --border-color: #e2e8f0;
        }

        body {
            margin: 0;
            background-color: var(--bg-color);
            color: var(--primary-color);
            overflow-x: hidden; /* جلوگیری از اسکرول افقی */
        }

        /* کانتینر اصلی */
        .hero-section {
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
            gap: 20px;
        }

        /* بخش محتوای متنی (راست) */
        .hero-content {
            flex: 1;
            width: 100%;
        }

        .hero-title {
            font-size: 2.1rem;
            font-weight: 800;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .hero-subtitle {
            font-size: 1.1rem;
            color: var(--text-gray);
            line-height: 1.8;
            margin-bottom: 40px;
        }

        /* ویژگی‌ها (Features) */
        .features-container {
            display: flex;
            margin-bottom: 40px;
            width: 100%;
        }

        .feature-box {
            display: flex;
            align-items: center;
            background: #ffffff;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            flex: 1;
            gap: 10px;
            flex-direction: column;
            padding: 10px;
        }

        .feature-icon {
            background: #f0f4ff;
            color: var(--primary-color);
            border-radius: 50%;
            width: 40px;
            height: 40px;
            min-width: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .feature-icon svg {
            width: 20px;
            height: 20px;
            fill: currentColor;
        }

        .feature-text h4 {
            margin: 0 0 5px 0;
            font-size: 0.95rem;
            font-weight: bold;
        }

        .feature-text p {
            margin: 0;
            font-size: 0.8rem;
            color: var(--text-gray);
        }

        /* دکمه‌ها */
        .buttons-container {
            display: flex;
            gap: 15px;
            align-items: center;
            width: 100%;
        }

        .btn {
            padding: 14px 28px;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: bold;
            cursor: pointer;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            text-align: center;
        }

        .btn-primary {
            background-color: var(--primary-color);
            color: #ffffff;
            border: none;
            flex: 1;
        }

        .btn-primary:hover {
            opacity: 0.9;
        }

        .btn-outline {
            background-color: transparent;
            color: var(--primary-color);
            border: 2px solid var(--primary-color);
            flex: 1;
            gap: 10px;
        }

        .btn-outline:hover {
            background-color: var(--primary-color);
            color: #ffffff;
        }

        .btn-outline svg {
            width: 18px;
            height: 18px;
            fill: currentColor;
        }

        /* بخش تصویر (چپ) */
        .hero-image {
            flex: 1;
            display: flex;
            justify-content: center;
            position: relative;
            width: 100%;
        }

        .hero-image img {
            max-width: 100%;
            height: auto;
        }

        /* ریسپانسیو تبلت و موبایل */
        @media (max-width: 992px) {
            .hero-section {
                flex-direction: column;
                text-align: center;
                 flex-direction: column-reverse;
                 padding: 20px 20px;
            }
            
            .hero-subtitle {
                margin: 0 auto 40px auto;
            }
            
            .feature-box {
                text-align: right; /* حفظ راست‌چینی متن باکس‌ها در حالت وسط‌چین کلی */
            }
        }
        
        @media (max-width: 768px) {
            .hero-title {
                font-size: 1.5rem;
            }

            /* باکس‌های آیکون: در موبایل 3 تا زیر هم و تمام عرض */
            .features-container {
                flex-direction: column;
                align-items: stretch;
                gap: 10px;
            }

            .feature-box {
                width: 100%;
                flex: none;
            }

            /* دکمه‌ها: در موبایل زیر هم و تمام عرض */
            .buttons-container {
                flex-direction: column;
            }

            .btn {
                width: 100%;
                max-width: 100%;
            }
        }


        /* تنظیمات کلی بخش خدمات */
.services-features-section {
    padding: 10px 20px;
    background-color: #ffffff;
}

.sf-container {
    max-width: 1200px;
    margin: 0 auto;
}

.sf-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: start;
}

/* استایل هر ستون */
.sf-column {
    text-align: center;
    position: relative;
    padding: 0 15px;
}

/* خطوط جداکننده (Divider) */
.sf-column:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background-color: #eaeef5; /* رنگ خاکستری بسیار روشن مشابه عکس */
}

/* استایل دایره و آیکون */
.sf-icon-wrapper {
    width: 72px;
    height: 72px;
    background-color: #f0f4ff; /* رنگ پس‌زمینه آبی بسیار روشن */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    color: #1a42e5; /* رنگ آبی تیره آیکون */
}
.sf-icon-wrapper img{
    width: 50px;
}
.sf-icon-wrapper svg {
    width: 32px;
    height: 32px;
}

/* استایل عنوان (Title) */
.sf-title {
    color: #001233; /* رنگ سرمه‌ای بسیار تیره */
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 12px 0;
}

/* استایل متن توضیحات (Description) */
.sf-desc {
    color: #64748b; /* رنگ خاکستری ملایم */
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0;
}
 .sf-column {
    border: 1px solid #d4d4ff;
    padding: 20px;
    border-radius: 8px;
    }

 .sf-column:hover {
      box-shadow: 0 12px 40px rgba(27, 47, 128, 0.12);
            transform: translateY(-2px);
    }
/* --- تنظیمات ریسپانسیو --- */

/* تبلت (نمایش 2 ستون در هر ردیف) */
@media (max-width: 992px) {
    .sf-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 50px; /* فاصله بیشتر بین ردیف‌ها */
    }

    /* حذف خطوط جداکننده پیش‌فرض و اعمال فقط برای آیتم‌های فرد (سمت راست) */
    .sf-column::after {
        display: none;
    }
    .sf-column:nth-child(odd)::after {
        display: block;
    }
    .services-features-section{
            padding: 20px 20px;
    }
}

/* موبایل (نمایش 1 ستون زیر هم) */
@media (max-width: 768px) {
    .sf-grid {
        grid-template-columns: 1fr;
        row-gap: 40px;
    }

    /* مخفی کردن تمام خطوط جداکننده در موبایل */
    .sf-column::after {
        display: none !important;
    }
}

/* Portfolio Section Styles */
#portfolio{
    max-width: 1200px;
    margin: 0 auto;
    padding: 38px 20px;
}
.portfolio-header {
    text-align: center;
    margin-bottom: 40px;
}
.portfolio-header h2 {
    color: var(--blue-dark);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.portfolio-header p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 2rem;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

/* کارت‌های تیره شیشه‌ای */
.portfolio-card {
    background: linear-gradient(135deg, #324d76 0%, #0d1e42 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 20px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 10px 25px rgba(27, 47, 128, 0.15);
    transition: transform 0.3s ease;
}
.portfolio-card:hover {
    transform: translateY(-5px);
}

.portfolio-content {
    text-align: right;
    color: #fff;
    flex: 1;
}
.portfolio-content h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 700;
}
.portfolio-content p {
    font-size: 0.75rem;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.4;
}
.btn-outline-light {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border: 1px solid rgba(255, 255, 255, 0.6);
   color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.2s;
}
.btn-outline-light:hover {
    background: var(--white);
    color: #fff;
}

/* تنظیمات عکس موبایل */
.portfolio-img-wrapper {
    width: 45%;
    display: flex;
    justify-content: flex-end;
}
.portfolio-img-wrapper img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.portfolio-footer {
    text-align: center;
}
.btn-outline-dark {
     display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    border: 1px solid rgba(27, 47, 128, 0.3);
    color: var(--blue-dark);
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.2s;
    background: rgba(255, 255, 255, 0.5); /* کمی شیشه‌ای برای دکمه */
}
.btn-outline-dark:hover {
    background: #002642;;
    color: #fff;
}

/* ریسپانسیو */
@media (max-width: 1024px) {
    .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .portfolio-grid { grid-template-columns: 1fr; }
    .portfolio-card { padding: 25px 20px; }
    #portfolio {padding: 0px 20px;}
}

/* تنظیمات گرید (4 ستونه) */
.portfolio-grid-new {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

/* استایل کارت اصلی */
.portfolio-card-new {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.portfolio-card-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 38, 66, 0.1);
}

/* بخش تصویر و سایه آبی روی آن */
.card-image-wrapper {
    position: relative;
    width: 100%;
}

.card-image-wrapper img {
    width: 100%;
    object-fit: cover;
}

/* گرادیانت آبی ملایم پایین تصویر */
.card-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%; /* سایه تا نصف عکس بالا می‌آید */
    background: linear-gradient(to top, rgba(0, 38, 66, 0.95) 0%, rgba(0, 38, 66, 0.7) 40%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding-bottom: 15px;
    text-align: center;
}

.card-image-overlay h3 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 5px 0;
}

.card-image-overlay p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    margin: 0;
}

/* بخش پایین کارت (لینک مشاهده منو) */
.card-action-footer {
    padding: 15px;
    text-align: center;
    background: #ffffff;
}

.card-action-footer a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #255deb; /* رنگ آبی لینک */
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}

.card-action-footer a:hover {
    color: #1246ab;
}

.card-action-footer svg {
    width: 18px;
    height: 18px;
}

/* ریسپانسیو */
@media (max-width: 1024px) {
    .portfolio-grid-new { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .portfolio-grid-new { grid-template-columns: 1fr; }
}
/* نگهدارنده اصلی بخش تعرفه */
.pricing-glass-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 10px auto;
    box-sizing: border-box;
}

/* کانتینر شیشه‌ای اصلی */
.pricing-glass-container {
    background: linear-gradient(135deg, #0d1e42 0%, #0c1d41 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 38, 66, 0.2);
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    overflow: hidden;
}

/* افکت نور زیر شیشه برای جذابیت بیشتر */
.pricing-glass-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(37, 93, 235, 0.2) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

/* ردیف بالا: متن و کارت‌ها */
.pricing-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    z-index: 1;
    flex-wrap: wrap;
}

.pricing-text-area {
    flex: 1 1 300px;
    color: #fff;
}

.pricing-text-area h2 {
    font-size: 2rem;
    font-weight: 800;
    margin: 0 0 10px 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.pricing-text-area p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* ناحیه کارت‌های داخلی */
.pricing-cards-area {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    flex: 2 1 500px;
    justify-content: flex-end;
}

/* استایل مشترک کارت‌های داخلی (شیشه‌ای) */
.glass-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: transform 0.3s ease, background 0.3s ease;
    flex: 1 1 200px;
}

.glass-box:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

/* باکس قیمت */
.price-box {
    flex-direction: column;
    gap: 5px;
}

.price-box .period {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.price-box .price-value {
    color: #fff;
    font-size: 2.7rem;
    font-weight: 800;
    line-height: 1;
}

.price-box .currency {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* باکس تست رایگان */
.free-trial-box {
    flex-direction: row;
    gap: 15px;
    text-align: right;
    justify-content: flex-start;
}

.free-trial-box .icon-wrapper {
    background: #255deb;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 93, 235, 0.4);
    flex-shrink: 0;
}

.icon-wrapper svg {
    width: 24px;
    height: 24px;
    color: #fff;
}

.trial-text h4 {
    color: #fff;
    font-size: 1.1rem;
    margin: 0 0 5px 0;
}

.trial-text p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    margin: 0;
}
/* ردیف ویژگی‌ها (چیپس‌ها) */
.pricing-features-row {
    display: grid;
    gap: 20px;
    z-index: 1;
    flex-wrap: wrap;
    width: 99%;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    grid-auto-flow: column;
}
.feature-chip {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 22px; /* پدینگ بیشتر برای فونت بزرگتر */
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem; /* بزرگتر شدن فونت */
    font-weight: 500; /* کمی ضخیم‌تر برای خوانایی بهتر */
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background 0.3s ease;
     text-align: center;
         justify-content: center;
}

.feature-chip:hover {
    background: rgba(255, 255, 255, 0.1);
}

.feature-chip svg {
    width: 20px; /* بزرگتر شدن آیکون متناسب با فونت */
    height: 20px;
    color: #255deb; /* تیک آبی */
}


/* ریسپانسیو */
@media (max-width: 900px) {
    .pricing-top-row {
        text-align: center;
    }
    .pricing-glass-wrapper{
        padding: 20px;
    }
    .pricing-cards-area {
        justify-content: center;
        width: 100%;
    }
    .pricing-features-row {
        grid-auto-flow: row;
    }
    .free-trial-box {
        justify-content: center;
        text-align: right;
    }
    .pricing-text-area h2 {
        font-size: 1.5rem;
    }
    .trial-text h4 {
        font-size: 0.9rem;
    }
    .pricing-text-area p {
    font-size: 0.8rem;
}
}

@media (max-width: 480px) {
    .glass-box {
        flex: 1 1 100%;
    }
    .pricing-glass-container {
        padding: 25px;
    }
    .price-box .price-value {
        font-size: 2rem;
    }
}


/* تنظیمات کلی بخش */
.tutorial-section {
    padding: 30px 20px;
    background-color: #fafbfe; /* پس‌زمینه بسیار روشن مشابه تصویر */
}

/* هدر و عنوان‌ها */
.tutorial-header {
    text-align: center;
    margin-bottom: 50px;
}

.tutorial-title {
    color: #002642; /* رنگ سورمه‌ای درخواستی شما */
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

/* خط‌چین‌های تزئینی کنار عنوان */
.decor-line {
    display: inline-block;
    width: 60px;
    height: 3px;
    background-image: radial-gradient(circle, #0d6efd 40%, transparent 40%);
    background-size: 8px 8px; /* اندازه نقطه‌ها */
    background-repeat: repeat-x;
    opacity: 0.6;
}

.tutorial-subtitle {
    color: #6c757d;
    font-size: 1rem;
    font-weight: 500;
}

/* گرید بندی کارت‌ها */
.tutorial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

/* استایل کارت‌ها */
.tutorial-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    border: 1px solid rgba(0, 38, 66, 0.03); /* حاشیه بسیار محو */
}

.tutorial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* تصویر داخل کارت */
.card-image-wrapper {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid #eef2f6; /* حاشیه دور عکس مشابه تصویر */
}

.tutorial-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* محتوای متنی کارت */
.card-content {
    padding: 0 10px 10px;
}

.card-title {
    color: #002642;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.card-desc {
    color: #8892a0;
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0;
}

/* --- تنظیمات ریسپانسیو --- */

/* تبلت‌ها و نمایشگرهای متوسط */
@media (max-width: 992px) {
    .tutorial-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 ستون */
        max-width: 700px;
    }
    .card-content{
        margin-top: 20px;
    }
}

/* موبایل‌ها */
@media (max-width: 576px) {
    .tutorial-grid {
        grid-template-columns: 1fr; /* 1 ستون */
        gap: 75px;

    }
    
    .tutorial-title {
        font-size: 1.5rem;
    }
    
    .decor-line {
        width: 40px; /* خط‌چین کوتاه‌تر در موبایل */
    }
}

/* تنظیمات پایه بخش ثبت نام */
.register-section {
    /*padding: 40px 20px;*/
    display: flex;
    justify-content: center;
}

.reg-container {
    max-width: 1200px;
    width: 100%;
}

/* باکس اصلی تیره رنگ */
.reg-box {
    background: linear-gradient(135deg, #0d1e42 0%, #0c1d41 100%); /* رنگ سرمه ای بسیار تیره مشابه عکس */
    border-radius: 8px;
    padding: 50px 40px;
    display: flex;
    align-items: center;
    gap: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* --- استایل متن (سمت راست) --- */
.reg-text-content {
    flex: 1;
    color: #ffffff;
}

.reg-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0 0 15px 0;
    color: #ffffff;
}

.reg-subtitle {
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0 0 30px 0;
    color: #e2e8f0;
}

.reg-notice {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #94a3b8; /* رنگ خاکستری متمایل به آبی */
    margin: 0;
}

/* --- استایل فرم (سمت چپ) --- */
.reg-form-content {
    flex: 1.3; /* فرم کمی عریض‌تر از متن است */
}

.reg-form {
    width: 100%;
}

.reg-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 15px;
}

/* استایل فیلدهای ورودی */
.input-group {
    background-color: #ffffff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    padding: 0 15px;
    height: 52px;
}

.input-group input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 0.9rem;
    color: #1e293b;
    padding: 0 10px;
}

.input-group input::placeholder {
    color: #64748b;
}

/* استایل آیکون‌ها */
.icon-right, .icon-left {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8; /* رنگ خاکستری آیکون‌ها */
}

.icon-right svg, .icon-left svg {
    width: 20px;
    height: 20px;
}

.icon-left.clickable {
    cursor: pointer;
}

.icon-left.clickable:hover {
    color: #475569;
}

/* استایل دکمه ثبت نام */
.btn-submit {
    width: 100%;
    background-color: #2b5cff; /* رنگ آبی روشن دکمه */
    color: #ffffff;
    border: none;
    border-radius: 8px;
    height: 52px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #1e4beb;
}

.btn-icon {
    position: absolute;
    left: 15px; /* آیکون فلش در سمت چپ دکمه */
    display: flex;
    align-items: center;
}

.btn-icon svg {
    width: 20px;
    height: 20px;
}

/* --- تنظیمات ریسپانسیو --- */

/* تبلت (زیر 992px) */
@media (max-width: 992px) {
    .reg-box {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
        gap: 30px;
    }

    .reg-text-content, .reg-form-content {
        flex: unset;
        width: 100%;
    }
    .register-section{
        padding: 0px 20px;
    }
}

/* موبایل (زیر 768px) */
@media (max-width: 768px) {
    .reg-box {
        padding: 30px 20px;
    }

    .reg-grid {
        grid-template-columns: 1fr; /* تبدیل فیلدها به یک ستون */
    }

    .reg-title {
        font-size: 1.5rem;
    }
}
/* تنظیمات پایه بخش تماس */
.contact-modern-section {
    padding: 80px 20px;
    background-color: #0c1d41; /* رنگ سازمانی شما */
    background-image: radial-gradient(circle at 15% 50%, rgba(43, 92, 255, 0.15), transparent 25%),
                      radial-gradient(circle at 85% 30%, rgba(0, 200, 255, 0.1), transparent 25%);
    display: flex;
    justify-content: center;
}

.contact-container {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 20px;
    align-items: stretch;
}

/* استایل مشترک کارت‌ها (Glassmorphism) */
.contact-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
}

/* کارت عنوان (سمت راست) */
.title-card {
    position: relative;
    overflow: hidden;
    padding: 40px 30px;
}

.contact-title {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 800;
    margin: 0 0 10px 0;
    position: relative;
    z-index: 2;
    text-align: center;
}

.contact-subtitle {
    color: #94a3b8;
    font-size: 1rem;
    margin: 0;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.glow-effect {
    position: absolute;
    width: 100px;
    height: 100px;
    background: #2b5cff;
    filter: blur(60px);
    border-radius: 50%;
    bottom: -20px;
    right: -20px;
    opacity: 0.5;
    z-index: 1;
}

/* کارت‌های اطلاعات */
.info-card {
    align-items: center;
    text-align: center;
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6; /* رنگ آبی روشن و جذاب برای آیکون */
    margin-bottom: 20px;
    transition: background 0.3s ease;
}

.contact-card:hover .icon-wrapper {
    background: #3b82f6;
    color: #ffffff;
}

.icon-wrapper svg {
    width: 28px;
    height: 28px;
}

.info-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.info-text, .info-link {
    color: #e2e8f0;
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-link:hover {
    color: #3b82f6;
}

/* --- تنظیمات ریسپانسیو --- */

/* تبلت و لپ‌تاپ‌های کوچک */
@media (max-width: 1024px) {
    .contact-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .title-card {
        grid-column: span 2;
        text-align: center;
    }
}

/* موبایل */
@media (max-width: 600px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .title-card {
        grid-column: span 1;
    }
    
    .contact-modern-section {
        padding: 50px 15px;
        margin-top: 70px;
    }
}
