@font-face {
    font-family: 'IRANSansX';
    src: url('../assets/fonts/IRANSansWeb_Light.woff2') format('woff2'),
         url('../assets/fonts/IRANSansWeb_Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

:root {
    --brand-primary: #0f5ef7;
    --brand-secondary: #16c79a;
    --brand-dark: #081226;
    --brand-dark-2: #0f172a;
    --surface: rgba(255, 255, 255, 0.9);
    --surface-strong: #ffffff;
    --surface-muted: #f4f9ff;
    --line: rgba(15, 23, 42, 0.08);
    --text-main: #102038;
    --text-soft: #5c6b82;
    --success: #0ea66e;
    --shadow-lg: 0 30px 80px rgba(8, 18, 38, 0.14);
    --shadow-md: 0 18px 40px rgba(8, 18, 38, 0.1);
    --radius-xl: 34px;
    --radius-lg: 24px;
    --radius-md: 18px;
}

html {
    font-size: 10px;
}

html,
body {
    direction: rtl;
}

body {
    font-family: 'IRANSansX', Tahoma, sans-serif;
    background:
        radial-gradient(circle at top right, rgba(22, 199, 154, 0.12), transparent 30%),
        radial-gradient(circle at top left, rgba(15, 94, 247, 0.15), transparent 28%),
        linear-gradient(180deg, #eef6ff 0%, #f8fcff 42%, #eefaf7 100%);
    color: var(--text-main);
    text-align: right;
}

a {
    transition: all .22s ease;
}

input,
textarea,
select,
button {
    font-family: 'IRANSansX', Tahoma, sans-serif;
}

img {
    max-width: 100%;
}

.container {
    width: 100%;
    max-width: 1320px;
}

.page-wrapper {
    overflow: hidden;
}

.main {
    min-height: 50vh;
}

.btn {
    border-radius: 16px;
    padding: 1.15rem 2.2rem;
    font-size: 1.45rem;
    font-weight: 700;
    letter-spacing: 0;
}

.btn-primary,
.btn-primary:hover,
.btn-primary:focus {
    background: linear-gradient(135deg, var(--brand-primary), #2d8cff);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 18px 40px rgba(15, 94, 247, 0.24);
}

.btn-outline-primary-2,
.btn-outline-primary-2:hover,
.btn-outline-primary-2:focus {
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(15, 94, 247, 0.18);
    color: var(--brand-primary);
    box-shadow: 0 10px 28px rgba(15, 94, 247, 0.1);
}

[class*=" icon-"]:before,
[class^=icon-]:before {
    display: inline-block;
    width: 1em;
    text-align: center;
}

.icon-arrow-up:before {
    content: "↑";
    font-family: inherit;
    font-weight: 700;
}

.icon-linkedin:before {
    content: "in";
    font-family: inherit;
    font-weight: 800;
    font-size: .85em;
}

.modern-site-header {
    position: relative;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.7);
    box-shadow: 0 12px 35px rgba(8, 18, 38, 0.08);
}

.modern-header-top {
    background: linear-gradient(90deg, #071225 0%, #0f5ef7 56%, #16c79a 100%);
}

.modern-header-top .container,
.modern-header-middle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.modern-header-top .container {
    min-height: 52px;
}

.modern-header-badge {
    padding: .8rem 1.6rem;
    border-radius: 999px;
    color: #fff;
    background: rgba(255,255,255,0.14);
    font-size: 1.25rem;
    font-weight: 700;
}

.modern-top-link {
    color: rgba(255,255,255,0.92);
    margin-right: 18px;
    font-size: 1.28rem;
}

.modern-top-link:hover {
    color: #fff;
    transform: translateY(-1px);
}

.header-middle {
    padding: 0;
}

.modern-header-middle {
    min-height: 124px;
    padding: 22px 0;
}

.modern-logo {
    position: relative;
}

.modern-logo::after {
    content: "";
    position: absolute;
    inset: -10px -16px;
    z-index: -1;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(15, 94, 247, 0.08), rgba(22, 199, 154, 0.08));
}

.modern-header-copy {
    text-align: center;
    max-width: 660px;
}

.modern-header-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: .8rem 1.6rem;
    margin-bottom: 1.4rem;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(15, 94, 247, 0.12), rgba(22, 199, 154, 0.14));
    color: var(--brand-primary);
    font-size: 1.24rem;
    font-weight: 800;
}

.modern-header-copy h1 {
    margin: 0;
    font-size: 3.5rem;
    line-height: 1.45;
    font-weight: 900;
    color: var(--brand-dark);
}

.modern-header-copy p {
    margin: 1.2rem 0 0;
    font-size: 1.55rem;
    line-height: 1.95;
    color: var(--text-soft);
}

.modern-header-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 220px;
}

.modern-header-actions .btn {
    width: 100%;
}

.modern-header-nav-wrap {
    border-top: 1px solid var(--line);
    background: rgba(255,255,255,0.76);
}

.header-bottom {
    min-height: 68px;
}

.modern-main-nav {
    width: 100%;
}

.modern-main-menu,
.main-nav .menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 10px 0;
}

.modern-main-menu > li,
.main-nav .menu > li {
    position: relative;
}

.modern-main-menu > li > a,
.main-nav .menu > li > a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 14px;
    color: var(--brand-dark-2);
    font-size: 1.45rem;
    font-weight: 700;
}

.modern-main-menu > li > a:hover,
.main-nav .menu > li > a:hover {
    color: var(--brand-primary);
    background: linear-gradient(135deg, rgba(15, 94, 247, 0.08), rgba(22, 199, 154, 0.1));
}

.main-nav .menu ul {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 220px;
    list-style: none;
    margin: 0;
    padding: 10px;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 18px;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: var(--shadow-md);
    display: none;
    z-index: 20;
}

.main-nav .menu li:hover > ul {
    display: block;
}

.main-nav .menu ul li a {
    display: block;
    padding: 10px 12px;
    border-radius: 12px;
    color: var(--text-main);
    font-size: 1.35rem;
}

.main-nav .menu ul li a:hover {
    background: var(--surface-muted);
    color: var(--brand-primary);
}

.mobile-menu-toggler {
    width: 50px;
    height: 50px;
    border-radius: 16px;
    border: 1px solid rgba(15, 94, 247, 0.1);
    background: linear-gradient(135deg, rgba(15,94,247,.08), rgba(22,199,154,.12));
    color: var(--brand-primary);
}

.top-consult-cta {
    position: absolute;
    top: 12px;
    left: 18px;
    z-index: 25;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 18px;
    background: linear-gradient(135deg, #0f5ef7, #16c79a);
    color: #fff !important;
    box-shadow: 0 20px 42px rgba(15, 94, 247, 0.28);
    font-size: 1.35rem;
    font-weight: 800;
}

.top-consult-cta strong {
    color: #fff;
    direction: ltr;
    font-size: 1.45rem;
}

.top-consult-cta .icon-phone {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255,255,255,.18);
}

.top-consult-cta:hover {
    color: #fff;
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 24px 50px rgba(22, 199, 154, 0.32);
}

.home-hero-shell,
.home-module-shell,
.home-highlight-section,
.modern-service-section,
.modern-inner-shell,
.modern-shop-page,
.modern-product-detail-page,
.modern-news-list-page {
    padding-top: 38px;
}

.home-hero-card,
.modern-content-card,
.modern-filter-card,
.modern-product-detail-card,
.modern-news-detail-card,
.modern-contact-card,
.modern-newsletter-card {
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.8);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.home-hero-card::before,
.modern-content-card::before,
.modern-product-detail-card::before,
.modern-contact-card::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(15, 94, 247, 0.14), transparent 68%);
    top: -120px;
    left: -80px;
    pointer-events: none;
}

.home-hero-card::after,
.modern-content-card::after,
.modern-product-detail-card::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(22, 199, 154, 0.16), transparent 70%);
    bottom: -120px;
    right: -80px;
    pointer-events: none;
}

.home-hero-card {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(280px, 1fr);
    gap: 26px;
    padding: 48px;
}

.home-hero-copy,
.home-hero-stats,
.modern-content-card,
.modern-product-detail-card,
.modern-contact-card {
    position: relative;
    z-index: 2;
}

.home-hero-badge,
.modern-contact-badge,
.modern-news-tag {
    display: inline-flex;
    align-items: center;
    padding: .85rem 1.5rem;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(15,94,247,.12), rgba(22,199,154,.16));
    color: var(--brand-primary);
    font-size: 1.23rem;
    font-weight: 800;
    margin-bottom: 18px;
}

.home-hero-copy h2 {
    margin: 0 0 18px;
    font-size: 4.3rem;
    font-weight: 900;
    line-height: 1.35;
    color: var(--brand-dark);
}

.home-hero-copy p,
.section-subtitle,
.footer-support-copy,
.modern-contact-header p,
.modern-news-card p,
.modern-contact-copy,
.hero-stat-box span,
.modern-product-desc {
    color: var(--text-soft);
    font-size: 1.55rem;
    line-height: 2;
}

.home-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 24px;
}

.home-hero-stats {
    display: grid;
    gap: 18px;
}

.hero-stat-box,
.modern-service-card,
.modern-product-card,
.modern-product-list-card,
.modern-news-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(242,249,255,0.94));
    border: 1px solid rgba(15, 23, 42, 0.05);
    border-radius: 24px;
    box-shadow: 0 15px 36px rgba(8, 18, 38, 0.07);
}

.hero-stat-box {
    padding: 24px;
}

.hero-stat-box strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--brand-dark);
}

.home-module-shell > * + * {
    margin-top: 24px;
}

.modern-section-title {
    margin-bottom: 24px;
}

.modern-section-title .title {
    margin-bottom: 8px;
}

.modern-section-title .title span {
    color: var(--brand-dark) !important;
    font-size: 3rem;
    font-weight: 900;
}

.modern-category-grid .col-md-3,
.modern-category-grid .item {
    margin-bottom: 16px;
}

.modern-newsletter {
    margin: 48px auto;
    border-radius: 40px;
    padding: 40px 0;
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow-lg);
}

.modern-newsletter-card {
    padding: 30px;
    text-align: center;
    background: rgba(7, 18, 37, 0.3);
    border-color: rgba(255,255,255,.15);
}

.modern-newsletter .title {
    color: #fff;
    font-size: 3rem;
}

.modern-newsletter .content {
    color: rgba(255,255,255,.88);
    font-size: 1.6rem;
}

.modern-newsletter .input-group {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    direction: rtl;
}

.modern-newsletter input[type="email"] {
    min-width: 280px;
    height: 54px;
    border-radius: 16px !important;
    border: 0;
    padding: 0 18px;
    font-size: 1.45rem;
}

.modern-newsletter .btn-subscribe {
    border-radius: 16px !important;
    min-width: 180px;
    height: 54px;
}

.modern-service-section .row {
    row-gap: 22px;
}

.modern-service-card {
    height: 100%;
    padding: 26px;
    text-align: center;
}

.modern-service-icon {
    width: 76px;
    height: 76px;
    margin: 0 auto 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(15,94,247,.14), rgba(22,199,154,.18));
    color: var(--brand-primary) !important;
    font-size: 2.4rem;
}

.icon-box-title {
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--brand-dark);
}

.icon-box-content p {
    color: var(--text-soft);
    font-size: 1.45rem;
    line-height: 1.95;
}

#dvHeaderImage {
    margin: 0 auto;
    max-width: 1400px;
    background:
        linear-gradient(135deg, rgba(7, 18, 37, 0.82), rgba(15, 94, 247, 0.68), rgba(22, 199, 154, 0.42)),
        url("../../images/single.jpg") center/cover no-repeat;
    min-height: 360px;
    border-radius: 0 0 44px 44px;
    box-shadow: var(--shadow-lg);
}

.page-hero-copy {
    position: absolute;
    inset: auto 0 40px 0;
    z-index: 2;
    text-align: center;
    padding: 0 18px;
}

.page-hero-copy h1 {
    margin: 0 0 12px;
    color: #fff;
    font-size: 4rem;
    line-height: 1.35;
    font-weight: 900;
}

.page-hero-copy p {
    margin: 0 auto;
    max-width: 780px;
    color: rgba(255,255,255,.92);
    font-size: 1.7rem;
    line-height: 2;
}

.modern-inner-shell {
    position: relative;
    z-index: 4;
    max-width: 1280px;
    margin: -86px auto 0;
    padding: 0 16px 20px;
}

.modern-content-card {
    padding: 32px;
}

.breadcrumb-nav {
    margin-bottom: 16px;
}

.breadcrumb {
    background: rgba(255, 255, 255, 0.82);
    border-radius: 16px;
    padding: 14px 18px;
    box-shadow: 0 12px 28px rgba(8, 18, 38, 0.08);
}

.breadcrumb-item,
.breadcrumb-item a {
    font-size: 1.36rem;
}

.modern-filter-card {
    padding: 26px;
    position: sticky;
    top: 145px;
}

.sidebar-shop .widget + .widget {
    margin-top: 20px;
}

.widget-clean,
.widget-collapsible {
    margin-bottom: 20px;
}

.widget-title a,
.widget-title,
.widget label {
    color: var(--brand-dark);
    font-size: 1.5rem;
    font-weight: 800;
}

.form-control,
input[type="search"],
input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
    min-height: 50px;
    border-radius: 16px !important;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #f8fbff;
    font-size: 1.4rem;
    color: var(--text-main);
    box-shadow: none !important;
}

textarea {
    min-height: 140px;
    padding-top: 14px;
}

.filter-items {
    max-height: 330px;
    overflow: auto;
    padding-left: 6px;
}

.filter-item {
    padding: 8px 0;
}

.modern-filter-submit {
    width: 100%;
}

.modern-toolbox {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(255,255,255,.9);
    border-radius: 24px;
    padding: 18px 22px;
    box-shadow: 0 18px 36px rgba(8,18,38,.07);
    margin-bottom: 24px;
}

.toolbox-info,
.toolbox-sort label {
    font-size: 1.38rem;
    color: var(--text-soft);
}

.toolbox-layout .btn-layout {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #f0f6ff;
}

.toolbox-layout .btn-layout.active {
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
}

.toolbox-layout .btn-layout.active rect {
    fill: #fff;
}

.modern-products-wrap .row {
    row-gap: 22px;
}

.modern-product-card {
    height: 100%;
    padding: 16px;
    transition: transform .25s ease, box-shadow .25s ease;
}

.modern-product-card:hover,
.modern-news-card:hover,
.modern-product-list-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 26px 54px rgba(15, 94, 247, 0.16);
}

.modern-product-card .product-media,
.modern-product-list-card .product-media {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
    margin-bottom: 16px;
    border-radius: 22px;
    background:
        radial-gradient(circle at top left, rgba(15,94,247,.12), transparent 40%),
        linear-gradient(180deg, #f8fbff, #edf8ff);
    overflow: hidden;
}

.modern-product-card .product-image,
.modern-product-list-card .product-image {
    max-height: 150px;
    object-fit: contain;
}

.modern-product-pill {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: .6rem 1.15rem;
    background: linear-gradient(135deg, var(--brand-dark), var(--brand-primary));
    color: #fff;
    font-size: 1.12rem;
    border-radius: 999px;
}

.modern-product-code {
    display: inline-block;
    color: var(--brand-primary);
    font-size: 1.25rem;
    font-weight: 700;
}

.product-title,
.product-title a {
    color: var(--brand-dark);
    font-size: 1.72rem;
    font-weight: 800;
    line-height: 1.7;
}

.modern-product-desc {
    min-height: 58px;
}

.modern-product-list-card {
    padding: 18px;
    margin-bottom: 18px;
}

.modern-product-list-card .product-media {
    min-height: 210px;
}

.modern-back-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    padding: 1rem 1.6rem;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(15,94,247,.08), rgba(22,199,154,.12));
    color: var(--brand-primary);
    font-size: 1.34rem;
    font-weight: 700;
}

.modern-product-detail-card {
    padding: 28px;
}

.product-details .product-title {
    font-size: 3.4rem;
    margin-bottom: 14px;
}

.product-content p {
    color: var(--text-soft);
    font-size: 1.62rem;
    line-height: 2.15;
}

.gallery-container {
    background: linear-gradient(180deg, rgba(15,94,247,.05), rgba(22,199,154,.06));
    border-radius: 28px;
    padding: 24px;
}

.gallery-dots .owl-dot {
    display: block;
    margin-bottom: 10px;
    background: transparent;
}

.gallery-dots .owl-dot img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 10px 24px rgba(8, 18, 38, 0.12);
}

.pdp-gallery .owl-item img {
    width: 100%;
    max-height: 430px;
    object-fit: contain;
    border-radius: 22px;
    background: #fff;
}

.modern-store-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 8px;
}

.appstore-url img {
    width: 150px;
    border-radius: 18px;
    box-shadow: 0 15px 30px rgba(8, 18, 38, 0.12);
}

.product-details-footer {
    padding-top: 18px;
    margin-top: 18px;
    border-top: 1px dashed rgba(15, 23, 42, 0.12);
}

.social-icons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(15,94,247,.08), rgba(22,199,154,.12));
    color: var(--brand-primary);
}

.social-label {
    margin-left: 8px;
    font-size: 1.35rem;
    color: var(--text-soft);
}

.modern-news-grid {
    row-gap: 24px;
}

.modern-news-card {
    display: block;
    padding: 18px;
    height: 100%;
    overflow: hidden;
}

.modern-news-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 16px;
}

.modern-news-card h4 {
    margin-bottom: 12px;
    color: var(--brand-dark);
    font-size: 1.9rem;
    font-weight: 800;
    line-height: 1.8;
}

.modern-pagination-wrap {
    margin-top: 24px;
    text-align: center;
}

.pagination {
    justify-content: center;
    gap: 8px;
}

.pagination li,
.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #fff;
    color: var(--text-main);
    box-shadow: 0 8px 20px rgba(8,18,38,.06);
}

.modern-news-detail-card {
    padding: 32px;
}

.modern-news-detail-card h2 {
    font-size: 3rem;
    line-height: 1.65;
    font-weight: 900;
    color: var(--brand-dark);
}

.modern-news-date {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 12px 0 20px;
    justify-content: flex-start;
}

.modern-news-content {
    color: var(--text-main);
    line-height: 2.2;
    font-size: 1.65rem;
}

.modern-news-detail-card .photo {
    width: 100%;
    max-height: 460px;
    object-fit: cover;
    border-radius: 24px;
    margin: 18px 0 24px;
    box-shadow: 0 24px 54px rgba(8,18,38,.14);
}

.badge {
    border-radius: 999px;
    padding: .7rem 1.2rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.modern-contact-layout {
    row-gap: 26px;
}

.modern-contact-card {
    padding: 30px;
    height: 100%;
}

.modern-contact-header h2 {
    font-size: 3rem;
    line-height: 1.5;
    font-weight: 900;
    color: var(--brand-dark);
    margin-bottom: 10px;
}

.modern-contact-form .form-group,
.modern-contact-form .txtarea {
    margin-bottom: 16px;
}

.modern-contact-form label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-main);
    font-size: 1.35rem;
    font-weight: 700;
}

.modern-contact-form input,
.modern-contact-form textarea,
.modern-contact-form .form-control,
.modern-contact-form .trans {
    width: 100%;
    border-radius: 18px !important;
    border: 1px solid rgba(15,23,42,.08);
    background: linear-gradient(180deg, #fbfdff, #f2f8ff);
    padding: 14px 16px;
}

.modern-contact-info-card iframe {
    width: 100%;
    min-height: 320px;
    border: 0 !important;
    border-radius: 24px;
    box-shadow: 0 18px 40px rgba(8,18,38,.12);
}

.modern-contact-copy {
    margin-top: 18px;
}

.modern-site-footer {
    margin-top: 64px;
    background:
        radial-gradient(circle at top left, rgba(22,199,154,.18), transparent 24%),
        radial-gradient(circle at top right, rgba(15,94,247,.18), transparent 26%),
        linear-gradient(180deg, #071225 0%, #0d1b35 100%);
}

.footer-middle {
    padding: 54px 0 24px;
}

.footer-logo {
    margin-bottom: 16px;
}

.modern-site-footer .widget-title,
.modern-site-footer p,
.modern-site-footer a,
.modern-site-footer li {
    color: rgba(255,255,255,.9);
}

.modern-site-footer .widget-title {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 18px;
}

.widget-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget-list li {
    margin-bottom: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 18px 0 26px;
}

.footer-copyright {
    color: rgba(255,255,255,.72);
    text-align: center;
    font-size: 1.35rem;
}

.text-gray {
    color: #7b8798 !important;
}

#scroll-top {
    position: fixed;
    left: 22px;
    bottom: 22px;
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    color: #fff;
    box-shadow: 0 18px 30px rgba(15, 94, 247, 0.22);
    z-index: 40;
}

#scroll-top .icon-arrow-up:before {
    content: "↑";
    color: #fff;
}

.mobile-menu-overlay {
    background: rgba(7, 18, 37, 0.58);
    backdrop-filter: blur(8px);
}

.mobile-menu-container {
    direction: rtl;
}

.mobile-menu-wrapper {
    width: min(92vw, 380px);
    padding: 22px 18px 28px;
    background:
        radial-gradient(circle at top right, rgba(22,199,154,.12), transparent 28%),
        linear-gradient(180deg, rgba(255,255,255,.98), rgba(243,249,255,.98));
    border-left: 1px solid rgba(15, 94, 247, 0.08);
    box-shadow: -20px 0 60px rgba(8, 18, 38, 0.18);
}

.mobile-menu-close {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(15,94,247,.08), rgba(22,199,154,.14));
    color: var(--brand-primary);
    margin-bottom: 16px;
}

.mobile-search {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px;
    margin-bottom: 20px;
    border-radius: 22px;
    background: rgba(255,255,255,.82);
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 14px 28px rgba(8,18,38,.06);
}

.mobile-search .form-control {
    min-height: 48px;
    margin: 0;
}

.mobile-search .btn {
    min-width: 52px;
    height: 48px;
    padding: 0;
    border-radius: 14px;
}

.mobile-nav {
    padding: 8px 0 2px;
}

.mobile-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-menu li + li {
    margin-top: 10px;
}

.mobile-menu li a {
    /*display: flex;*/
    align-items: center;
    justify-content: space-between;
    min-height: 54px;
    padding: 0 18px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(15,94,247,.06), rgba(22,199,154,.08));
    color: var(--brand-dark);
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(8,18,38,.05);
}

.mobile-menu li a:hover {
    color: #fff;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    transform: translateX(-4px);
}

.mobile-menu li a:before {
    content: "←";
    font-size: 1.4rem;
    opacity: .6;
}

.mobile-menu-container .social-icons {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px dashed rgba(15, 23, 42, 0.12);
    justify-content: flex-start;
}

.mobile-menu-container .social-icon {
    width: auto;
    min-width: 54px;
    padding: 0 14px;
    font-size: 1.25rem;
    font-weight: 700;
}

@media (max-width: 1199px) {
    .home-hero-card {
        grid-template-columns: 1fr;
    }

    .modern-header-middle {
        flex-wrap: wrap;
        justify-content: center;
    }

    .modern-header-actions {
        flex-direction: row;
        min-width: 0;
    }

    .top-consult-cta {
        top: 10px;
        left: 12px;
        padding: 10px 14px;
    }
}

@media (max-width: 991px) {
    .modern-header-top .container,
    .modern-header-middle,
    .modern-toolbox {
        flex-direction: column;
        text-align: center;
    }

    .modern-main-menu,
    .main-nav .menu {
        flex-wrap: wrap;
    }

    .modern-header-actions {
        width: 100%;
        flex-direction: column;
    }

    .modern-header-top .header-right,
    .modern-header-top .header-left {
        width: 100%;
        text-align: center;
    }

    .modern-top-link {
        margin: 0 8px;
        display: inline-block;
    }

    .modern-filter-card {
        position: static;
    }

    .top-consult-cta {
        position: static;
        margin: 10px auto 0;
        width: calc(100% - 24px);
        justify-content: center;
        display: flex;
    }

    .modern-inner-shell {
        margin-top: -60px;
    }
}

@media (max-width: 767px) {
    .modern-header-copy h1,
    .home-hero-copy h2,
    .page-hero-copy h1,
    .modern-news-detail-card h2,
    .modern-contact-header h2 {
        font-size: 2.4rem;
    }

    .modern-header-copy p,
    .home-hero-copy p,
    .page-hero-copy p,
    .modern-contact-header p,
    .modern-news-content,
    .product-content p {
        font-size: 1.42rem;
    }

    .home-hero-card,
    .modern-content-card,
    .modern-product-detail-card,
    .modern-contact-card,
    .modern-news-detail-card,
    .modern-newsletter-card {
        padding: 20px;
        border-radius: 24px;
    }

    #dvHeaderImage {
        min-height: 250px;
        border-radius: 0 0 28px 28px;
    }

    .page-hero-copy {
        bottom: 22px;
    }

    .modern-inner-shell {
        margin-top: -36px;
    }

    .modern-news-card img {
        height: 180px;
    }

    .gallery-container {
        padding: 16px;
    }

    .modern-header-middle {
        min-height: auto;
        padding: 16px 0;
    }

    .modern-main-menu,
    .main-nav .menu {
        display: none;
    }

    .modern-toolbox {
        padding: 16px;
    }

    .toolbox-right,
    .toolbox-left {
        width: 100%;
        justify-content: center;
    }

    .modern-newsletter .input-group {
        flex-direction: column;
    }

    .modern-newsletter input[type="email"],
    .modern-newsletter .btn-subscribe {
        width: 100%;
    }

    .page-hero-copy,
    .modern-header-copy,
    .home-hero-copy,
    .modern-contact-header,
    .modern-news-card,
    .modern-content-card,
    .product-details {
        text-align: right;
    }
}
