body {
    margin: 0;
}

/* --- HEADER WRAPPER --- */
.header-wrap {
    padding: 24px;
}

/* --- MAIN TOP BAR --- */
.top-bar {
    max-width: 1200px;
    margin: auto;
    background: #d2d2d2;
    padding: 20px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.25);
}

/* LEFT BUTTONS */
.left-actions {
    display: flex;
    gap: 10px;
}
.btn {
    padding: 10px 14px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    background: rgb(59, 130, 246);
    color: white;
    transition: 0.4s;
}
.btn:hover {
    background: rgb(133, 180, 255);
}
.btn.secondary:hover {
    background: rgb(137, 182, 255);
    color: white;
}
.btn i {
    margin-left: 5px;
}
.btn.secondary {
    background: #e3f7ff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgb(59, 130, 246);
}

/* SEARCH BAR */
.search2 {
    flex: 1;
    display: flex;
    justify-content: center;
}
.search2 input {
    width: 100%;
    max-width: 650px;
    padding: 14px;
    border-radius: 10px;
    background: #e3f7ff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgb(86, 86, 86);
    direction: rtl;
}

/* LOGO */
.brand {
    display: flex;
    align-items: center;
    gap: 10px;
}
.brand h1 {
    margin: 0;
    font-size: 20px;
    color: rgb(68, 68, 68);
}

/* --- BOTTOM NAV SEPARATE BAR --- */
.nav-bottom {
    max-width: 850px;
    margin: 0px auto 0;
    background: #b8e6ff;
    padding: 14px 60px;
    border-radius: 0px 0px 12px 12px;
    box-shadow: 0 6px 1px #b8e6ff;
}
.nav-bottom ul {
    direction: rtl;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin: 10px auto;
    flex-wrap: wrap;
    gap: 16px;
}
.nav-bottom ul li {
    list-style: none;
}
.nav-bottom a {
    color: #434343;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: 0.7s;
}
.nav-bottom a:hover {
    color: #576574;
}

/* RESPONSIVE */
@media (max-width: 700px) {
    .top-bar {
        flex-direction: column;
        align-items: stretch;
    }
    .search {
        order: 3;
    }
    .left-actions {
        order: 1;
        justify-content: center;
    }
    .brand {
        order: 2;
        justify-content: center;
    }
    .nav-bottom nav {
        justify-content: center;
    }
}

/* وسط مربوط به خدمات و مصالح */

.item-tanz {
    width: 80%;
    /* border: 1px solid red; */
    display: flex;
    justify-content: center;
    margin: 30px auto;
    gap: 50px;
    position: relative;
    flex-wrap: wrap;
}
@media (max-width: 700px) {
    .item-tanz {
        gap: 100px;
    }
}
.item-tanz a {
    width: 100px;
    height: 100px;
    display: flex;
    padding: 2px;
    justify-content: center;
    align-items: center;
}
.item-tanz > a > div {
    width: 100%;
    height: 100%;
    border: 1px solid rgb(133, 180, 255);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    rotate: 45deg;
}
.item-tanz > a > div > div {
    width: 90px;
    height: 90px;
    border-radius: 17px;
    background-color: #d2d2d2;
    transition: 0.9s;
    position: relative;
    z-index: 100;
}
.item-tanz > a:hover span {
    top: 130px;
    visibility: visible;
    opacity: 1;
}
.item-tanz > a:hover > div > div {
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.25);
}
.item-tanz a span {
    position: absolute;
    top: 0px;
    background-color: #ffe0e0;
    padding: 10px 20px;
    border-radius: 15px;
    transition: all 0.9s;
    opacity: 0;
    z-index: -1;
    visibility: hidden;
}

/* خدمات */

.tanzim-khadamat {
    width: 80%;
    display: flex;
    justify-content: center;
    margin: 0px auto;
    gap: 50px;
    flex-wrap: wrap;
    padding: 50px 0px;
}

.khadamat {
    width: 100%;
    padding-top: 50px;
}

.service-card {
    position: relative;
    border-radius: 8px;
    width: 317px;
    height: 203px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.2s;
}

.service-card:hover {
    transform: translateY(-4px);
}

.service-card:hover::after {
    opacity: 0;
}
.service-card:hover h3 {
    color: black;
}

.service-card:hover p {
    color: black;
}
.service-card::after {
    content: "";
    /* هاله آبی رنگ در سمت راست */
    position: absolute;
    top: 0;
    right: 0;
    width: 100%; /* عرض هاله */
    height: 100%;
    background: radial-gradient(
        circle at right,
        rgba(0, 15, 28, 0.95),
        rgba(0, 136, 255, 0) 90%
    );
    pointer-events: none;
    opacity: 1;
    transition: 0.5s;
}

.service-card h3 {
    margin: 0 0 12px 0;
    font-size: 20px;
    color: #ffffff;
    position: absolute;
    bottom: 50px;
    right: 12px;
    z-index: 1000;
}

.service-card p {
    margin: 0;
    color: #ffffff;
    line-height: 1.4;
    position: absolute;
    bottom: 10px;
    right: 8px;
    direction: rtl;
    z-index: 1000;
}

.service-card .icon {
    font-size: 40px;
    color: #0088ff; /* رنگ آیکون آبی مثل هاله */
    margin-bottom: 12px;
}

.khadamat h2 {
    width: 100px;
    height: 100px;
    margin: 10px auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* فوتر سایت */

.foooter {
    width: 100%;
    background: url(../images/ChatGPT\ Image\ Nov\ 19\,\ 2025\,\ 09_08_02\ AM.png);
    background-size: cover;
    margin-top: 100px;
    color: white;
    text-align: right !important;
}
.top-footer {
    width: 80%;
    display: flex;
    justify-content: center;
    margin: 10px auto;
    gap: 40px;
    align-items: center;
}
.top-footer > div {
    direction: rtl !important;
    width: 400px;
}
.top-footer > div h1 {
    color: goldenrod;
    margin-top: 50px;
}
.etemad-logo {
    width: 160px;
    height: 240px;
    margin: 10px auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.etemad-logo > img {
    width: 100%;
}

.etemad-logo > span {
    font-size: 12px;
    text-align: center;
}
.tow-sec-footer {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.top-footer > div h3 {
    color: rgb(255, 224, 146);
    border-right: 3px solid white;
    padding: 3px 8px;
    font-size: 19px !important;
    cursor: pointer;
}
.title-khadamat-footer {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.title-khadamat-footer span a {
    text-decoration: none;
    color: white;
    transition: 0.4s;
}
.title-khadamat-footer span a:hover {
    color: #e2f5ff;
}

.bottom-footer {
    width: 100%;
    height: 30px;
    background-color: #1b387e;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}
.bottom-footer > div {
    /* width: 400px; */
    text-align: center;
    margin: 0px auto;
}

/* RESPONSIVE */
@media (max-width: 700px) {
    .top-footer {
        flex-wrap: wrap;
    }
}

/* .linertop {
    width: 100%;
    height: 60px;
    margin-top: 100px;
    background: linear-gradient(#ffffff 50%, #f6d37a 75%);
} */
/* .linerbottom {
    width: 100%;
    height: 60px;
    margin-bottom: 100px;
    background: linear-gradient(#cb982f 45%, #ffffff 85%);
} */

/* تغییرات در خود سایت اصلی */

.with-form {
    width: 50%;
}
/* ------- new header section ------ */
@import url(./fonts/vazirmatn/Vazirmatn.css);
/* @import url(../fonts/font-face.css); */

/* ===== BASE STYLES ===== */

/* ===== THEME TOGGLE SWITCH ===== */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.switch:hover {
    transform: scale(1.05);
}

.switch:active {
    transform: scale(0.95);
}

.slider1 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #f8fafc;
    border-radius: 34px;
    transition: 0.4s;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
}

.slider1:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 5px;
    background-color: white;
    border-radius: 50%;
    transition: 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

input:not(:checked) + .slider1:before {
    content: "☀️";
    transform: translateX(0);
    background: linear-gradient(135deg, #ffd166, #ff9e44);
}

input:checked + .slider1:before {
    content: "🌙";
    transform: translateX(calc(60px - 20px - 6px));
    background: linear-gradient(135deg, #67b944, #963880);
}

input:not(:checked) + .slider1 {
    background-color: #f8fafc;
}

input:checked + .slider1 {
    background-color: #963880;
}

/* ===== RESPONSIVE SWITCH ===== */
@media (max-width: 768px) {
    .switch {
        width: 50px;
        height: 25px;
    }

    .slider1:before {
        height: 17px;
        width: 17px;
        font-size: 8px;
    }
}

/* ===== BASE STYLES ===== */
html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    background-color: #ffffff;
    color: #1e293b;
    transition: background-color 0.3s ease, color 0.3s ease;
}

body {
    font-family: "Vazirmatn" !important;
    overflow-x: hidden;
}
a {
    text-decoration: none !important;
}
ul {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none;
}
/* .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
} */

.hide {
    display: none;
}
/* ---------->header-start<---------- */
.fade-out {
    transform: translateY(-45px);
    opacity: 0;
    transition: all 1s ease-in;
}
.fade-out1 {
    transform: translateY(-10px);
    transition: transform 1s ease-in;
}

.fade-in {
    transform: translateY(0px);
    opacity: 1;
    transition: all 1s ease-in;
}
.fade-in1 {
    transform: translateY(0px);
    transition: transform 1s ease-in;
}

#header {
    display: block;
    width: 100%;
    height: fit-content;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 11;
    direction: rtl;
    background-color: transparent;
    transition: background-color 0.3s ease;
}

#header__wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    background-color: transparent;
}
#header__top__items {
    background-color: #67ba44;
    color: #fff !important;
    width: 83%;
    height: 45px;
    border-bottom-left-radius: 3rem;
    border-bottom-right-radius: 3rem;
}
#header__top__items a {
    color: #fff !important;
}

#header__logo {
    background-color: #d2ab36;
    display: block;
    width: 115px;
    height: 115px;
    margin-right: 10px;
    margin-left: 10px;
    position: relative;
    z-index: 100000;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

#header__logo__link {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    padding: 0;
    line-height: 0;
    width: 100px;
    height: auto;
}

#header__logo__link img {
    display: block;
    width: 100%;
    max-width: 165px;
    transform: scale(1);
}

#header__special-btn {
    display: block;
    width: fit-content;
    height: fit-content;
    background-color: transparent;
}

#header__special-btn__link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 115px;
    height: 30px;
    background-color: #d6b647;
    color: #fff !important;
    font-size: 0.75rem;
    font-weight: 400;
    text-decoration: none;
    border-radius: 50px;
}

#header__special-btn__link i.bi {
    color: #fff;
    font-size: 1.5rem;
}

#header__nav-menu-btn,
#header__nav-close-btn {
    display: none;
    transition: all 0.3s ease;
}

#header__nav {
    display: block;
    width: fit-content;
    height: 65px;
    background-color: #ffff;
    filter: drop-shadow(0px 4px 14px #00000012);
    border-radius: 20px;
    padding: 1rem;
    margin-inline: auto;
    position: relative;
    z-index: 10;
    transition: all 0.3s ease;
}

#header__nav__items {
    display: flex;
    height: 100%;
    justify-content: space-between;
    align-items: center;
}

#header__nav__items .nav-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #333;
    text-decoration: none;
    border: none;
    padding: 0 0.5rem;
    border-radius: 5rem;
    font-size: 0.9rem;
    cursor: pointer;
    text-wrap: nowrap;
    line-height: 30px;
    position: relative;
    height: 100%;
    transition: all 0.3s ease;
}

#header__nav__items .nav-item_darkmode {
    display: flex;
    margin-top: 10px;
    color: #333;
    border: none;
    padding: 0 0.5rem;
    border-radius: 5rem;
    font-size: 0.9rem;
    cursor: pointer;
    text-wrap: nowrap;
    line-height: 30px;
    height: 100%;
    transition: all 0.3s ease;
}
/* ===== MEGA MENU STYLES ===== */
.mega-menu-wrapper {
    position: fixed;
    top: 100px;
    right: 0;
    left: 0;
    width: 95%;
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transform: translateY(-20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    height: 0;
    overflow: hidden;
    padding-top: 0;
    padding-inline: 2rem;
    border-radius: 24px;
    opacity: 0;
    display: none;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.mega-menu-wrapper.active {
    padding-top: 2.5rem;
    height: auto;
    opacity: 1;
    transform: translateY(0);
    display: block;
    pointer-events: auto;
    user-select: auto;
    visibility: visible;
}

/* ===== MEGA MENU LAYOUT ===== */
.mega-menu {
    display: flex;
    gap: 2.5rem;
    height: 100%;
    align-items: start;
    /* border: 1px solid blue; */
}

/* ===== MEGA MENU COLUMNS ===== */
.mega-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.mega-row {
    display: flex;
    gap: 1.5rem;
    width: 80%;
    direction: ltr;
    /* height: 300px; */
    /* border: 1px solid blue; */
    align-items: center;
    justify-content: end;
}
.mega-column input {
    height: 500px !important;
}

.mega-column.featured::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.1) 0%,
        transparent 70%
    );
    animation: float 6s ease-in-out infinite;
}
.btn1 {
    width: fit-content !important;
    font-size: 17px !important;
    border-radius: 12px;
    border-bottom-right-radius: 0px !important;
    border-top-right-radius: 0px !important;
    padding: 10px 18px !important;
    font-weight: 600 !important;
    text-align: center;
    background: #d6b647 !important;
    color: #ffff !important;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* ===== MEGA COLUMN HEADERS ===== */
.mega-column-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #e2e8f0;
}

.mega-column-header i {
    font-size: 1.25rem;
    color: #36a5ba;
    background: rgba(54, 165, 186, 0.1);
    padding: 0.5rem;
    border-radius: 12px;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mega-column-header h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

/* ===== MEGA MENU LISTS ===== */
.mega-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.75rem;
}

.mega-column ul li a {
    display: flex;
    border: 1px solid #36a5ba;
    align-items: center;
    gap: 0.75rem;
    color: #64748b;
    text-decoration: none;
    padding: 0.75rem;
    width: 180px;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.mega-column ul li a:hover {
    background: rgba(54, 165, 186, 0.1);
    color: #36a5ba;
    transform: translateX(8px);
}

.mega-column ul li a i {
    font-size: 1rem;
    color: #94a3b8;
    transition: color 0.3s ease;
}

.mega-column ul li a:hover i {
    color: #36a5ba;
}
.container_section {
    max-width: 100%;
    margin-top: 170px;
    margin-inline: auto;
    display: flex;
    justify-content: center;
    flex-direction: row-reverse;
    gap: 20px;
    align-items: stretch;
}
@media screen and (max-width: 1200px) {
    #header__nav__items {
        gap: 1rem;
    }

    #header__nav__items .nav-item {
        font-size: 0.8rem;
        padding: 0 0.4rem;
    }

    .mega-menu-wrapper {
        width: 90%;
        max-width: 1000px;
    }
}

@media screen and (max-width: 1100px) {
    #header__wrapper {
        padding: 1rem 1rem 0;
    }

    #header__nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 35%;
        height: 100vh;
        border-radius: 0;
        padding: 1rem;
        display: none;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    #header__nav__items {
        flex-direction: column;
        height: auto;
        gap: 1rem;
        margin-top: 4rem;
    }

    #header__nav__items .leftside,
    #header__nav__items .rightside {
        width: 100% !important;
        flex-direction: column;
        gap: 1rem;
    }

    #header__nav__items .middle {
        order: -1;
        margin-bottom: 2rem;
    }

    #header__nav__items .nav-item {
        display: block;
        text-align: center;
        margin: 0.5rem 0;
        padding: 1rem;
        border-radius: 1rem;
        background-color: #f8f9fa;
        transition: all 0.3s ease;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }

    #header__nav__items .nav-item:hover,
    #header__nav__items .nav-item:focus {
        background-color: #e9ecef;
        transform: translateY(-2px);
        outline: 2px solid #36a5ba;
        outline-offset: 2px;
    }

    #header__nav__items .nav-item:active {
        transform: translateY(0);
    }

    #header__nav__items .nav-item_darkmode {
        justify-content: center;
        padding: 1rem;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }

    #header__nav-menu-btn {
        display: block;
        background-color: #ffffff;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        padding: 0.75rem;
        border-radius: 0.75rem;
        position: fixed;
        top: 1rem;
        right: 1rem;
        z-index: 1001;
        transition: all 0.3s ease;
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: none;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }

    #header__nav-menu-btn:hover,
    #header__nav-menu-btn:focus {
        transform: scale(1.05);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
        outline: 2px solid #36a5ba;
        outline-offset: 2px;
    }

    #header__nav-menu-btn:active {
        transform: scale(0.95);
    }

    #header__nav-menu-btn i.bi {
        line-height: 0;
        font-size: 1.75rem;
        color: #333 !important;
    }

    #header__nav-close-btn {
        display: flex;
        justify-content: flex-end;
        position: fixed;
        top: 1rem;
        left: 1rem;
        z-index: 1001;
    }

    #header__nav-close-btn button {
        background-color: #ffffff;
        border: none;
        border-radius: 0.75rem;
        padding: 0.75rem;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }

    #header__nav-close-btn button:hover,
    #header__nav-close-btn button:focus {
        transform: scale(1.05);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
        outline: 2px solid #36a5ba;
        outline-offset: 2px;
    }

    #header__nav-close-btn button:active {
        transform: scale(0.95);
    }

    #header__nav.style--open {
        display: block;
    }

    #header__nav.style--open #header__nav__items {
        display: flex;
        margin-top: 0;
    }

    /* Mega menu mobile styles */
    .mega-menu-wrapper {
        position: static;
        width: 100%;
        max-width: none;
        margin: 1rem 0;
        transform: none;
        height: 0;
        overflow: hidden;
        padding: 0;
        background-color: #f8f9fa;
        border-radius: 1rem;
        opacity: 0;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        display: none;
        pointer-events: none;
        user-select: none;
        visibility: hidden;
    }

    .mega-menu-wrapper.active {
        padding: 1rem;
        height: auto;
        opacity: 1;
        display: block;
        pointer-events: auto;
        user-select: auto;
        visibility: visible;
    }

    .mega-column {
        text-align: center;
    }

    .mega-column h3 {
        margin-bottom: 1rem;
        color: #333;
        font-size: 1.1rem;
    }

    .mega-column ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .mega-column ul li {
        margin: 0.5rem 0;
    }

    .mega-column ul li a {
        color: #666;
        text-decoration: none;
        padding: 0.5rem 1rem;
        display: block;
        border-radius: 0.5rem;
        transition: all 0.3s ease;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }

    .mega-column ul li a:hover,
    .mega-column ul li a:focus {
        background-color: #e9ecef;
        color: #333;
        outline: 2px solid #36a5ba;
        outline-offset: 2px;
    }

    .mega-column ul li a:active {
        transform: scale(0.98);
    }

    /* Top items mobile */
    #header__top__items {
        width: 80%;
        height: 40px;
        font-size: 0.8rem;
    }

    /* Logo mobile */
    #header__logo {
        width: 90px;
        height: 90px;
        margin: 0.5rem;
        transition: all 0.3s ease;
    }

    #header__logo__link {
        width: 80px;
        transition: all 0.3s ease;
    }

    #header__logo__link img {
        max-width: 120px;
        transition: all 0.3s ease;
    }

    /* Special button mobile */
    #header__special-btn__link {
        width: 100px;
        height: 35px;
        font-size: 0.7rem;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }
}

@media screen and (max-width: 768px) {
    #header__wrapper {
        padding: 0.5rem 0.5rem 0;
    }

    #header__nav {
        padding: 0.75rem;
    }

    #header__nav__items {
        margin-top: 3rem;
        gap: 0.75rem;
    }

    #header__nav__items .nav-item {
        padding: 0.75rem;
        font-size: 0.85rem;
    }

    #header__nav-menu-btn {
        top: 0.75rem;
        right: 0.75rem;
        padding: 0.6rem;
    }

    #header__nav-close-btn {
        top: 0.75rem;
        left: 0.75rem;
    }

    #header__top__items {
        width: 98%;
        height: 35px;
        font-size: 0.75rem;
    }

    #header__logo {
        width: 80px;
    }

    #header__logo__link {
        width: 70px;
    }

    #header__logo__link img {
        max-width: 100px;
    }
}

@media screen and (max-width: 576px) {
    #header__wrapper {
        padding: 0.25rem 0.25rem 0;
    }

    #header__nav {
        padding: 0.5rem;
    }

    #header__nav__items {
        margin-top: 2.5rem;
        gap: 0.5rem;
    }

    #header__nav__items .nav-item {
        padding: 0.6rem;
        font-size: 0.8rem;
    }

    #header__nav-menu-btn {
        top: 0.5rem;
        right: 0.5rem;
        padding: 0.5rem;
    }

    #header__nav-close-btn {
        top: 0.5rem;
        left: 0.5rem;
    }

    #header__top__items {
        width: 100%;
        height: 30px;
        font-size: 0.7rem;
        border-radius: 0;
    }

    #header__logo {
        width: 70px;
        margin: 0.25rem;
    }

    #header__logo__link {
        width: 60px;
    }

    #header__logo__link img {
        max-width: 80px;
    }

    #header__special-btn__link {
        width: 90px;
        height: 30px;
        font-size: 0.65rem;
    }
}

@media screen and (max-width: 480px) {
    #header__nav__items .nav-item {
        font-size: 0.75rem;
        padding: 0.5rem;
        gap: 2px;
    }

    #header__logo {
        width: 60px;
    }

    #header__logo__link {
        width: 50px;
    }

    #header__logo__link img {
        max-width: 70px;
    }

    #header__special-btn__link {
        width: 80px;
        height: 28px;
        font-size: 0.6rem;
    }
}

/* اسلایدر */
.slider-container {
    height: 540px;
    padding: 0;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.slide.active {
    opacity: 1;
}

/* پس‌زمینه بلوری */
.slide-bg {
    width: 100%;
    height: 100%;
    position: absolute;
    filter: blur(8px);
    background-size: cover;
    background-position: center;
}

.slide-1 .slide-bg {
    background-image: url("https://images.unsplash.com/photo-1545324418-cc1a3fa10c00?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80");
}

.slide-2 .slide-bg {
    background-image: url("https://images.unsplash.com/photo-1504307651254-35680f356dfd?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80");
}

/* لایه رویی */
.slide-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(44, 62, 80, 0.85);
    display: flex;
    align-items: center;
    padding: 0 40px;
}

/* محتوای دو قسمتی */
.slide-content {
    display: flex;
    width: 100%;
    gap: 30px;
    align-items: center;
    justify-content: center;
}

.text-box {
    color: white;
    padding: 20px;
    text-align: center;
}

.text-box h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 600;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s forwards;
    animation-delay: 0.3s;
    color: #ffff !important;
}

.text-box p {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s forwards;
    animation-delay: 0.6s;
}

/* آیکون */
.icon-box {
    flex: 0 0 auto;
    width: 100px;
    height: 100px;
    background: rgba(52, 152, 219, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    opacity: 0;
    transform: scale(0.8);
    animation: scaleIn 0.8s forwards;
    animation-delay: 0.2s;
}

/* انیمیشن‌ها */
@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* کنترل‌های اسلایدر */
.slider-controls {
    position: absolute;
    bottom: 20px;
    right: 50%;
    transform: translateX(50%);
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: 0.3s;
}

.slider-dot.active {
    background: #3498db;
    transform: scale(1.2);
}

/* دکمه‌های قبلی/بعدی */
.nav-buttons {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.nav-btn {
    background: #f7f7f735;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn:hover {
    background: #2980b9;
    transform: scale(1.1);
}

/* پنل تور */
.tour-panel {
    background: white;
    border-radius: 12px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    /* min-width: 280px; */
}

.tour-header {
    text-align: center;
    margin-bottom: 20px;
}

.tour-icon {
    width: 70px;
    height: 70px;
    background: #e74c3c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
    font-size: 2rem;
}

.tour-title {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 5px;
}

.tour-info {
    margin: 20px 0;
}

.info-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.info-label {
    color: #666;
}

.info-value {
    color: #3498db;
    font-weight: 600;
}

.tour-button {
    background: #2ecc71;
    color: white;
    border: none;
    padding: 14px;
    text-wrap: nowrap;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: 0.3s;
    margin-top: auto;
}

.tour-button:hover {
    background: #27ae60;
    transform: translateY(-2px);
}

/* موبایل */
@media (max-width: 768px) {
    .container_section {
        flex-direction: column;
    }

    .slider-container {
        height: 300px;
    }

    .slide-overlay {
        padding: 0 20px;
    }

    .slide-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .icon-box {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }

    .text-box h3 {
        font-size: 1.5rem;
    }

    .tour-panel {
        width: 100%;
    }
}
.slick-slide {
    height: 540px !important;
}
.slider-content {
    border-radius: 20px;
}
.action-about {
    background-image: url(../images/background/back1.png);
    background-position: center center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #303030;
    background-blend-mode: overlay;
    padding: 20px 20px 40px 50px;
    border-radius: 20px;
    text-align: right;
}
.action-about h2 {
    color: #d6b647 !important;
}
.logo-container {
    width: 250px;
}
.logo-container img {
    width: 100%;
}
.about-container,
.about-container h2 {
    color: white !important;
}
.item-container .items {
    width: 90%;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
}
.item-container .items .item {
    width: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.item-container .item-title {
    font-size: 25px !important;
    font-weight: 900 !important;
    color: white !important;
}
.item-container .item-number {
    font-size: 40px !important;
    font-weight: bolder !important;
    color: #d6b647 !important;
}
