/* ریست اولیه */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
@font-face {
    font-family: 'IRANYekanX';
    src: url('fonts/IRANYekanX-Thin.woff2') format('woff2');
    font-weight: 100;
    font-style: normal;
}
@font-face {
    font-family: 'IRANYekanX';
    src: url('fonts/IRANYekanX-UltraLight.woff2') format('woff2');
    font-weight: 200;
    font-style: normal;
}
@font-face {
    font-family: 'IRANYekanX';
    src: url('fonts/IRANYekanX-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: 'IRANYekanX';
    src: url('fonts/IRANYekanX-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'IRANYekanX';
    src: url('fonts/IRANYekanX-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'IRANYekanX';
    src: url('fonts/IRANYekanX-DemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: 'IRANYekanX';
    src: url('fonts/IRANYekanX-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'IRANYekanX';
    src: url('fonts/IRANYekanX-ExtraBold.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
}
@font-face {
    font-family: 'IRANYekanX';
    src: url('fonts/IRANYekanX-Black.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
}
@font-face {
    font-family: 'IRANYekanX';
    src: url('fonts/IRANYekanX-ExtraBlack.woff2') format('woff2');
    font-weight: 950;
    font-style: normal;
}
@font-face {
    font-family: 'IRANYekanX';
    src: url('fonts/IRANYekanX-Heavy.woff2') format('woff2');
    font-weight: 960;
    font-style: normal;
}
body {
    font-family: 'IRANYekanX', Vazirmatn, Tahoma, Arial, sans-serif;
    direction: rtl;
    background: #fff;
    font-size: 15px;
}
.top-bar {
    display: none;
}
.header-actions {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}
.phone-number {
    font-size: 0.97rem;
    color: #222;
    font-weight: 500;
    letter-spacing: 1px;
    direction: ltr;
}
.header-phone-mobile {
    display: none;
    font-size: 1rem;
    color: #0171e3;
    font-weight: 500;
    margin-right: 0.7rem;
    margin-left: 0.2rem;
    direction: ltr;
}
.main-header {
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: background 0.3s, backdrop-filter 0.3s;
}
.main-header.scrolled {
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 24px 0 rgba(0,0,0,0.07);
}
:root {
    --main-radius: 8px;
}
.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}
.logo img {
    height: 38px;
    display: block;
}
.navbar {
    flex: 1 1 0;
}
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 2.2rem;
    cursor: pointer;
    color: #222;
    margin-left: 0.7rem;
    z-index: 120;
}
.close-menu {
    display: none;
    position: absolute;
    top: 1.2rem;
    left: 1.2rem;
    background: none;
    border: none;
    font-size: 2.2rem;
    color: #222;
    cursor: pointer;
    z-index: 130;
}
.nav-list {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-list li a {
    text-decoration: none;
    color: #222;
    font-weight: 400;
    font-size: 1rem;
    transition: color 0.2s;
}
.nav-list li a:hover {
    color: #0171e3;
}
.header-btn {
    background: #111;
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background 0.2s;
    font-family: inherit;
    text-decoration: none;
    font-weight: 300;
    display: inline-block;
}
.header-btn:hover {
    background: #333;
}
.logo-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
@media (max-width: 900px) {
    .logo-group {
        order: 1;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
    .navbar {
        order: 3;
    }
    .header-phone-mobile {
        order: 2;
    }
    .header-btn {
        order: 4;
    }
    .header-inner {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 0.3rem;
        padding: 0.7rem 0.7rem;
        font-size: 0.96rem;
    }
    .nav-list {
        justify-content: center;
        gap: 1.2rem;
    }
    .header-inner .menu-toggle {
        display: block;
    }
    .header-inner .navbar.open ~ .menu-toggle {
        display: none !important;
    }
    .navbar {
        background: #fff !important;
        backdrop-filter: none !important;
        position: fixed;
        top: 0;
        right: -320px;
        width: 280px;
        height: 100vh;
        box-shadow: -2px 0 24px 0 rgba(0,0,0,0.08);
        transition: right 0.35s cubic-bezier(.77,0,.18,1);
        z-index: 110;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding-top: 2.5rem;
        padding-right: 1.5rem;
        padding-left: 1.5rem;
    }
    .navbar.open {
        right: 0;
    }
    .close-menu {
        display: block;
    }
    .nav-list {
        flex-direction: column;
        gap: 2rem;
        width: 100%;
        margin-top: 2.5rem;
    }
    .logo {
        margin-right: 0.5rem;
    }
    body.side-open .menu-toggle {
        display: none !important;
    }
    .hero-slider {
        height: auto !important;
        min-height: unset !important;
        max-height: unset !important;
    }
    .hero-slider img {
        height: auto !important;
        max-height: 220px !important;
        min-height: unset !important;
    }
    .nav-list li a:hover,
    .nav-list li a:focus-visible {
        background: #f3f4f6 !important;
        color: #0171e3 !important;
    }
}
@media (min-width: 901px) {
    .menu-toggle, .close-menu {
        display: none !important;
    }
    .navbar {
        position: static !important;
        width: auto !important;
        height: auto !important;
        background: none !important;
        backdrop-filter: none !important;
        box-shadow: none !important;
        flex-direction: row !important;
        align-items: center !important;
        padding: 0 !important;
    }
    .nav-list {
        flex-direction: row !important;
        gap: 2rem !important;
        margin-top: 0 !important;
    }
    .header-btn {
        display: inline-block;
    }
    .header-phone-mobile {
        display: none !important;
    }
}
.site-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    min-height: 100vh;
    background: transparent;
}
.hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 2rem;
    margin: 2.5rem 0 2rem 0;
}
.hero-slider {
    width: 100%;
    max-width: 100%;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    height: 400px;
}
.hero-slider img {
    width: 100%;
    height: 400px;
    display: block;
    border-radius: 25px;
    object-fit: cover;
    animation: heroMove 3.5s ease-in-out infinite alternate;
}
@keyframes heroMove {
    0% {
        transform: scale(1) translateY(0);
    }
    100% {
        transform: scale(1.06) translateY(-12px);
    }
}
.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
}
.hero-content h1 {
    font-size: 2.1rem;
    font-weight: 800;
    margin-bottom: 0.2rem;
}
.hero-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #007bff;
    margin-bottom: 0.3rem;
}
.hero-content p {
    font-size: 1rem;
    color: #444;
    line-height: 35px;
    margin-bottom: 0.3rem;
    font-weight: 300;
    white-space: pre-line;
    width: 100%;
    max-width: 100%;
}
.hero-content p:not(:last-child) {
    margin-bottom: 1.2rem;
}
.hero-buttons {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
    justify-content: flex-start;
    min-width: 180px;
    max-width: 220px;
}
.hero-btn {
    padding: 0.7rem 1.7rem;
    border-radius: var(--main-radius);
    font-size: 1rem;
    font-family: inherit;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    cursor: pointer;
    border: none;
    display: block;
    text-align: center;
}
.hero-btn.main {
    background: #007bff;
    color: #fff;
}
.hero-btn.main:hover {
    background: #0056b3;
}
.hero-btn.call {
    background: #f3f4f6;
    color: #007bff;
    border: 1px solid #007bff;
}
.hero-btn.call:hover {
    background: #e9ecef;
    color: #0056b3;
    border-color: #0056b3;
}
.hero-image {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-image img {
    max-width: 100%;
    max-height: 320px;
    border-radius: var(--main-radius);
    object-fit: cover;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}
@media (max-width: 900px) {
    .hero-bottom {
        flex-direction: column;
        gap: 1.5rem;
        align-items: stretch;
        max-width: 100%;
    }
    .hero-buttons {
        flex-direction: row;
        max-width: 100%;
        min-width: unset;
        justify-content: flex-start;
    }
    .hero-image img {
        max-height: 220px;
    }
}
.intro {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 0rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 2.5rem auto;
    padding-top: 50px;
    padding-bottom: 50px;
}
.intro-image {
    width: 30%;
    max-width: 30%;
    flex-shrink: 0;
}
.intro-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--main-radius);
    object-fit: cover;
}
@media (max-width: 900px) {
    .intro {
        flex-direction: column;
        gap: 1.5rem;
        max-width: 100%;
    }
    .hero-content {
        width: 100%;
        max-width: 100%;
        flex: 1;
    }
    .intro-image {
        width: 100%;
        max-width: 100%;
    }
    .custom-section .row {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    .col {
        margin: 0 auto;
    }
}
.intro .hero-buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
    margin-top: 1rem;
}
.intro .hero-btn {
    display: inline-block;
    min-width: 120px;
    margin: 0;
}
.intro .hero-btn:last-child {
    margin-left: 0;
}
.custom-section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 2.5rem auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.custom-row {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    width: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
}
.custom-row .col {
    margin: 0;
}
.col {
    min-height: 300px;
    height: 300px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 600;
    border: 1px solid #cfd8dc;
    transition: border 0.2s;
}
.col:hover {
    border: 2px solid #007bff;
}
.col-40 {
    width: 40%;
    background: #e9ecef;
}
.col-60 {
    width: 60%;
    background: #f8f9fa;
}
.bg1 { background: #e9ecef; }
.bg2 { background: #f8f9fa; }
.bg3 { background: #f3f4f6; }
.bg4 { background: #e3e7ed; }
.col-40, .col-60, .bg1, .bg2, .bg3, .bg4 {
    background: #fafafa !important;
}
.col-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 2.5rem;
    position: relative;
    width: 100%;
}
.col-img {
    width: 100%;
    min-width: unset;
    max-width: unset;
    display: flex;
    align-items: center;
    justify-content: center;
}
.col-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    max-width: 200px;
    min-width: 80px;
}
.col-content {
    width: 100%;
    flex: unset;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 0.5rem;
    padding-left: 0;
    text-align: center;
}
.col-content h2 {
    font-weight: 400;
    color: #222;
    margin-bottom: 0.2rem;
}
.col-content h3 {
    font-size: 1rem;
    font-weight: 300;
    color: #007bff;
    margin-bottom: 0.4rem;
}
.col-btn {
    align-self: flex-start;
    background: #f3f4f6;
    color: #007bff;
    border: 1px solid #007bff;
    border-radius: 8px;
    padding: 0.4rem 1.2rem;
    font-size: 0.97rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, border 0.2s;
    margin-top: 0.7rem;
}
.col-btn:hover {
    background: #007bff;
    color: #fff;
    border-color: #0056b3;
}
@media (max-width: 900px) {
    .custom-section .row {
        flex-direction: column;
        gap: 1rem;
    }
    .col-40, .col-60 {
        width: 100%;
    }
    .col-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 0.7rem;
        height: auto;
    }
    .col-img {
        margin: 0 auto;
        min-width: 70px;
        max-width: 100px;
    
    }
    .col-content {
        padding-left: 0;
    }
}
.testimonials-section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 3rem auto;
    padding: 2.5rem 0;
}
.testimonials-title {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.2rem;
    color: #222;
}
.testimonials-row {
    display: flex;
    flex-direction: row;
    gap: 2.5rem;
    width: 100%;
}
.testimonials-col {
    flex: 1 1 0;
    background: #fff;
    border-radius: 18px;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.testimonials-video video {
    /* width: 100%; */
    /* max-width: 350px; */
    border-radius: 16px;
    background: #eee;
}
.testimonials-content p {
    text-align: right;
    font-size: 1rem;
    color: #444;
    line-height: 35px;
    margin-bottom: 0.3rem;
    font-weight: 300;
    white-space: pre-line;
}
.testimonials-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 1.2rem;
    width: 100%;
}
.testimonials-meta {
    display: flex;
    flex-direction: row;
    gap: 0.7rem;
    align-items: center;
    text-align: right;
    margin-bottom: 0;
}
.testimonial-name {
    font-size: 1rem;
    font-weight: 700;
    color: #007bff;
}
.testimonial-company {
    font-size: 0.97rem;
    color: #888;
    font-weight: 400;
}
.testimonials-desc {
    text-align: center;
    font-size: 1.08rem;
    color: #666;
    margin-bottom: 2rem;
}
.testimonials-stars {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.2rem;
}
.star {
    font-size: 1rem;
    color: #FFD700;
    line-height: 1;
    text-shadow: 0 1px 2px #eee;
    border-radius: 4px;
    padding: 0.1em 0.2em;
}
@media (max-width: 900px) {
    .testimonials-row {
        flex-direction: column;
        gap: 1.5rem;
    }
    .testimonials-col {
        padding: 1.2rem 0.7rem;
    }
}
.custom-section-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 1.2rem;
    margin-top: 2.5rem;
}
.custom-section-desc {
    text-align: center;
    font-size: 1.08rem;
    color: #666;
    margin-bottom: 2rem;
}
.faq-section {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 3rem auto;
    padding: 2.5rem 0;
}
.faq-title {
    text-align: center;
    font-size: 1.4rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 2rem;
}
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
.faq-item {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e3e7ed;
    overflow: hidden;
    box-shadow: none;
    transition: border 0.2s;
}
.faq-item.open {
    border-color: #007bff;
}
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-family: inherit;
    cursor: pointer;
    padding: 1rem 0;
    text-align: right;
    padding-right: 1.2rem;
    padding-left: 1.2rem;
}
.faq-item.open .faq-question {
    background: #f3f4f6;
    color: #007bff;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: #f8f9fa;
    color: #444;
    font-size: 1rem;
    line-height: 2;
    padding: 0 1.2rem;
    transition: max-height 0.3s cubic-bezier(.4,0,.2,1), padding 0.3s;
}
.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 1.2rem;
}
.faq-icon {
    width: 1.1em;
    height: 1.1em;
    margin-right: 0.5em;
    margin-left: 0.2em;
    vertical-align: middle;
    transition: transform 0.25s, filter 0.25s;
    filter: grayscale(1) brightness(0.5);
    display: inline-block;
}
.faq-item.open .faq-icon {
    transform: rotate(180deg);
    filter: none;
}
.faq-item.open .faq-icon {
    filter: none;
}
.faq-item.open .faq-icon {
    /* اگر svg تک‌رنگ باشد */
    /* fill: #0171e3; */
    /* برای img svg فقط filter رنگ را حذف می‌کنیم */
}
.features-section {
    margin: 6rem 0 12rem 0;
}
@media (max-width: 900px) {
    .features-section {
        margin: 3rem 0 2.5rem 0;
    }
}
.features-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.2rem;
}
.feature-item {
    background: #fff;
    border-radius: 25px;
    border: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1rem 1.5rem 1rem;
    transition: border-color 0.2s;
}
.feature-item:hover {
    border-color: #d1d5db;
}
.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1;
}
.feature-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #222;
    text-align: center;
}
@media (max-width: 900px) {
    .features-container {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .features-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .feature-item {
        padding: 1.2rem 0.9rem 1.2rem 0.9rem;
    }
}
.features-title {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.2rem;
    color: #222;
}
.features-desc {
    text-align: center;
    font-size: 1.08rem;
    color: #666;
    margin-bottom: 2.2rem;
}
.contact-request-section {
    margin: 5rem 0 4rem 0;
}
.contact-request-container {
    display: grid
;
    grid-template-columns: 20% 50% 30%;
    align-items: center;
    background: #fff;
    border-radius: 25px;
    border: 2px solid #0171e3;
    max-width: 1100px;
    margin: 0 auto;
    padding: 1.5rem 1.2rem;
    gap: 1.5rem;
}
.contact-request-image {
    position: relative;
    z-index: 1;
}
.contact-request-image img {
    width: 181px;
    max-width: none;
    display: block;
    margin: 0 auto;
    position: absolute;
    top: -187px;
    left: 0;
   
    border-radius: 18px;
}
.contact-request-text {
    text-align: center;
}
.contact-request-text h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #222;
}
.contact-request-text p {
    font-size: 1rem;
    color: #222;
    margin: 0;
    font-weight: 500;
    line-height: 2.1;
}
.contact-request-action {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.7rem;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
}
.contact-request-btn {
    background: #0171e3;
    color: #fff;
    font-size: 0.97rem;
    font-family: inherit;
    border: none;
    border-radius: 8px;
    padding: 0.55rem 1.4rem;
    font-weight: 300;
    cursor: pointer;
    transition: background 0.2s;
    min-width: 0;
    max-width: 180px;
    box-sizing: border-box;
    margin: 0 auto;
}
.contact-request-btn:hover {
    background: #015bb5;
}
.contact-request-btn--phone {
    background: #fff;
    color: #0171e3;
    border: 2px solid #0171e3;
    font-weight: 300;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
}
.contact-request-btn--phone:hover {
    background: #e3f1fd;
    color: #015bb5;
}
@media (max-width: 900px) {
    .contact-request-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.2rem;
    }
    .contact-request-image img {
        position: static;
        /* width: 110px; */
        max-width: 90vw;
        margin-bottom: 0.5rem;
        left: 0;
        top: 0;
        box-shadow: none;
    }
    .contact-request-section {
        margin: 3rem 0 2.5rem 0;
    }
}
.blog-section {
    margin: 3.5rem 0 2.5rem 0;
}
.blog-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2.2rem;
    color: #222;
}
.blog-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.2rem;
}
.blog-item {
    background: #fff;
    border-radius: 18px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 12px 0 rgba(0,0,0,0.04);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s, border-color 0.2s;
}
.blog-item:hover {
    box-shadow: 0 4px 24px 0 rgba(0,0,0,0.08);
    border-color: #0171e3;
}
.blog-img img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    display: block;
}
.blog-content {
    padding: 1.1rem 1rem 1.3rem 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.blog-content h3 {
    font-size: 1.08rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
    color: #222;
}
.blog-content p {
    font-size: 0.98rem;
    color: #555;
    margin-bottom: 1.1rem;
}
.blog-btn {
    background: #0171e3;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0.6rem 1.5rem;
    font-size: 0.98rem;
    font-weight: 400;
    text-decoration: none;
    text-align: center;
    transition: background 0.2s;
    cursor: pointer;
    align-self: flex-start;
}
.blog-btn:hover {
    background: #015bb5;
}
@media (max-width: 1100px) {
    .blog-list {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 700px) {
    .blog-list {
        grid-template-columns: 1fr;
    }
    .blog-img img {
        height: 140px;
    }
}
.site-footer {
    background: #F7F7F7;
    /* border-top: 1.5px solid #e5e7eb; */
    padding: 2.5rem 0 1.2rem 0;
    margin-top: 2.5rem;
}
.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.2rem;
}
.footer-col h4 {
    font-size: 1.08rem;
    font-weight: 700;
    color: #0171e3;
    margin-bottom: 1.1rem;
}
.footer-col p, .footer-col ul {
    font-size: 0.98rem;
    color: #444;
    margin: 0 0 0.7rem 0;
    line-height: 2;
}
.footer-col ul {
    list-style: none;
    padding: 0;
}
.footer-col ul li {
    margin-bottom: 0.4rem;
}
.footer-col ul li a {
    color: #0171e3;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-col ul li a:hover {
    color: #0171e3;
}
@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}
.footer-cols-row {
    display: block;
}
@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    .site-footer {
        padding: 1.5rem 0 0.7rem 0;
    }
    .footer-cols-row {
        display: flex;
        flex-direction: row;
        gap: 1.2rem;
        justify-content: center;
    }
    .footer-cols-row .footer-col {
        flex: 1 1 0;
        min-width: 0;
    }
}
.footer-copyright {
    background: #fff;
    color: #111;
    text-align: center;
    font-size: 0.91rem;
    font-weight: 300;
    padding: 1.1rem 0 1.2rem 0;
    border-radius: 0 0 18px 18px;
    margin: 0 auto;
    max-width: 1200px;
    box-shadow: 0 2px 12px 0 rgba(0,0,0,0.03);
}
.side-overlay {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    z-index: 100;
    transition: opacity 0.3s;
}
.side-overlay.active {
    display: block;
}
.hide-menu-toggle {
    display: none !important;
}
.advisor-fixed-box {
    position: fixed;
    left: 50%;
    bottom: 32px;
    transform: translateX(-50%);
    z-index: 1000;
    background: rgba(255,255,255,0.28);
    box-shadow: 0 8px 32px 0 rgba(31,38,135,0.10);
    backdrop-filter: blur(10px);
    border-radius: 18px;
    padding: 12px 32px;
    display: flex;
    align-items: center;
    min-width: 320px;
    border: 1px solid rgba(255,255,255,0.22);
    font-family: 'IRANYekanX', Tahoma, sans-serif;
    animation: advisor-fade-in 0.7s cubic-bezier(.39,.58,.57,1) 1;
    transition: box-shadow 0.2s, background 0.2s;
}
@keyframes advisor-fade-in {
    from { opacity: 0; transform: translateX(-50%) translateY(30px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.advisor-inner {
    display: flex;
    align-items: center;
    gap: 32px;
    width: 100%;
}
.advisor-phone {
    font-size: 1.18rem;
    font-weight: 400;
    color: #222;
    letter-spacing: 1px;
    direction: ltr;
    font-family: 'IRANYekanX', Tahoma, sans-serif;
    display: flex;
    align-items: center;
    gap: 4px;
    text-decoration: none !important;
}
.advisor-phone-icon {
    display: inline-block;
    vertical-align: middle;
    margin-left: 6px;
}
.advisor-request-btn {
    background: rgba(0, 123, 255, 0.13);
    color: #007bff;
    border: none;
    border-radius: 8px;
    padding: 8px 28px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s, color 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    backdrop-filter: blur(2px);
    font-family: 'IRANYekanX', Tahoma, sans-serif;
}
.advisor-request-btn:hover {
    background: #007bff;
    color: #fff;
    box-shadow: 0 4px 16px rgba(0,123,255,0.10);
}
@media (max-width: 600px) {
    .advisor-fixed-box {
        min-width: 400px;
        width: auto;
        padding: 12px 32px;
        bottom: 32px;
        border-radius: 18px;
    }
    .advisor-inner {
        flex-direction: row;
        gap: 32px;
        align-items: center;
    }
    .advisor-request-btn {
        width: auto;
        padding: 8px 28px;
        font-size: 1rem;
    }
    .advisor-phone {
        justify-content: flex-start;
        font-size: 1.18rem;
    }
}
.advisor-hide {
    opacity: 0 !important;
    pointer-events: none !important;
    transition: opacity 0.4s;
} 
/* --- Dropdown Menu --- */
.has-dropdown {
    position: relative;
}
.dropdown-menu {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    background: rgba(255,255,255,0.95);
    box-shadow: 0 8px 32px 0 rgba(31,38,135,0.10);
    border-radius: 12px;
    min-width: 170px;
    z-index: 200;
    padding: 0.5rem 0;
    margin-top: 28px;
    border: 1px solid #e5e7eb;
    backdrop-filter: blur(8px);
}
.has-dropdown:hover > .dropdown-menu {
    display: block;
}
.dropdown-menu li {
    list-style: none;
}
.dropdown-menu li a {
    display: block;
    padding: 0.7rem 1.2rem;
    color: #222;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    transition: background 0.2s, color 0.2s;
    border-radius: 8px;
}
.dropdown-menu li a:hover {
    background: #f3f4f6;
    color: #0171e3;
}
.dropdown-arrow {
    width: 1em;
    height: 0.7em;
    margin-right: 0.3em;
    transition: transform 0.25s, filter 0.25s;
    display: inline-block;
    vertical-align: middle;
    filter: grayscale(1) brightness(0.5);
}
.has-dropdown:hover > a .dropdown-arrow,
.has-dropdown.open > a .dropdown-arrow {
    transform: rotate(180deg);
    filter: none;
    /* رنگ آبی مثل لینک خدمات */
    filter: none;
    /* اگر svg تک‌رنگ باشد */
    /* برای svgهای تک‌رنگ، fill را تغییر می‌دهیم */
    fill: #0171e3;
}
@media (max-width: 900px) {
    .dropdown-arrow {
        margin-right: 0.6em;
        width: 1.2em;
        height: 0.7em;
    }
}
/* --- End Dropdown Menu --- */ 
/* --- Testimonials Slider --- */
.testimonials-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    min-height: 370px;
    height: 370px;
    max-height: 420px;
    box-sizing: border-box;
}
.testimonials-slide {
    display: none;
    width: 100%;
    transform: none;
    transition: none;
}
.testimonials-slide.active {
    display: block;
    transform: none;
    transition: none;
}
.testimonial-prev, .testimonial-next {
    position: static;
    margin: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}
.testimonial-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}
.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(1, 113, 227, 0.3);
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}
.indicator:hover {
    background: rgba(1, 113, 227, 0.6);
    transform: scale(1.1);
}
.indicator.active {
    background: #0171e3;
    transform: scale(1.2);
}
.arrow-icon {
    width: 2.1em;
    height: 2.1em;
    display: inline-block;
    vertical-align: middle;
    transition: filter 0.2s, transform 0.2s, stroke 0.2s;
}
.arrow-left, .arrow-right {
    /* بدون rotate چون svg جداست */
}
.testimonial-prev:hover .arrow-icon,
.testimonial-next:hover .arrow-icon {
    filter: none;
    stroke: #fff;
}
.testimonial-prev:hover .arrow-icon path,
.testimonial-next:hover .arrow-icon path {
    stroke: #fff;
}
@media (max-width: 900px) {
    .testimonials-slider {
        min-height: 220px;
        height: auto;
        max-height: none;
        padding: 0 0.5rem;
    }
    .testimonials-slide {
        padding: 1.2rem 0.5rem 1.5rem 0.5rem;
        background: none;
        border-radius: 0;
        box-shadow: none;
        margin: 0 auto;
        max-width: 480px;
    }
    .testimonials-row {
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 0.7rem;
        width: 100%;
    }
    .testimonials-col {
        width: 100%;
        max-width: 100%;
        padding: 0;
        box-sizing: border-box;
        text-align: center;
        background: none;
        box-shadow: none;
    }
    .testimonials-video iframe {
        width: 100%;
        min-height: unset !important;
        max-width: 100%;
        border-radius: 14px;
        margin: 0 auto 0.7rem auto;
        display: block;
        box-shadow: none;
        aspect-ratio: 16/9;
        height: auto;
    }
    .testimonials-header {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 0.5rem;
        margin-bottom: 0.2rem;
        width: 100%;
    }
    .testimonials-meta {
        flex-direction: column;
        align-items: center;
        gap: 0.35rem;
        margin-bottom: 0;
        text-align: center;
    }
    .testimonial-name {
        font-size: 1.05rem;
        font-weight: 700;
        color: #0171e3;
    }
    .testimonial-company {
        font-size: 0.97rem;
        color: #888;
        font-weight: 400;
    }
    .testimonials-stars {
        justify-content: flex-start;
        margin-bottom: 0;
        font-size: 1.1rem;
        text-align: left;
        min-width: 70px;
    }
    .testimonials-content p {
        font-size: 1.05rem;
        line-height: 2;
        margin-bottom: 0.5rem;
        text-align: center;
        color: #444;
    }
    .testimonial-indicators {
        margin-top: 1.2rem;
    }
}
/* --- End Testimonials Slider --- */ 
/* Content Tabs Section */
.content-tabs-section {
  margin: 64px 0;
  padding: 0 0 32px 0;
  border-radius: 24px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.content-tabs-section a {
  color: #1976d2;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.content-tabs-section a:hover {
  color: #0d47a1;
  text-decoration: underline;
}
.content-tabs-container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px;
}
.content-tabs-info {
  flex: 1 1 420px;
  min-width: 320px;
}
.content-tabs-title {
  font-family: IRANYekanX, sans-serif;
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: #222;
}
.content-tabs-desc {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 24px;
  line-height: 30px;
}
.content-tabs {
  display: flex;
  border: 1.5px solid #027bff;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 24px;
  background: rgba(255,255,255,0.5);
}
.tab-btn {
  flex: 1 1 0;
  padding: 12px 0;
  background: none;
  border: none;
  outline: none;
  font-family: inherit;
  font-size: 1rem;
  color: #222;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.tab-btn.active {
    background: #027bff;
    color: #ffffff;
    font-weight: bold;
}
.tab-btn:not(.active):hover {
    background: #027bff45;
}
.tab-content {
  display: none;
  font-size: 1rem;
  color: #333;
  margin-bottom: 0;
  animation: fadeIn 0.4s;
}
.tab-content.active {
  display: block;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.content-tabs-image {
  flex: 0 0 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.content-tabs-image img {
  width: 100%;
  max-width: 320px;
  border-radius: 18px;
  
}
.content-tabs-image .tab-image {
  display: none;
}
.content-tabs-image .tab-image.active {
  display: block;
}
@media (max-width: 900px) {
  .content-tabs-container {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }
  .content-tabs-image {
    margin: 0 auto;
    max-width: 320px;
  }
} 
.content-tabs-info .tab-content p {
  line-height: 30px;
} 
.content-tabs-info .tab-content ul {
  margin-bottom: 16px;
  padding-right: 24px;
} 
table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 18px;
  overflow: hidden;
  font-family: inherit;
  background: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  box-shadow: 0 4px 24px rgba(25,118,210,0.08), 0 1.5px 8px rgba(31,38,135,0.06);
  backdrop-filter: blur(2px);
}
table th, table td {
  border: none;
  padding: 16px 14px;
  text-align: right;
  font-size: 1.05rem;
  vertical-align: middle;
  transition: background 0.2s;
}
table thead th {
  background: linear-gradient(90deg, #e3f0fd 0%, #f7fbff 100%);
  color: #1976d2;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 0.01em;
}
table tbody tr {
  border-bottom: 1.5px solid #e3f0fd;
}
table tbody tr:last-child {
  border-bottom: none;
}
table tbody tr:nth-child(even) {
  background: rgba(227,240,253,0.18);
}
table tbody tr:hover {
  background: #e3f0fd;
  box-shadow: 0 2px 12px rgba(25,118,210,0.08);
}
table th:first-child, table td:first-child {
  border-radius: 0 0 0 12px;
}
table th:last-child, table td:last-child {
  border-radius: 0 0 12px 0;
} 