﻿

@font-face {
    font-family: 'vazir-regular-fd';
    src: url('vazir-regular-fd.woff2') format('woff2'), url('vazir-regular-fd.eot') format('embedded-opentype'), url('vazir-regular-fd.ttf') format('truetype'), url('vazir-regular-fd.woff') format('woff');
}
:root {
    --primary-color: #f97f12;
    --primary-light: rgba(249, 127, 18, 0.1);
    --secondary-color: #e67e22;
    --text-color: #333;
    --text-light: #666;
    --bg-color: #faf9f5;
    --section-bg: #def6e6;
    --header-text: #004d13;
    --white: #fff;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --border-radius: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'vazir-regular-fd', sans-serif;
    background: var(--bg-color);
    max-width: 390px;
    margin: auto;
    padding-bottom: 80px;
    color: var(--text-color);
    line-height: 1.6;
}

/* اسپلاش اسکرین */
.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    animation: fadeOut 0.5s ease 2.5s forwards;
}

.splash-logo {
    width: 150px;
    height: 150px;
    margin-bottom: 20px;
    border-radius: 30px;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    animation: pulse 2s infinite;
}

.splash-title {
    color: white;
    font-size: 24px;
    font-weight: bold;
    margin-top: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.version-number {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    margin-top: 10px;
    letter-spacing: 1px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    animation: fadeIn 1.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* دکمه نصب PWA */
.install-btn {
    position: fixed;
    bottom: 80px;
    left: 16px;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-family: 'vazir-regular-fd', sans-serif;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow);
    z-index: 100;
    cursor: pointer;
    transition: all 0.3s;
    transform: translateY(-100px);
    opacity: 0;
}

    .install-btn.show {
        transform: translateY(0);
        opacity: 1;
    }

    .install-btn:active {
        transform: scale(0.95);
        background: var(--secondary-color);
    }

/* HEADER */
.header {
    display: flex;
    align-items: center;
    justify-content: center; /* تمام محتوا وسط چین */
    position: relative;
    height: 56px;
    background: var(--header-bg, #fff);
}

.logo {
    font-weight: 700;
    font-size: 20px;
    color: var(--header-text);
    flex: 1;
    text-align: center;
    z-index: 3;
}

.menu-btn {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    background: none;
    border: none;
    cursor: pointer;
}

    .logo span {
        color: var(--primary-color);
    }

.menu-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s;
}

    .menu-btn:active {
        transform: scale(0.95);
        background-color: rgba(249, 127, 18, 0.2);
    }

/* SLIDER */
.slider-container {
    overflow: hidden;
    padding: 20px 0 30px;
    position: relative;
    background: var(--section-bg);
    margin: 16px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.slider-title {
    padding: 0 16px;
    font-weight: 500;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--header-text);
}

    .slider-title a {
        color: var(--primary-color);
        text-decoration: none;
        font-size: 13px;
        font-weight: 700;
        display: flex;
        align-items: center;
    }

        .slider-title a .material-icons-outlined {
            font-size: 16px;
            margin-right: 4px;
        }

.slider {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 0 16px;
    cursor: grab;
    scroll-behavior: smooth;
}

    .slider:active {
        cursor: grabbing;
    }

    .slider::-webkit-scrollbar {
        display: none;
    }

.slide {
    flex: 0 0 85%;
    scroll-snap-align: center;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    perspective: 1000px;
}

    .slide::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 40%;
        background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
        z-index: 1;
    }

    .slide:active {
        transform: scale(0.98);
    }

    .slide img {
        width: 100%;
        display: block;
        height: 180px;
        object-fit: cover;
        transition: transform 0.5s ease;
        transform-style: preserve-3d;
    }

    .slide:hover img {
        transform: scale(1.05) rotateY(5deg);
    }

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    color: var(--white);
    z-index: 2;
}

.slide-title {
    font-weight: 700;
    margin-bottom: 4px;
    font-size: 16px;
}

.slide-desc {
    font-size: 12px;
    opacity: 0.9;
}

.indicator {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e0e0e0;
    transition: all 0.3s ease;
    cursor: pointer;
}

    .dot.active {
        background: var(--primary-color);
        width: 16px;
        border-radius: 4px;
    }

/* SERVICES */
.services {
    padding: 16px;
    margin: 16px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.section-title {
    font-weight: 700;
    margin-bottom: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--header-text);
    font-size: 18px;
}

    .section-title a {
        color: var(--primary-color);
        text-decoration: none;
        font-size: 13px;
        font-weight: 700;
        display: flex;
        align-items: center;
    }

        .section-title a .material-icons-outlined {
            font-size: 16px;
            margin-right: 4px;
        }
.services-grid2 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 12px;
    margin-bottom:13px;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.service-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 16px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--text-color);
    border: 1px solid #eee;
    text-align: center;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

    .service-card::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background: var(--primary-color);
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }

    .service-card:hover::after {
        transform: scaleX(1);
    }

    .service-card:active {
        transform: scale(0.98);
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    }

    .service-card:hover {
        transform: translateY(-5px) rotateX(5deg);
    }

.service-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    color: var(--primary-color);
    transition: all 0.3s;
}

.service-card:hover .service-icon {
    transform: rotate(10deg) scale(1.1);
    background: var(--primary-color);
    color: white;
}

.service-title {
    font-size: 14px;
    font-weight: 500;
}

/* BOTTOM NAV */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    width: 100%;
    max-width: 390px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 72px;
    z-index: 99;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.08);
    border-radius: 24px 24px 0 0;
    padding: 0 10px;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-decoration: none;
    position: relative;
    padding: 8px 12px;
    border-radius: 12px;
    transition: all 0.2s;
}

    .nav-item.active {
        color: var(--primary-color);
        background: var(--primary-light);
    }

    .nav-item:active {
        background: rgba(0, 0, 0, 0.05);
    }

    .nav-item .material-icons-outlined {
        font-size: 24px;
        margin-bottom: 4px;
    }

    .nav-item small {
        font-size: 11px;
        font-weight: 500;
    }

/* دکمه تماس وسط */
.call-btn {
    position: absolute;
    text-decoration: none;
    top: -28px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 15px rgba(249, 127, 18, 0.4);
    border: 4px solid var(--white);
    transition: all 0.3s;
    z-index: 100;
    animation: pulse 2s infinite;
}

    .call-btn .material-icons-outlined {
        font-size: 26px;
    }

    .call-btn:active {
        transform: scale(0.95);
        box-shadow: 0 4px 10px rgba(249, 127, 18, 0.3);
        animation: none;
    }

/* افکت ریپل برای آیتم‌ها */
.ripple {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.1);
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

/* منوی همبرگری */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100%;
    background: var(--white);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    padding: 20px;
    overflow-y: auto;
}

    .mobile-menu.active {
        right: 0;
    }

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.close-menu {
    background: var(--primary-light);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s;
}

    .close-menu:active {
        transform: scale(0.95);
        background: rgba(249, 127, 18, 0.2);
    }

.menu-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.menu-item {
    padding: 15px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.2s;
    position: relative;
    overflow: hidden;
}

    .menu-item.active {
        background: var(--primary-light);
        color: var(--primary-color);
    }

    .menu-item::after {
        content: '';
        position: absolute;
        bottom: 0;
        right: 0;
        width: 3px;
        height: 100%;
        background: var(--primary-color);
        transform: scaleY(0);
        transition: transform 0.3s ease;
    }

    .menu-item:hover::after {
        transform: scaleY(1);
    }

    .menu-item:active {
        background: var(--primary-light);
        color: var(--primary-color);
    }

    .menu-item .material-icons-outlined {
        margin-left: 10px;
        color: var(--primary-color);
    }

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

    .overlay.active {
        opacity: 1;
        pointer-events: all;
    }

/* انیمیشن‌ها */
@keyframes fadeOut {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.bounce {
    animation: bounce 2s infinite;
}

/* استایل‌های صفحه آفلاین */
.offline-page {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    padding: 20px;
}

.offline-icon {
    font-size: 72px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.offline-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--text-color);
}

.offline-message {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.retry-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-family: 'vazir-regular-fd', sans-serif;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

    .retry-btn:hover {
        background: var(--secondary-color);
    }

    .retry-btn:active {
        transform: scale(0.95);
    }



/* استایل های اختصاصی فقط برای کارد */
.custom-green-card {
    --border-radius: 16px;
    --shadow: 0 6px 16px rgba(0, 100, 50, 0.15);
    --primary-color: #00a86b;
    --light-green: #e0f8ef;
    overflow: hidden;
    padding: 30px;
    position: relative;
    background: linear-gradient(135deg, var(--light-green), #d0f0e0);
    margin: 40px auto 30px; /* 40px فاصله از بالا */
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    max-width: 800px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 168, 107, 0.2);
}

    .custom-green-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 24px rgba(0, 100, 50, 0.2);
    }

    .custom-green-card::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, var(--primary-color), #00cc88);
    }

    .custom-green-card h3 {
        margin: 0 0 15px;
        color: var(--primary-color);
        font-size: 1.5rem;
        font-weight: 700;
        position: relative;
        padding-bottom: 10px;
        font-family: 'Vazir', sans-serif;
    }

        .custom-green-card h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 60px;
            height: 3px;
            background: var(--primary-color);
            border-radius: 3px;
        }

    .custom-green-card p {
        margin: 0;
        color: #333;
        line-height: 1.8;
        font-size: 1.05rem;
        font-family: 'Vazir', sans-serif;
    }

    .custom-green-card .badge {
        position: absolute;
        top: 20px;
        left: 20px;
        background: var(--primary-color);
        color: white;
        padding: 4px 12px;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: bold;
        font-family: 'Vazir', sans-serif;
    }

/* نسخه موبایل */
@media (max-width: 768px) {
    .custom-green-card {
        margin: 30px 15px; /* فاصله کمتر در موبایل */
        padding: 25px 20px;
        border-radius: 12px;
    }

        .custom-green-card h3 {
            font-size: 1.3rem;
        }

        .custom-green-card .badge {
            top: 15px;
            left: 15px;
            font-size: 0.7rem;
        }
}




/* فرم تماس با ما */
.contact-form-container {
    padding: 16px;
    margin: 16px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    animation: fadeIn 0.5s ease;
}

.contact-header {
    margin-bottom: 20px;
    text-align: center;
}

.contact-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--header-text);
    margin-bottom: 8px;
}

.contact-description {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    position: relative;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-color);
    font-size: 14px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: 'vazir-regular-fd', sans-serif;
    font-size: 14px;
    transition: all 0.3s;
    background-color: var(--bg-color);
}

    .form-control:focus {
        outline: none;
        border-color: var(--primary-color);
        box-shadow: 0 0 0 3px var(--primary-light);
    }

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.submit-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 14px;
    border-radius: var(--border-radius);
    font-family: 'vazir-regular-fd', sans-serif;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 8px;
    box-shadow: 0 4px 8px rgba(249, 127, 18, 0.2);
}

    .submit-btn:hover {
        background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    }

    .submit-btn:active {
        transform: scale(0.98);
        box-shadow: 0 2px 4px rgba(249, 127, 18, 0.2);
    }

/* فرم عضویت */
.verification-form-container {
    padding: 16px;
    margin: 16px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    animation: fadeIn 0.5s ease;
}

.verification-header {
    margin-bottom: 20px;
}

.verification-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--header-text);
    margin-bottom: 8px;
}

.verification-description {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 16px;
}

.phone-input-container {
    display: flex;
    align-items: center;
    background: var(--bg-color);
    border-radius: var(--border-radius);
    padding: 4px;
    margin-bottom: 16px;
}

.phone-prefix {
    padding: 0 12px;
    font-weight: 500;
    color: var(--text-color);
}

.phone-input {
    flex: 1;
    padding: 12px;
    border: none;
    background: transparent;
    font-family: 'vazir-regular-fd', sans-serif;
    font-size: 14px;
}

    .phone-input:focus {
        outline: none;
    }

.code-inputs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 20px 0;
}

.code-input {
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'vazir-regular-fd', sans-serif;
    transition: all 0.3s;
}

    .code-input:focus {
        outline: none;
        border-color: var(--primary-color);
        box-shadow: 0 0 0 2px var(--primary-light);
    }

.resend-code {
    margin-top: 16px;
    font-size: 13px;
    color: var(--text-light);
}

    .resend-code a {
        color: var(--primary-color);
        text-decoration: none;
        font-weight: 500;
    }

.success-message {
    padding: 16px;
    background: var(--section-bg);
    border-radius: var(--border-radius);
    margin-top: 20px;
    color: var(--header-text);
    font-weight: 500;
    display: none;
}

    .success-message.show {
        display: block;
        animation: fadeIn 0.5s ease;
    }

/* انیمیشن‌های جدید */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* حالت‌های واکنش‌گرا */
@media (max-width: 360px) {
    .code-input {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .contact-title, .verification-title {
        font-size: 18px;
    }

    .contact-description, .verification-description {
        font-size: 13px;
    }
}


/* استایل‌های Material Design برای فیلدهای ورودی */
.form-group {
    position: relative;
    margin-bottom: 24px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: none;
    border-bottom: 1px solid #ccc;
    font-family: 'vazir-regular-fd', sans-serif;
    font-size: 14px;
    background-color: transparent;
    transition: all 0.3s;
    border-radius: 0;
}

    .form-control:focus {
        outline: none;
        border-bottom: 2px solid var(--primary-color);
        box-shadow: none;
    }

.form-label {
    position: absolute;
    right: 0;
    top: 12px;
    color: var(--text-light);
    font-size: 14px;
    font-weight: 400;
    transition: all 0.3s;
    pointer-events: none;
    transform-origin: right top;
}

/* حالت فعال (وقتی فیلد پر شده یا فوکوس شده) */
.form-control:focus + .form-label,
.form-control:not(:placeholder-shown) + .form-label {
    transform: translateY(-20px) scale(0.8);
    color: var(--primary-color);
}

/* خط زیرین فیلد */
.form-group::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: all 0.3s;
}

.form-control:focus ~ .form-group::after {
    width: 100%;
}

/* برای textarea */
textarea.form-control {
    min-height: 100px;
    resize: vertical;
    padding-top: 16px;
}

/* استایل مخصوص فیلدهای انتخاب کشور و کد */
.phone-input-container {
    position: relative;
    margin-bottom: 24px;
}

.phone-prefix {
    position: absolute;
    right: 0;
    top: 12px;
    color: var(--text-light);
    font-size: 14px;
    transition: all 0.3s;
}

.phone-input {
    width: 100%;
    padding: 12px 16px 12px 60px;
    border: none;
    border-bottom: 1px solid #ccc;
    font-family: 'vazir-regular-fd', sans-serif;
    font-size: 14px;
    background-color: transparent;
    transition: all 0.3s;
    text-align: right;
    direction: ltr;
}

    .phone-input:focus {
        outline: none;
        border-bottom: 2px solid var(--primary-color);
    }

        .phone-input:focus + .phone-prefix {
            color: var(--primary-color);
            transform: translateY(-20px) scale(0.8);
        }

/* استایل کدهای تایید */
.code-group {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 30px 0;
}

.code-input {
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 20px;
    border: none;
    border-bottom: 2px solid #ccc;
    font-family: 'vazir-regular-fd', sans-serif;
    transition: all 0.3s;
    background-color: transparent;
}

    .code-input:focus {
        outline: none;
        border-bottom: 2px solid var(--primary-color);
    }

/* انیمیشن‌ها */
@keyframes float-up {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(-20px);
        opacity: 0.8;
    }
}


/* استایل‌های نوتیفیکیشن */
.notification {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    padding: 12px 24px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10000;
    opacity: 0;
    transition: all 0.3s ease;
    max-width: 90%;
    width:350px;

}

    .notification.show {
        opacity: 1;
        top: 50px;
    }

    .notification.error {
        background: #ffebee;
        color: #c62828;
        border-right: 4px solid #c62828;
    }

    .notification.success {
        background: var(--section-bg);
        color: var(--header-text);
        border-right: 4px solid var(--header-text);
    }

    .notification .material-icons-outlined {
        font-size: 20px;
    }

.notification-close {
    margin-right: 8px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
}

    .notification-close:hover {
        opacity: 1;
    }


.back-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    color: #f97f12;
    border-radius: 8px;
    padding: 8px 14px;
    display: flex;
    align-items: center;
    font-size: 1rem;
    z-index: 100;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background .2s;
}

    .back-btn .material-icons-outlined {
        margin-left: 6px;
    }

.d-none {
    display: none !important;
}

#form_sucmsg {
    color: #024f31;
    font-size: 20px;
    background: #d4edda;
    padding: 12px 16px;
    border-radius: 6px;
    border: 1px solid #c3e6cb;
    margin: 10px 0;
    text-align: center;
}


.mt-25_{
    margin-top:13px!important
}











