﻿:root {
    --bg: #07111f;
    --bg-soft: #0d1a2b;
    --card: #101f32;
    --gold: #d6a84f;
    --gold-light: #f0cc78;
    --text: #f5f7fa;
    --muted: #94a3b8;
    --border: rgba(255,255,255,.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    direction: rtl;
    font-family: Tahoma, Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.8;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font-family: inherit;
}

/* HEADER */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(7,17,31,.92);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
}

.header-container {
    max-width: 1400px;
    margin: auto;
    min-height: 82px;
    padding: 0 30px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo {
    display: flex;
    flex-direction: column;
    min-width: 170px;
}

.logo-main {
    font-size: 21px;
    font-weight: 900;
    color: var(--gold-light);
}

.logo-sub {
    font-size: 9px;
    letter-spacing: 3px;
    color: var(--muted);
    direction: ltr;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.desktop-nav a {
    color: #dce4ee;
    font-size: 16px;
    transition: .25s;
}

.desktop-nav a:hover {
    color: var(--gold-light);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.login-btn,
.register-btn {
    padding: 9px 18px;
    border-radius: 10px;
    font-size: 13px;
}

.login-btn {
    border: 1px solid var(--border);
}

.register-btn {
    background: var(--gold);
    color: #08111d;
    font-weight: 800;
}

.mobile-menu-btn {
    display: none;
    border: 0;
    background: transparent;
    color: white;
    font-size: 25px;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    padding: 15px 25px 25px;
}

.mobile-menu a {
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}

/* FOOTER */

.site-footer {
    margin-top: 80px;
    background: #050c16;
    border-top: 1px solid var(--border);
}

.footer-container {
    max-width: 1400px;
    margin: auto;
    padding: 60px 30px;

    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
}

.footer-brand h3,
.footer-links h4,
.footer-contact h4 {
    margin-bottom: 15px;
    color: var(--gold-light);
}

.footer-brand p,
.footer-contact p {
    color: var(--muted);
    max-width: 350px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a,
.footer-contact a {
    color: var(--muted);
    transition: .25s;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--gold-light);
}

.footer-bottom {
    max-width: 1400px;
    margin: auto;
    padding: 20px 30px;

    display: flex;
    justify-content: space-between;

    border-top: 1px solid var(--border);
    color: #64748b;
    font-size: 12px;
}

/* RESPONSIVE */

@media (max-width: 1050px) {

    .desktop-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .mobile-menu[x-show="true"] {
        display: block;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {

    .header-container {
        min-height: 70px;
        padding: 0 18px;
    }

    .login-btn {
        display: none;
    }

    .register-btn {
        padding: 7px 13px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        padding: 40px 20px;
        gap: 30px;
    }

    .footer-bottom {
        padding: 18px 20px;
        flex-direction: column;
        gap: 5px;
    }
}
/* HERO */

.hero {
    transform: translateY(-5px);
    max-width: 1400px;
    margin: auto;
    min-height: 535px;
    padding: 90px 50px;

    display: grid;
    grid-template-columns: 1.3fr .7fr;
    align-items: center;
    gap: 70px;

    background:
        radial-gradient(circle at 20% 20%, rgba(214,168,79,.14), transparent 35%),
        radial-gradient(circle at 80% 80%, rgba(37,99,235,.12), transparent 35%);
}

.hero-content {
    max-width: 760px;
}

.hero-badge {
    display: inline-block;
    margin-bottom: 20px;
    padding: 7px 15px;

    border: 1px solid rgba(214,168,79,.35);
    border-radius: 30px;

    color: var(--gold-light);
    font-size: 13px;
}

.hero h1 {
    font-size: clamp(38px, 5vw, 68px);
    line-height: 1.35;
    margin-bottom: 25px;
    font-weight: 900;
}

.hero h1 span {
    color: var(--gold-light);
}

.hero p {
    color: var(--muted);
    font-size: 17px;
    max-width: 680px;
    margin-bottom: 35px;
}

.hero-actions {
    display: flex;
    gap: 15px;
}

.hero-btn {
    padding: 13px 28px;
    border-radius: 12px;
    font-weight: 700;
    transition: .25s;
}

.hero-btn.primary {
    background: var(--gold);
    color: #07111f;
}

.hero-btn.primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

.hero-btn.secondary {
    border: 1px solid var(--border);
    color: white;
}

.hero-btn.secondary:hover {
    border-color: var(--gold);
    color: var(--gold-light);
}


/* MARKET CARD */

.hero-card {
    padding: 25px;
    border: 1px solid var(--border);
    border-radius: 24px;

    background: linear-gradient(
        145deg,
        rgba(255,255,255,.07),
        rgba(255,255,255,.025)
    );

    box-shadow: 0 25px 70px rgba(0,0,0,.35);
}

.market-card-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;

    font-size: 12px;
    color: var(--muted);
}

.live {
    color: #4ade80;
}

.market-item {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;

    padding: 18px 0;
    border-bottom: 1px solid var(--border);
    gap: 15px;
}

.market-item:last-child {
    border-bottom: 0;
}

.market-item span {
    color: #dce4ee;
}

.market-item strong {
    direction: ltr;
    color: white;
}

.market-item small {
    direction: ltr;
    color: #4ade80;
}


/* FEATURES */

.features-section {
    max-width: 1400px;
    margin: auto;
    padding: 100px 50px;
}

.section-heading {
    max-width: 700px;
    margin-bottom: 50px;
}

.section-heading > span {
    color: var(--gold);
    font-size: 12px;
    letter-spacing: 3px;
    direction: ltr;
}

.section-heading h2 {
    font-size: 38px;
    line-height: 1.5;
    margin: 10px 0;
}

.section-heading p {
    color: var(--muted);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-card {
    padding: 30px;

    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;

    transition: .3s;
}

.feature-card:hover {
    transform: translateY(-7px);
    border-color: rgba(214,168,79,.4);
}

.feature-icon {
    font-size: 32px;
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--muted);
    font-size: 14px;
}


/* RESPONSIVE */

@media (max-width: 1000px) {

    .hero {
    transform: translateY(-5px);
        grid-template-columns: 1fr;
        padding: 70px 30px;
    }

    .hero-card {
        max-width: 600px;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {

    .hero {
    transform: translateY(-5px);
        padding: 55px 20px;
        gap: 40px;
    }

    .hero h1 {
        font-size: 38px;
    }

    .hero p {
        font-size: 15px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-btn {
        text-align: center;
    }

    .features-section {
        padding: 70px 20px;
    }

    .section-heading h2 {
        font-size: 28px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* COURSES */

.courses-section {
    max-width: 1400px;
    margin: auto;
    padding: 90px 50px;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.course-card {
    overflow: hidden;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    transition: .3s;
}

.course-card:hover {
    transform: translateY(-8px);
    border-color: rgba(214,168,79,.45);
    box-shadow: 0 20px 50px rgba(0,0,0,.25);
}

.course-image {
    height: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.course-image::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 50%;
}

.course-image span {
    position: relative;
    font-size: 25px;
    font-weight: 900;
    letter-spacing: 2px;
}

.course-gold {
    background:
        radial-gradient(circle at 70% 30%, rgba(255,211,103,.35), transparent 35%),
        linear-gradient(135deg, #36270b, #a97819);
}

.course-blue {
    background:
        radial-gradient(circle at 70% 30%, rgba(96,165,250,.3), transparent 35%),
        linear-gradient(135deg, #0c2340, #174d80);
}

.course-purple {
    background:
        radial-gradient(circle at 70% 30%, rgba(192,132,252,.3), transparent 35%),
        linear-gradient(135deg, #211437, #5b3280);
}

.course-green {
    background:
        radial-gradient(circle at 70% 30%, rgba(74,222,128,.25), transparent 35%),
        linear-gradient(135deg, #0b3024, #176447);
}

.course-body {
    padding: 25px;
}

.course-level {
    color: var(--gold-light);
    font-size: 11px;
}

.course-body h3 {
    margin: 8px 0 12px;
    font-size: 19px;
}

.course-body p {
    min-height: 80px;
    color: var(--muted);
    font-size: 13px;
}

.course-meta {
    display: flex;
    justify-content: space-between;
    margin: 18px 0;
    color: #aebaca;
    font-size: 11px;
}

.course-btn {
    display: block;
    text-align: center;
    padding: 10px;

    border-radius: 10px;
    border: 1px solid rgba(214,168,79,.35);

    color: var(--gold-light);
    font-size: 13px;
    font-weight: 700;

    transition: .25s;
}

.course-btn:hover {
    background: var(--gold);
    color: #07111f;
}


/* COURSES RESPONSIVE */

@media (max-width: 1100px) {
    .courses-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .courses-section {
        padding: 70px 20px;
    }

    .courses-grid {
        grid-template-columns: 1fr;
    }
}
@font-face {
    font-family: "Vazir";
    src: url("../fonts/Vazir.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Vazir";
    src: url("../fonts/Vazir-Medium.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Vazir";
    src: url("../fonts/Vazir-Bold.woff2") format("woff2");
    font-weight: 700 900;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: "Vazir", Tahoma, sans-serif;
}

/* PROFESSIONAL HEADER */

.nav-dropdown {
    position: relative;
}

.nav-dropdown button {
    border: 0;
    background: transparent;
    color: #dce4ee;
    font-family: inherit;
    font-size: 14px;
    cursor: pointer;

    display: flex;
    align-items: center;
    gap: 5px;

    transition: .25s;
}

.nav-dropdown button:hover {
    color: var(--gold-light);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 18px);
    right: 0;

    width: 230px;
    padding: 10px;

    background: #0c1929;
    border: 1px solid rgba(214,168,79,.2);
    border-radius: 14px;

    box-shadow: 0 20px 50px rgba(0,0,0,.4);
}

.dropdown-menu a {
    display: block;
    padding: 11px 13px;

    border-radius: 9px;
    color: #cbd5e1;
    font-size: 13px;

    transition: .2s;
}

.dropdown-menu a:hover {
    background: rgba(214,168,79,.1);
    color: var(--gold-light);
}

.search-btn {
    width: 38px;
    height: 38px;

    border: 1px solid var(--border);
    border-radius: 10px;

    background: transparent;
    color: white;

    font-size: 22px;
    cursor: pointer;

    transition: .25s;
}

.search-btn:hover {
    color: var(--gold-light);
    border-color: var(--gold);
}

.mobile-actions {
    display: flex;
    gap: 10px;
    padding-top: 15px;
}

.mobile-actions .login-btn,
.mobile-actions .register-btn {
    text-align: center;
    flex: 1;
}


/* HEADER RESPONSIVE */

@media (max-width: 1100px) {

    .desktop-nav {
        gap: 14px;
    }

    .desktop-nav > a,
    .nav-dropdown button {
        font-size: 12px;
    }
}

@media (max-width: 900px) {

    .desktop-nav {
        display: none;
    }

    .search-btn {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .mobile-menu {
        background: #07111f;
        border-top: 1px solid var(--border);
    }

    .mobile-menu a {
        display: block;
        padding: 12px 5px;
        color: #dce4ee;
        border-bottom: 1px solid var(--border);
    }
}

@media (min-width: 901px) {

    .mobile-menu {
        display: none !important;
    }
}

/* GLOBAL FONT */

html,
body,
button,
input,
textarea,
select,
a,
nav,
header,
footer {
    font-family: "Vazir", Tahoma, sans-serif;
}

/* NAVIGATION */

.desktop-nav a,
.nav-dropdown button {
    font-family: "Vazir", Tahoma, sans-serif;
    font-weight: 500;
}

.nav-dropdown button {
    line-height: 1.8;
}

.dropdown-menu,
.dropdown-menu a {
    font-family: "Vazir", Tahoma, sans-serif;
    font-weight: 400;
}

.dropdown-menu a {
    line-height: 1.8;
}

/* HEADER BUTTONS */

.login-btn,
.register-btn,
.search-btn,
.mobile-menu-btn {
    font-family: "Vazir", Tahoma, sans-serif;
}

/* MOBILE MENU */

.mobile-menu,
.mobile-menu a {
    font-family: "Vazir", Tahoma, sans-serif;
}

.mobile-menu a {
    font-weight: 500;
}

/* FOOTER */

.site-footer,
.site-footer h3,
.site-footer h4,
.site-footer p,
.site-footer a,
.footer-bottom {
    font-family: "Vazir", Tahoma, sans-serif;
}

.site-footer h3,
.site-footer h4 {
    font-weight: 700;
}

.site-footer p,
.site-footer a {
    font-weight: 400;
}

.footer-bottom {
    font-size: 12px;
}

/* BETTER PERSIAN TYPOGRAPHY */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Vazir", Tahoma, sans-serif;
}


/* SERVICES */

.services-section {
    max-width: 1400px;
    margin: auto;
    padding: 90px 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-card {
    position: relative;
    min-height: 280px;
    padding: 30px;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.055),
            rgba(255,255,255,.015)
        );

    border: 1px solid var(--border);
    border-radius: 22px;

    transition: .3s;
}

.service-card::after {
    content: "";
    position: absolute;

    width: 120px;
    height: 120px;

    left: -50px;
    bottom: -50px;

    border-radius: 50%;

    background: rgba(214,168,79,.08);
}

.service-card:hover {
    transform: translateY(-7px);
    border-color: rgba(214,168,79,.4);
    box-shadow: 0 20px 50px rgba(0,0,0,.25);
}

.service-number {
    position: absolute;
    top: 20px;
    left: 25px;

    color: rgba(255,255,255,.12);
    font-size: 32px;
    font-weight: 900;

    direction: ltr;
}

.service-icon {
    font-size: 32px;
    margin-bottom: 25px;
}

.service-card h3 {
    margin-bottom: 12px;
    font-size: 19px;
}

.service-card p {
    color: var(--muted);
    font-size: 13px;
    line-height: 2;
    margin-bottom: 20px;
}

.service-card a {
    color: var(--gold-light);
    font-size: 12px;
    font-weight: 700;
}

.service-card a:hover {
    color: white;
}


/* SERVICES RESPONSIVE */

@media (max-width: 1100px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {

    .services-section {
        padding: 70px 20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* ANALYSIS */

.analysis-section {
    max-width: 1400px;
    margin: auto;
    padding: 90px 50px;
}

.analysis-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.analysis-card {
    padding: 28px;

    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;

    transition: .3s;
}

.analysis-card:hover {
    transform: translateY(-6px);
    border-color: rgba(214,168,79,.4);
}

.analysis-top {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-bottom: 22px;
}

.analysis-category {
    padding: 5px 10px;
    border-radius: 20px;

    background: rgba(214,168,79,.1);
    color: var(--gold-light);

    font-size: 11px;
}

.analysis-date {
    color: #64748b;
    font-size: 11px;
}

.analysis-card h3 {
    font-size: 19px;
    margin-bottom: 12px;
}

.analysis-card p {
    color: var(--muted);
    font-size: 13px;
    line-height: 2;
    min-height: 80px;
}

.analysis-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-top: 25px;
    padding-top: 18px;

    border-top: 1px solid var(--border);
}

.analysis-footer span {
    direction: ltr;
    color: #cbd5e1;
    font-size: 12px;
}

.analysis-footer a {
    color: var(--gold-light);
    font-size: 11px;
}

.analysis-more {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}


/* RESPONSIVE */

@media (max-width: 1100px) {
    .analysis-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {

    .analysis-section {
        padding: 70px 20px;
    }

    .analysis-grid {
        grid-template-columns: 1fr;
    }
}

/* STATS */

.stats-section {
    max-width: 1400px;
    margin: 20px auto 0;
    padding: 35px 50px;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    border: 1px solid var(--border);
    border-radius: 22px;

    background: rgba(255,255,255,.025);
    overflow: hidden;
}

.stat-item {
    padding: 35px 20px;
    text-align: center;

    border-left: 1px solid var(--border);
}

.stat-item:last-child {
    border-left: 0;
}

.stat-item strong {
    display: block;

    color: var(--gold-light);
    font-size: 36px;
    font-weight: 900;

    direction: ltr;
}

.stat-item span {
    display: block;
    margin-top: 5px;

    color: var(--muted);
    font-size: 13px;
}


/* RESPONSIVE */

@media (max-width: 700px) {

    .stats-section {
        padding: 20px;
    }

    .stats-container {
        grid-template-columns: 1fr 1fr;
    }

    .stat-item {
        border-bottom: 1px solid var(--border);
    }

    .stat-item:nth-child(2) {
        border-left: 0;
    }

    .stat-item:nth-child(3),
    .stat-item:nth-child(4) {
        border-bottom: 0;
    }

    .stat-item strong {
        font-size: 28px;
    }
}

/* ABOUT */

.about-section {
    max-width: 1400px;
    margin: auto;
    padding: 110px 50px;

    display: grid;
    grid-template-columns: .8fr 1.2fr;
    align-items: center;
    gap: 80px;
}

.about-image {
    display: flex;
    justify-content: center;
}

.about-image-box {
    width: 360px;
    height: 430px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(214,168,79,.3);
    border-radius: 30px;

    background:
        radial-gradient(
            circle at center,
            rgba(214,168,79,.18),
            transparent 55%
        ),
        linear-gradient(
            145deg,
            #101f32,
            #07111f
        );

    box-shadow: 0 30px 80px rgba(0,0,0,.35);
}

.about-image-box span {
    color: var(--gold-light);
    font-size: 80px;
    font-weight: 900;
    direction: ltr;
}

.about-label {
    color: var(--gold);
    font-size: 12px;
    letter-spacing: 3px;
    direction: ltr;
}

.about-content h2 {
    margin: 12px 0 25px;

    font-size: 42px;
    line-height: 1.5;
}

.about-content h2 span {
    color: var(--gold-light);
}

.about-content p {
    color: var(--muted);
    font-size: 14px;
    line-height: 2.2;
    margin-bottom: 15px;
}

.about-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;

    margin: 30px 0;
}

.about-points div {
    color: #dce4ee;
    font-size: 13px;
}

.about-points strong {
    color: var(--gold-light);
    margin-left: 7px;
}


/* ABOUT RESPONSIVE */

@media (max-width: 900px) {

    .about-section {
        grid-template-columns: 1fr;
        padding: 80px 30px;
        gap: 50px;
    }

    .about-image {
        order: 2;
    }

    .about-content {
        order: 1;
    }
}

@media (max-width: 600px) {

    .about-section {
        padding: 70px 20px;
    }

    .about-image-box {
        width: 100%;
        height: 330px;
    }

    .about-content h2 {
        font-size: 30px;
    }

    .about-points {
        grid-template-columns: 1fr;
    }
}

/* ARTICLES */

.articles-section {
    max-width: 1400px;
    margin: auto;
    padding: 90px 50px;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.article-card {
    overflow: hidden;

    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 22px;

    transition: .3s;
}

.article-card:hover {
    transform: translateY(-7px);
    border-color: rgba(214,168,79,.4);
}

.article-cover {
    height: 190px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        radial-gradient(
            circle at 70% 30%,
            rgba(214,168,79,.22),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #132238,
            #07111f
        );
}

.article-cover span {
    font-size: 25px;
    font-weight: 900;
    letter-spacing: 3px;

    color: rgba(255,255,255,.85);

    direction: ltr;
}

.article-body {
    padding: 25px;
}

.article-category {
    color: var(--gold-light);
    font-size: 11px;
}

.article-body h3 {
    font-size: 18px;
    line-height: 1.7;
    margin: 10px 0;
}

.article-body p {
    color: var(--muted);
    font-size: 13px;
    line-height: 2;
    min-height: 55px;
}

.article-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-top: 22px;
    padding-top: 18px;

    border-top: 1px solid var(--border);

    color: #64748b;
    font-size: 11px;
}

.article-meta a {
    color: var(--gold-light);
}


/* ARTICLES RESPONSIVE */

@media (max-width: 900px) {
    .articles-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {

    .articles-section {
        padding: 70px 20px;
    }

    .articles-grid {
        grid-template-columns: 1fr;
    }
}

/* ARTICLES CAROUSEL */

.articles-slider {
    position: relative;
}

.articles-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 60px) / 4);

    grid-template-columns: none;

    gap: 20px;

    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;

    padding: 5px 2px 20px;
}

.articles-grid::-webkit-scrollbar {
    display: none;
}

/* COURSES */

.courses-section {
    max-width: 1400px;
    margin: auto;
    padding: 100px 50px;
}

.courses-section .section-heading {
    margin-bottom: 45px;
}

.courses-slider {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.course-card {
    overflow: hidden;
    background: #0f2034;
    border: 1px solid var(--border);
    border-radius: 22px;
    transition: .3s;
}

.course-card:hover {
    transform: translateY(-8px);
    border-color: rgba(214,168,79,.5);
    box-shadow: 0 25px 60px rgba(0,0,0,.3);
}

.course-cover {
    height: 150px;
    padding: 22px;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    background:
        radial-gradient(
            circle at 70% 30%,
            rgba(214,168,79,.25),
            transparent 40%
        ),
        linear-gradient(
            135deg,
            #182d47,
            #07111f
        );
}

.course-cover span {
    color: #fff;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 2px;
    direction: ltr;
}

.course-cover b {
    color: var(--gold-light);
    font-size: 14px;
}

.course-body {
    padding: 25px;
}

.course-level {
    color: var(--gold-light);
    font-size: 11px;
}

.course-body h3 {
    margin: 12px 0;
    font-size: 18px;
    line-height: 1.8;
}

.course-body p {
    min-height: 85px;

    color: var(--muted);
    font-size: 12px;
    line-height: 2;
}

.course-info {
    display: flex;
    gap: 15px;

    padding: 15px 0;
    margin-top: 15px;

    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);

    color: #aebdcd;
    font-size: 11px;
}

.course-bottom {
    display: flex;
    flex-direction: column;
    gap: 15px;

    padding-top: 18px;
}

.course-bottom strong {
    color: #fff;
    font-size: 15px;
}

.course-bottom a {
    display: block;

    padding: 11px;
    text-align: center;

    border-radius: 10px;

    background: var(--gold);
    color: #07111f;

    font-size: 12px;
    font-weight: 700;

    transition: .25s;
}

.course-bottom a:hover {
    background: var(--gold-light);
}

.courses-more {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}


/* RESPONSIVE */

@media (max-width: 1100px) {
    .courses-slider {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {

    .courses-section {
        padding: 70px 20px;
    }

    .courses-slider {
        grid-template-columns: 1fr;
    }
}


/* ECONOMIC CALENDAR */

.calendar-section {
    max-width: 1400px;
    margin: auto;
    padding: 100px 50px;
}

.calendar-box {
    background: #0f2034;
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
}

.calendar-header {
    padding: 25px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-bottom: 1px solid var(--border);
}

.calendar-header > div:first-child {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.calendar-header span {
    color: var(--gold-light);
    font-size: 11px;
}

.calendar-header strong {
    font-size: 18px;
}

.calendar-filters {
    display: flex;
    gap: 8px;
}

.calendar-filters button {
    padding: 8px 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: transparent;
    color: #aebdcd;
    font-family: inherit;
    cursor: pointer;
}

.calendar-filters button:hover,
.calendar-filters button.active {
    background: var(--gold);
    color: #07111f;
    border-color: var(--gold);
}

.calendar-event {
    display: grid;
    grid-template-columns: 100px 100px 1fr 260px;
    align-items: center;
    gap: 20px;

    padding: 23px 30px;
    border-bottom: 1px solid var(--border);

    transition: .2s;
}

.calendar-event:last-child {
    border-bottom: 0;
}

.calendar-event:hover {
    background: rgba(255,255,255,.025);
}

.event-time {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.event-time strong {
    color: white;
    font-size: 15px;
    direction: ltr;
}

.event-time span {
    color: #64748b;
    font-size: 10px;
}

.event-impact {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 11px;
}

.event-impact span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: block;
}

.event-impact.high span {
    background: #ef4444;
}

.event-impact.medium span {
    background: #f59e0b;
}

.event-impact.low span {
    background: #22c55e;
}

.event-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.event-info strong {
    font-size: 14px;
}

.event-info span {
    color: var(--muted);
    font-size: 11px;
}

.event-values {
    display: flex;
    flex-direction: column;
    gap: 5px;

    color: #94a3b8;
    font-size: 11px;
}


/* RESPONSIVE */

@media (max-width: 900px) {

    .calendar-section {
        padding: 70px 25px;
    }

    .calendar-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .calendar-event {
        grid-template-columns: 80px 80px 1fr;
    }

    .event-values {
        grid-column: 3;
    }
}

@media (max-width: 600px) {

    .calendar-section {
        padding: 60px 20px;
    }

    .calendar-filters {
        width: 100%;
        overflow-x: auto;
    }

    .calendar-filters button {
        white-space: nowrap;
    }

    .calendar-event {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .event-info {
        grid-column: 1 / -1;
    }

    .event-values {
        grid-column: 1 / -1;
    }
}

/* =========================================
   FOREX & GOLD MARKET
========================================= */

.forex-market-section {
    padding: 100px 0;
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 30px;
    margin-bottom: 45px;
}

.section-heading h2 {
    margin: 8px 0;
    font-size: 34px;
}

.section-heading p {
    color: var(--muted);
    margin: 0;
}

.section-label {
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.market-status {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 10px 16px;
    border: 1px solid var(--border);
    border-radius: 30px;
    color: #d9e2ed;
    font-size: 13px;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 12px #22c55e;
}

.forex-market-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.forex-card {
    background: linear-gradient(
        145deg,
        rgba(255,255,255,.045),
        rgba(255,255,255,.015)
    );
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 22px;
    transition: .3s ease;
}

.forex-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212,168,75,.45);
}

.gold-card {
    border-color: rgba(212,168,75,.35);
    background:
        radial-gradient(
            circle at top right,
            rgba(212,168,75,.12),
            transparent 45%
        ),
        var(--card);
}

.forex-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.symbol-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.symbol-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,.06);
    border: 1px solid var(--border);
    font-weight: 800;
    color: #fff;
}

.gold-icon {
    color: var(--gold);
    border-color: rgba(212,168,75,.4);
    background: rgba(212,168,75,.08);
}

.symbol-info h3 {
    margin: 0 0 4px;
    font-size: 15px;
}

.symbol-info span {
    color: var(--muted);
    font-size: 10px;
}

.market-badge {
    font-size: 10px;
    padding: 5px 9px;
    border-radius: 20px;
    white-space: nowrap;
}

.bullish {
    color: #4ade80;
    background: rgba(74,222,128,.1);
}

.bearish {
    color: #fb7185;
    background: rgba(251,113,133,.1);
}

.neutral {
    color: #facc15;
    background: rgba(250,204,21,.1);
}

.forex-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin: 25px 0 18px;
}

.forex-price strong {
    font-size: 25px;
    direction: ltr;
}

.positive {
    color: #4ade80;
    font-size: 12px;
}

.negative {
    color: #fb7185;
    font-size: 12px;
}

.neutral-change {
    color: #facc15;
    font-size: 12px;
}

.forex-chart {
    height: 58px;
    display: flex;
    align-items: flex-end;
    gap: 5px;
    margin-bottom: 22px;
}

.forex-chart span {
    flex: 1;
    border-radius: 5px 5px 2px 2px;
    background: linear-gradient(
        to top,
        rgba(74,222,128,.18),
        #4ade80
    );
}

.forex-chart span:nth-child(1) { height: 35%; }
.forex-chart span:nth-child(2) { height: 48%; }
.forex-chart span:nth-child(3) { height: 40%; }
.forex-chart span:nth-child(4) { height: 62%; }
.forex-chart span:nth-child(5) { height: 52%; }
.forex-chart span:nth-child(6) { height: 72%; }
.forex-chart span:nth-child(7) { height: 64%; }
.forex-chart span:nth-child(8) { height: 82%; }
.forex-chart span:nth-child(9) { height: 76%; }
.forex-chart span:nth-child(10) { height: 95%; }

.gold-chart span {
    background: linear-gradient(
        to top,
        rgba(212,168,75,.15),
        var(--gold)
    );
}

.bearish-chart span {
    background: linear-gradient(
        to top,
        rgba(251,113,133,.12),
        #fb7185
    );
}

.neutral-chart span {
    background: linear-gradient(
        to top,
        rgba(250,204,21,.1),
        #facc15
    );
}

.forex-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding-top: 17px;
    border-top: 1px solid var(--border);
}

.forex-meta div {
    text-align: center;
}

.forex-meta small {
    display: block;
    color: var(--muted);
    font-size: 9px;
    margin-bottom: 5px;
}

.forex-meta strong {
    font-size: 10px;
    direction: ltr;
}


/* GOLD ANALYSIS */

.gold-analysis-box {
    margin-top: 22px;
    padding: 30px;
    border-radius: 22px;
    border: 1px solid rgba(212,168,75,.25);
    background:
        radial-gradient(
            circle at 90% 50%,
            rgba(212,168,75,.10),
            transparent 35%
        ),
        var(--card);
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.gold-analysis-content {
    flex: 1;
}

.gold-analysis-content h3 {
    font-size: 24px;
    margin: 10px 0;
}

.gold-analysis-content p {
    color: var(--muted);
    line-height: 2;
    max-width: 750px;
}

.gold-levels {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.level {
    min-width: 125px;
    padding: 13px 16px;
    border-radius: 12px;
    border: 1px solid var(--border);
}

.level span {
    display: block;
    font-size: 10px;
    color: var(--muted);
    margin-bottom: 5px;
}

.level strong {
    direction: ltr;
    font-size: 16px;
}

.resistance strong {
    color: #fb7185;
}

.current strong {
    color: var(--gold);
}

.support strong {
    color: #4ade80;
}

.gold-analysis-side {
    width: 180px;
    border-right: 1px solid var(--border);
    padding-right: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.analysis-icon {
    width: 75px;
    height: 75px;
    border-radius: 22px;
    display: grid;
    place-items: center;
    color: var(--gold);
    font-weight: 800;
    border: 1px solid rgba(212,168,75,.35);
    background: rgba(212,168,75,.08);
    margin-bottom: 12px;
}

.gold-analysis-side span {
    color: var(--muted);
    font-size: 11px;
}

.gold-analysis-side strong {
    color: #4ade80;
    font-size: 24px;
    margin-top: 8px;
}


/* RESPONSIVE */

@media (max-width: 1100px) {

    .forex-market-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 700px) {

    .forex-market-section {
        padding: 70px 0;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .section-heading h2 {
        font-size: 27px;
    }

    .forex-market-grid {
        grid-template-columns: 1fr;
    }

    .gold-analysis-box {
        flex-direction: column;
    }

    .gold-analysis-side {
        width: 100%;
        border-right: 0;
        border-top: 1px solid var(--border);
        padding: 25px 0 0;
    }

    .gold-levels {
        display: grid;
        grid-template-columns: 1fr;
    }

}
/* =========================================
   FINAL HOMEPAGE ALIGNMENT & RESPONSIVE
========================================= */

/* همه سکشنهای اصلی */
main > section {
    width: 100%;
    box-sizing: border-box;
}

main > section > .container,
main > section .container {
    width: min(1200px, calc(100% - 40px));
    margin-left: auto;
    margin-right: auto;
}

/* عنوان تمام بخشها */
.section-heading {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-heading > div {
    text-align: center;
}

.section-heading h2,
.section-heading h3 {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-heading p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* برچسب بالای عنوان */
.section-label {
    display: block;
    text-align: center;
}

/* وضعیت بازار */
.section-heading .market-status {
    margin: 20px auto 0;
}


/* =========================================
   SERVICES
========================================= */

.services-grid,
.services-section .services-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    width: 100%;
    box-sizing: border-box;
    text-align: center;
}


/* =========================================
   MARKET
========================================= */

.market-grid,
.market-section .market-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    margin-left: auto;
    margin-right: auto;
}


/* =========================================
   COURSES
========================================= */

.courses-section {
    width: 100%;
    text-align: center;
}

.courses-section .section-heading {
    margin-bottom: 45px;
}

.courses-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    margin-left: auto;
    margin-right: auto;
}

.course-card {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
    text-align: center;
}

.course-card h3,
.course-card h4,
.course-card p {
    text-align: center;
}


/* =========================================
   ARTICLES
========================================= */

.articles-section {
    width: 100%;
}

.articles-section .section-heading {
    margin-bottom: 40px;
}

.articles-slider {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.articles-grid {
    width: 100%;
}

.article-card {
    text-align: center;
}


/* =========================================
   ABOUT
========================================= */

.about-section {
    text-align: center;
}

.about-section h2,
.about-section h3,
.about-section p {
    text-align: center;
}


/* =========================================
   FOREX & GOLD
========================================= */

.forex-market-section {
    width: 100%;
}

.forex-market-grid {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.forex-card {
    text-align: center;
}

.forex-card-top {
    text-align: right;
}

.gold-analysis-box {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}


/* =========================================
   ECONOMIC CALENDAR
========================================= */

.economic-calendar-section {
    width: 100%;
    text-align: center;
}

.economic-calendar-section .section-heading {
    margin-bottom: 40px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {

    main > section > .container,
    main > section .container {
        width: min(100% - 32px, 900px);
    }

    .services-grid,
    .market-grid,
    .courses-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .section-heading h2 {
        font-size: 30px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

    main > section > .container,
    main > section .container {
        width: calc(100% - 28px);
    }

    .section-heading {
        width: 100%;
        margin-bottom: 30px;
    }

    .section-heading h2 {
        font-size: 26px;
        line-height: 1.7;
    }

    .section-heading p {
        font-size: 13px;
        line-height: 2;
    }

    .services-grid,
    .market-grid,
    .courses-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .service-card,
    .course-card,
    .article-card {
        width: 100%;
    }

    .course-card {
        margin-left: auto;
        margin-right: auto;
    }

    .courses-section .section-heading {
        margin-bottom: 30px;
    }

    .articles-section .section-heading {
        margin-bottom: 25px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    main > section > .container,
    main > section .container {
        width: calc(100% - 22px);
    }

    .section-heading h2 {
        font-size: 23px;
    }

    .section-heading p {
        font-size: 12px;
    }

}
/* =========================================
   HERO LIVE MARKET - FIX
========================================= */

.hero-card {
    width: 100%;
    max-width: 395px;
    min-height: 355px;
    box-sizing: border-box;
    overflow: hidden;
}

.hero-card .market-card-header {
    width: 100%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}

.tgju-live-market {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    border-radius: 14px;
}

/* خود تگ TGJU */
.tgju-live-market tgju {
    display: block;
    width: 100%;
    max-width: 100%;
}

/* جلوگیری از کش آمدن ویجت */
.hero-card .tgju-live-market {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* موبایل */
@media (max-width: 900px) {

    .hero-card {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

}

@media (max-width: 600px) {

    .hero-card {
        width: 100%;
        min-height: auto;
        padding: 18px;
    }

    .hero-card .market-card-header {
        margin-bottom: 15px;
    }

    .tgju-live-market {
        width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
    }

}

.hero-image-card {
    width: 100%;
    max-width: 620px;
    height: 390px;
    padding: 0 !important;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(212,168,75,.28);
    background: #07111f;
    box-shadow: 0 25px 70px rgba(0,0,0,.45);
    position: relative;
}

.hero-image-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform .6s ease;
}

.hero-image-card:hover img {
    transform: scale(1.035);
}

@media (max-width: 900px) {
    .hero-image-card {
        max-width: 100%;
        height: 330px;
    }
}

@media (max-width: 600px) {
    .hero-image-card {
        height: 260px;
        border-radius: 20px;
    }
}

.hero {
    transform: translateY(-5px);
    position: relative;
    width: 100vw;
    min-height: 535px;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 90px 7%;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-image-card {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    max-width: none !important;
    height: 100% !important;
    min-height: 100% !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    z-index: 0;
}

.hero-image-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(5,12,24,.92) 0%, rgba(5,12,24,.68) 38%, rgba(5,12,24,.25) 72%, rgba(5,12,24,.5) 100%),
        linear-gradient(0deg, rgba(5,12,24,.55), transparent 45%);
}

.hero-image-card img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    transform: none !important;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content h1,
.hero-content p,
.hero-content .hero-badge,
.hero-content .hero-buttons {
    position: relative;
    z-index: 3;
}

@media (max-width: 900px) {
    .hero {
    transform: translateY(-5px);
        min-height: 650px;
        padding: 70px 5%;
    }
}

@media (max-width: 600px) {
    .hero {
    transform: translateY(-5px);
        min-height: 700px;
        padding: 60px 20px;
    }

    .hero-image-card img {
        object-position: center;
    }
}

body {
    margin: 0 !important;
    overflow-x: hidden;
}

.hero {
    transform: translateY(-5px);
    width: 100vw !important;
    max-width: none !important;
    margin: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 0 7% !important;
    min-height: 620px !important;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-image-card {
    inset: 0 !important;
    width: 100vw !important;
    height: 100% !important;
    margin: 0 !important;
}

.hero-content {
    width: 100%;
    max-width: 680px;
    margin-right: auto;
    margin-left: 0;
    padding-top: 20px;
    animation: heroContentIn 1s ease-out both;
}

.hero-content h1 {
    font-size: clamp(42px, 5vw, 76px) !important;
    line-height: 1.25 !important;
    margin-bottom: 22px !important;
}

.hero-content p {
    max-width: 620px;
    font-size: 18px;
    line-height: 2;
}

.hero-buttons {
    margin-top: 28px;
}

@keyframes heroContentIn {
    from {
        opacity: 0;
        transform: translateY(35px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-image-card img {
    animation: heroImage 12s ease-in-out infinite alternate;
}

@keyframes heroImage {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.06);
    }
}

@media (max-width: 900px) {
    .hero {
    transform: translateY(-5px);
        padding: 60px 5% !important;
    }

    .hero-content {
        max-width: 90%;
    }
}

@media (max-width: 600px) {
    .hero {
    transform: translateY(-5px);
        min-height: 680px !important;
        padding: 50px 20px !important;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 40px !important;
    }

    .hero-content p {
        font-size: 16px;
    }
}

.hero-content {
    position: absolute !important;
    top: 42px;
    right: 7%;
    width: 420px;
    max-width: 38%;
    padding: 0 !important;
    text-align: right;
    z-index: 5;
    animation: heroContentIn 1s ease-out both;
}

.hero-content .hero-badge {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 13px;
    opacity: .9;
}

.hero-content h1 {
    font-size: clamp(34px, 3.6vw, 58px) !important;
    line-height: 1.35 !important;
    margin: 0 !important;
    text-shadow: 0 4px 25px rgba(0,0,0,.8);
}

.hero-content p,
.hero-content .hero-buttons {
    display: none !important;
}

.hero-image-card::after {
    background:
        linear-gradient(
            90deg,
            rgba(5,12,24,.15) 0%,
            rgba(5,12,24,.08) 55%,
            rgba(5,12,24,.65) 100%
        ),
        linear-gradient(
            0deg,
            rgba(5,12,24,.55),
            transparent 40%
        ) !important;
}

@keyframes heroContentIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 900px) {
    .hero-content {
        top: 35px;
        right: 5%;
        max-width: 55%;
    }
}

@media (max-width: 600px) {
    .hero-content {
        top: 30px;
        right: 20px;
        width: auto;
        max-width: 75%;
    }

    .hero-content h1 {
        font-size: 32px !important;
    }
}

body {
    margin: 0 !important;
    padding: 0 !important;
}

.hero {
    transform: translateY(-5px);
    width: 100vw !important;
    margin: 0 !important;
    padding: 0 !important;
    min-height: 620px !important;
    max-width: none !important;
    border-radius: 0 !important;
}

.hero-content {
    top: auto !important;
    bottom: 55px !important;
    right: 7% !important;
    width: 430px !important;
    max-width: 38% !important;
    text-align: center !important;
}

.hero-content h1 {
    margin-bottom: 22px !important;
}

.hero-content .hero-buttons {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 15px;
}

.hero-content .hero-buttons a {
    margin: 0 !important;
}

@media (max-width: 900px) {
    .hero-content {
        right: 5% !important;
        max-width: 55% !important;
    }
}

@media (max-width: 600px) {
    .hero {
    transform: translateY(-5px);
        min-height: 680px !important;
    }

    .hero-content {
        right: 20px !important;
        bottom: 35px !important;
        max-width: calc(100% - 40px) !important;
        width: calc(100% - 40px) !important;
    }
}

.hero {
    transform: translateY(-5px);
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    padding: 0 !important;
    border-radius: 0 !important;
}

.hero-image-card,
.hero-image-card img {
    width: 100vw !important;
    max-width: 100vw !important;
    left: 0 !important;
    right: 0 !important;
}

.hero-content {
    top: auto !important;
    bottom: 55px !important;
    right: 50% !important;
    left: auto !important;
    width: 650px !important;
    max-width: 80vw !important;
    transform: translateX(50%) !important;
    text-align: center !important;
    margin: 0 !important;
}

.hero-content h1 {
    text-align: center !important;
    margin: 0 auto 24px !important;
}

.hero-content .hero-buttons {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    margin: 0 auto !important;
    gap: 16px !important;
}

@media (max-width: 600px) {
    .hero-content {
        right: 50% !important;
        width: calc(100% - 30px) !important;
        max-width: none !important;
        bottom: 30px !important;
        transform: translateX(50%) !important;
    }
}

.hero-content h1 {
    text-shadow:
        0 3px 6px rgba(0,0,0,.95),
        0 8px 24px rgba(0,0,0,.8) !important;
}

.hero-content .hero-buttons {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 16px !important;
    width: 100% !important;
}

.hero-content .hero-buttons a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 145px;
}

.hero-content::before {
    content: "";
    position: absolute;
    inset: -25px -45px -35px;
    background: rgba(3,10,20,.18);
    filter: blur(18px);
    border-radius: 30px;
    z-index: -1;
}


.hero-image-card::after {
    background:
        linear-gradient(
            90deg,
            rgba(2,8,18,.52) 0%,
            rgba(2,8,18,.42) 45%,
            rgba(2,8,18,.58) 100%
        ),
        linear-gradient(
            0deg,
            rgba(2,8,18,.68) 0%,
            rgba(2,8,18,.18) 55%,
            rgba(2,8,18,.42) 100%
        ) !important;
}

.hero-content {
    left: 50% !important;
    right: auto !important;
    bottom: 42px !important;
    width: 680px !important;
    max-width: 82vw !important;
    transform: translateX(-50%) !important;
    text-align: center !important;
}

.hero-content h1 {
    text-align: center !important;
    text-shadow:
        0 3px 5px rgba(0,0,0,.98),
        0 7px 18px rgba(0,0,0,.95),
        0 0 35px rgba(0,0,0,.65) !important;
}

.hero-content .hero-buttons {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    margin: 24px auto 0 !important;
    gap: 16px !important;
}

.hero-content::before {
    inset: -35px -70px -45px !important;
    background: rgba(0,0,0,.22) !important;
    filter: blur(28px) !important;
}

.hero-image-card::after {
    background:
        linear-gradient(
            90deg,
            rgba(2,8,18,.10) 0%,
            rgba(2,8,18,.04) 50%,
            rgba(2,8,18,.12) 100%
        ),
        linear-gradient(
            0deg,
            rgba(2,8,18,.20) 0%,
            rgba(2,8,18,.02) 55%,
            rgba(2,8,18,.08) 100%
        ) !important;
}

.hero-content::before {
    inset: -28px -55px -35px !important;
    background: rgba(0,0,0,.16) !important;
    filter: blur(30px) !important;
}

.hero-content h1 {
    text-shadow:
        0 3px 6px rgba(0,0,0,.95),
        0 0 22px rgba(0,0,0,.65) !important;
}

.hero-content .hero-buttons {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    margin: 24px auto 0 !important;
}
.hero-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-end !important;
    text-align: center !important;
}

.hero-content h1 {
    margin: 18px 0 0 !important;
    width: 100% !important;
    text-align: center !important;
}

.hero-content .hero-buttons {
    position: static !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    transform: none !important;

    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;

    width: auto !important;
    margin: 24px auto 0 !important;
    gap: 16px !important;
}
.site-header,
header {
    min-height: 0 !important;
}

.site-header .header-inner,
header .header-inner {
    min-height: 72px !important;
    height: 72px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.site-header nav,
header nav {
    gap: 18px !important;
}

.site-header .logo,
header .logo {
    transform: scale(.92);
}

.site-header .header-actions,
header .header-actions {
    gap: 8px !important;
}

.site-header .header-actions a,
.site-header .header-actions button,
header .header-actions a,
header .header-actions button {
    min-height: 42px !important;
    height: 42px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

@media (max-width: 900px) {
    .site-header .header-inner,
    header .header-inner {
        height: 64px !important;
        min-height: 64px !important;
    }
}
.site-header,
header {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    height: 82px !important;
    min-height: 82px !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    z-index: 100 !important;
}

.site-header .header-inner,
header .header-inner {
    width: 100% !important;
    max-width: 1400px !important;
    height: 82px !important;
    min-height: 82px !important;
    margin: 0 auto !important;
    padding: 0 42px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    background: transparent !important;
}

.site-header nav,
header nav {
    display: flex !important;
    align-items: center !important;
    gap: 22px !important;
}

.site-header nav a,
header nav a {
    color: #f4f4f4 !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    background: transparent !important;
    border: 0 !important;
    padding: 8px 4px !important;
    transition: color .25s ease, transform .25s ease !important;
}

.site-header nav a:hover,
header nav a:hover {
    color: #e2b24c !important;
    transform: translateY(-1px);
}

.site-header .logo,
header .logo {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}

.site-header .header-actions,
header .header-actions {
    display: flex !important;
    align-items: center !important;
    gap: 9px !important;
}

.site-header .header-actions a,
.site-header .header-actions button,
header .header-actions a,
header .header-actions button {
    height: 42px !important;
    min-height: 42px !important;
    padding: 0 18px !important;
    border-radius: 10px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 16px !important;
}

.site-header .header-actions a[href*="login"],
header .header-actions a[href*="login"] {
    background: rgba(255,255,255,.035) !important;
    border: 1px solid rgba(255,255,255,.12) !important;
    color: #fff !important;
}

.site-header .header-actions a[href*="register"],
header .header-actions a[href*="register"] {
    background: #dcae48 !important;
    border: 1px solid #dcae48 !important;
    color: #07111f !important;
    font-weight: 700 !important;
}

.site-header .header-actions a:hover,
header .header-actions a:hover {
    transform: translateY(-2px) !important;
}

.hero {
    transform: translateY(-5px);
    padding-top: 0 !important;
}

@media (max-width: 900px) {
    .site-header,
    header,
    .site-header .header-inner,
    header .header-inner {
        height: 70px !important;
        min-height: 70px !important;
    }

    .site-header .header-inner,
    header .header-inner {
        padding: 0 20px !important;
    }
}
.site-header nav,
header nav {
    display: none !important;
}

/* دکمه منوی مرکزی */
.site-header .mobile-menu-toggle,
header .mobile-menu-toggle,
.site-header .menu-toggle,
header .menu-toggle {
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;

    width: 48px !important;
    height: 48px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    border-radius: 14px !important;
    background: rgba(255,255,255,.045) !important;
    border: 1px solid rgba(255,255,255,.14) !important;
    color: #e0b34f !important;

    cursor: pointer !important;
    z-index: 200 !important;

    transition:
        background .3s ease,
        border-color .3s ease,
        transform .3s ease,
        box-shadow .3s ease !important;
}

.site-header .mobile-menu-toggle:hover,
header .mobile-menu-toggle:hover,
.site-header .menu-toggle:hover,
header .menu-toggle:hover {
    background: rgba(224,179,79,.12) !important;
    border-color: rgba(224,179,79,.45) !important;
    box-shadow: 0 8px 30px rgba(0,0,0,.25) !important;
}

/* لوگو */
.site-header .logo,
header .logo {
    position: absolute !important;
    right: 42px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
}

/* دکمه های ورود و ثبت نام */
.site-header .header-actions,
header .header-actions {
    position: absolute !important;
    left: 42px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
}

/* منوی آبشاری */
.site-header .mobile-menu,
header .mobile-menu {
    position: absolute !important;
    top: 76px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;

    width: 280px !important;
    max-width: calc(100vw - 40px) !important;

    padding: 10px !important;

    background: rgba(5,12,24,.96) !important;
    border: 1px solid rgba(224,179,79,.18) !important;
    border-radius: 18px !important;

    box-shadow:
        0 25px 70px rgba(0,0,0,.45),
        inset 0 1px 0 rgba(255,255,255,.04) !important;

    backdrop-filter: blur(18px) !important;
    -webkit-backdrop-filter: blur(18px) !important;

    z-index: 150 !important;
}

/* آیتم های منو */
.site-header .mobile-menu a,
header .mobile-menu a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    width: 100% !important;
    min-height: 44px !important;

    padding: 10px 14px !important;
    margin: 2px 0 !important;

    border-radius: 11px !important;

    color: #f3f3f3 !important;
    background: transparent !important;

    font-size: 16px !important;
    text-decoration: none !important;

    transition:
        background .25s ease,
        color .25s ease,
        padding-right .25s ease !important;
}

.site-header .mobile-menu a:hover,
header .mobile-menu a:hover {
    background: rgba(224,179,79,.09) !important;
    color: #e0b34f !important;
    padding-right: 20px !important;
}

/* موبایل */
@media (max-width: 700px) {
    .site-header .logo,
    header .logo {
        right: 18px !important;
    }

    .site-header .header-actions,
    header .header-actions {
        left: 18px !important;
    }

    .site-header .mobile-menu,
    header .mobile-menu {
        width: 250px !important;
    }
}
.site-header,
header {
    background: transparent !important;
    box-shadow: none !important;
    border: 0 !important;
}

/* فقط دکمه منو در مرکز */
.site-header .menu-toggle,
.site-header .mobile-menu-toggle,
.site-header .mobile-menu-btn,
.site-header .header-menu-toggle,
header .menu-toggle,
header .mobile-menu-toggle,
header .mobile-menu-btn,
header .header-menu-toggle {
    position: absolute !important;
    left: 50% !important;
    right: auto !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;

    width: 46px !important;
    height: 46px !important;
    margin: 0 !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    background: transparent !important;
    border: 1px solid rgba(224,179,79,.35) !important;
    border-radius: 50% !important;
    color: #e0b34f !important;
}

/* منوی اصلی مخفی */
.site-header nav,
header nav {
    display: none !important;
}

/* پنل آبشاری */
.site-header .mobile-menu,
header .mobile-menu {
    position: absolute !important;
    top: 82px !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;

    width: 250px !important;
    max-width: calc(100vw - 40px) !important;

    padding: 8px 0 !important;
    margin: 0 !important;

    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;

    text-align: center !important;
}

/* آیتمها */
.site-header .mobile-menu a,
header .mobile-menu a {
    display: block !important;

    width: fit-content !important;
    min-width: 150px !important;

    margin: 3px auto !important;
    padding: 10px 18px !important;

    color: #fff !important;
    background: rgba(4,12,24,.72) !important;

    border: 1px solid rgba(255,255,255,.08) !important;
    border-radius: 10px !important;

    text-align: center !important;

    transition:
        transform .25s ease,
        color .25s ease,
        background .25s ease !important;
}

.site-header .mobile-menu a:hover,
header .mobile-menu a:hover {
    color: #e0b34f !important;
    background: rgba(224,179,79,.10) !important;
    transform: translateY(-2px) !important;
}

/* لوگو */
.site-header .logo,
header .logo {
    position: absolute !important;
    right: 42px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
}

/* ورود و عضویت */
.site-header .header-actions,
header .header-actions {
    position: absolute !important;
    left: 42px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
}

/* موبایل */
@media (max-width: 700px) {
    .site-header .logo,
    header .logo {
        right: 18px !important;
    }

    .site-header .header-actions,
    header .header-actions {
        left: 18px !important;
    }

    .site-header .mobile-menu,
    header .mobile-menu {
        top: 70px !important;
        width: 220px !important;
    }
}
.site-header,
header {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;

    width: 100% !important;
    height: 70px !important;
    min-height: 70px !important;

    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;

    z-index: 9999 !important;
}

/* کل محتوای قبلی هدر حذف */
.site-header .header-inner,
header .header-inner {
    position: relative !important;
    width: 100% !important;
    height: 70px !important;
    padding: 0 !important;
    margin: 0 !important;

    background: transparent !important;
}

.site-header .logo,
header .logo,
.site-header nav,
header nav,
.site-header .header-actions,
header .header-actions {
    display: none !important;
}

/* هر دکمه منوی قبلی */
.site-header .menu-toggle,
.site-header .mobile-menu-toggle,
.site-header .mobile-menu-btn,
.site-header .header-menu-toggle,
header .menu-toggle,
header .mobile-menu-toggle,
header .mobile-menu-btn,
header .header-menu-toggle {
    position: absolute !important;

    left: 50% !important;
    right: auto !important;
    top: 26px !important;

    transform: translateX(-50%) !important;

    width: 48px !important;
    height: 48px !important;

    margin: 0 !important;
    padding: 0 !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    background: rgba(5,12,24,.72) !important;

    border: 1px solid rgba(224,179,79,.45) !important;
    border-radius: 50% !important;

    color: #e0b34f !important;

    box-shadow:
        0 8px 30px rgba(0,0,0,.35),
        0 0 0 5px rgba(224,179,79,.035) !important;

    z-index: 10000 !important;

    cursor: pointer !important;

    animation: floatingMenu 3s ease-in-out infinite !important;
}

/* حرکت خیلی ظریف دکمه */
@keyframes floatingMenu {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-4px);
    }
}

/* هاور */
.site-header .menu-toggle:hover,
.site-header .mobile-menu-toggle:hover,
.site-header .mobile-menu-btn:hover,
.site-header .header-menu-toggle:hover,
header .menu-toggle:hover,
header .mobile-menu-toggle:hover,
header .mobile-menu-btn:hover,
header .header-menu-toggle:hover {
    background: rgba(224,179,79,.12) !important;
    border-color: #e0b34f !important;
    box-shadow:
        0 12px 35px rgba(0,0,0,.45),
        0 0 25px rgba(224,179,79,.15) !important;
}

/* منوی بازشونده */
.site-header .mobile-menu,
header .mobile-menu {
    position: absolute !important;

    top: 84px !important;
    left: 50% !important;
    right: auto !important;

    transform: translateX(-50%) !important;

    width: 220px !important;
    max-width: calc(100vw - 40px) !important;

    padding: 0 !important;
    margin: 0 !important;

    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;

    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;

    text-align: center !important;
}

/* آیتمهای منو */
.site-header .mobile-menu a,
header .mobile-menu a {
    display: block !important;

    width: fit-content !important;
    min-width: 145px !important;

    margin: 5px auto !important;
    padding: 10px 18px !important;

    background: rgba(3,10,20,.82) !important;

    border: 1px solid rgba(255,255,255,.08) !important;
    border-radius: 10px !important;

    color: #fff !important;

    text-align: center !important;

    transition:
        transform .25s ease,
        color .25s ease,
        background .25s ease !important;
}

.site-header .mobile-menu a:hover,
header .mobile-menu a:hover {
    color: #e0b34f !important;
    background: rgba(224,179,79,.10) !important;
    transform: translateY(-2px) !important;
}

/* حذف هر پسزمینه اضافه */
.site-header::before,
.site-header::after,
header::before,
header::after {
    display: none !important;
}

/* موبایل */
@media (max-width: 700px) {
    .site-header .menu-toggle,
    .site-header .mobile-menu-toggle,
    .site-header .mobile-menu-btn,
    .site-header .header-menu-toggle,
    header .menu-toggle,
    header .mobile-menu-toggle,
    header .mobile-menu-btn,
    header .header-menu-toggle {
        top: 18px !important;
        width: 44px !important;
        height: 44px !important;
    }

    .site-header .mobile-menu,
    header .mobile-menu {
        top: 72px !important;
    }
}
header,
.site-header {
    background: transparent !important;
    background-color: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
    border: 0 !important;
    outline: 0 !important;
}

header::before,
header::after,
.site-header::before,
.site-header::after {
    display: none !important;
    content: none !important;
    background: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
}

header .header-inner,
.site-header .header-inner {
    background: transparent !important;
    background-color: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
    border: 0 !important;
}

header .header-inner::before,
header .header-inner::after,
.site-header .header-inner::before,
.site-header .header-inner::after {
    display: none !important;
    content: none !important;
    background: none !important;
}
.hero-content {
    bottom: 34px !important;
    width: 720px !important;
    max-width: 82vw !important;
}

.hero-content h1 {
    font-size: clamp(30px, 3.2vw, 48px) !important;
    line-height: 1.35 !important;
    font-weight: 800 !important;
    letter-spacing: -1px !important;
    max-width: 720px !important;
    margin: 14px auto 0 !important;

    color: #ffffff !important;

    text-shadow:
        0 3px 8px rgba(0,0,0,.95),
        0 0 24px rgba(0,0,0,.55) !important;

    animation: heroTitleFloat 5s ease-in-out infinite !important;
}

@keyframes heroTitleFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

.hero-content .hero-buttons {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 12px !important;
    margin: 20px auto 0 !important;
}

.hero-content .hero-buttons a,
.hero-content .hero-buttons button {
    min-width: 145px !important;
    height: 48px !important;
    padding: 0 22px !important;

    border-radius: 12px !important;

    font-size: 16px !important;
    font-weight: 700 !important;

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        background .35s ease !important;
}

.hero-content .hero-buttons a:first-child,
.hero-content .hero-buttons button:first-child {
    background: #dfb04c !important;
    color: #07111f !important;
    border: 1px solid #dfb04c !important;

    animation: buttonBreath 3.8s ease-in-out infinite !important;
}

.hero-content .hero-buttons a:last-child,
.hero-content .hero-buttons button:last-child {
    background: rgba(5,12,24,.28) !important;
    color: #fff !important;
    border: 1px solid rgba(255,255,255,.28) !important;
}

.hero-content .hero-buttons a:hover,
.hero-content .hero-buttons button:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 12px 30px rgba(0,0,0,.32) !important;
}

@keyframes buttonBreath {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 5px 18px rgba(0,0,0,.18);
    }

    50% {
        transform: scale(1.035);
        box-shadow:
            0 8px 25px rgba(0,0,0,.28),
            0 0 18px rgba(223,176,76,.16);
    }
}

@media (max-width: 700px) {
    .hero-content {
        bottom: 28px !important;
        max-width: 90vw !important;
    }

    .hero-content h1 {
        font-size: 28px !important;
        line-height: 1.45 !important;
    }

    .hero-content .hero-buttons {
        gap: 9px !important;
    }

    .hero-content .hero-buttons a,
    .hero-content .hero-buttons button {
        min-width: 125px !important;
        height: 44px !important;
        padding: 0 15px !important;
        font-size: 12px !important;
    }
}

/* ===== HERO TEXT + BUTTONS — FINAL LAYOUT ===== */

.hero-content {
    position: absolute !important;
    left: 50% !important;
    right: auto !important;
    bottom: 28px !important;
    transform: translateX(-50%) !important;

    width: min(900px, 92vw) !important;
    max-width: 92vw !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-end !important;

    text-align: center !important;
    z-index: 10 !important;
}

/* عنوان */
.hero-content h1 {
    margin: 0 auto 14px !important;
    width: 100% !important;
    max-width: 850px !important;

    font-size: clamp(26px, 3vw, 43px) !important;
    line-height: 1.35 !important;
    font-weight: 800 !important;

    color: #ffffff !important;

    text-align: center !important;
    white-space: nowrap !important;

    text-shadow:
        0 3px 6px rgba(0,0,0,.95),
        0 8px 22px rgba(0,0,0,.75) !important;
}

/* دکمه ها */
.hero-content .hero-buttons {
    display: flex !important;
    flex-direction: row !important;

    align-items: center !important;
    justify-content: center !important;

    gap: 14px !important;

    width: auto !important;
    margin: 0 auto !important;

    direction: ltr !important;
}

/* هر دو دکمه */
.hero-content .hero-buttons a,
.hero-content .hero-buttons button {
    width: 185px !important;
    min-width: 185px !important;
    height: 54px !important;

    padding: 0 22px !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    border-radius: 10px !important;

    font-size: 14px !important;
    font-weight: 700 !important;

    text-decoration: none !important;

    box-sizing: border-box !important;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        background .25s ease,
        border-color .25s ease !important;
}

/* مشاهده دوره ها — سمت چپ */
.hero-content .hero-buttons a:last-child,
.hero-content .hero-buttons button:last-child {
    order: 1 !important;

    background: rgba(5,12,24,.72) !important;
    color: #ffffff !important;

    border: 1px solid rgba(232,189,98,.75) !important;

    box-shadow:
        0 8px 24px rgba(0,0,0,.35),
        inset 0 0 0 1px rgba(255,255,255,.04) !important;
}

/* شروع یادگیری — سمت راست */
.hero-content .hero-buttons a:first-child,
.hero-content .hero-buttons button:first-child {
    order: 2 !important;

    background: linear-gradient(
        135deg,
        #e9b94f 0%,
        #d9a63d 100%
    ) !important;

    color: #07111f !important;

    border: 1px solid #f2cc72 !important;

    box-shadow:
        0 8px 26px rgba(0,0,0,.32),
        0 0 18px rgba(220,174,72,.18) !important;
}

/* Hover */
.hero-content .hero-buttons a:hover,
.hero-content .hero-buttons button:hover {
    transform: translateY(-3px) !important;

    box-shadow:
        0 14px 32px rgba(0,0,0,.42),
        0 0 22px rgba(220,174,72,.20) !important;
}

/* جلوگیری از انیمیشن اضافه */
.hero-content .hero-buttons a,
.hero-content .hero-buttons button {
    animation: none !important;
}

/* موبایل */
@media (max-width: 700px) {

    .hero-content {
        bottom: 22px !important;
        width: 94vw !important;
        max-width: 94vw !important;
    }

    .hero-content h1 {
        font-size: 23px !important;
        line-height: 1.45 !important;
        white-space: normal !important;
        max-width: 94vw !important;
        margin-bottom: 13px !important;
    }

    .hero-content .hero-buttons {
        gap: 9px !important;
    }

    .hero-content .hero-buttons a,
    .hero-content .hero-buttons button {
        width: 145px !important;
        min-width: 145px !important;
        height: 46px !important;
        font-size: 12px !important;
        padding: 0 12px !important;
        border-radius: 9px !important;
    }
}


/* ===== HERO TITLE — CLEAR + SMOOTH ===== */

.hero-content h1 {
    position: relative !important;

    color: #ffffff !important;

    font-size: clamp(27px, 3vw, 43px) !important;
    font-weight: 850 !important;
    line-height: 1.4 !important;

    letter-spacing: -0.6px !important;

    /* خوانایی بیشتر */
    -webkit-text-stroke: 0.35px rgba(255,255,255,.55) !important;

    text-shadow:
        0 2px 2px rgba(0,0,0,.95),
        0 4px 10px rgba(0,0,0,.95),
        0 8px 24px rgba(0,0,0,.75) !important;

    /* حرکت بسیار نرم */
    animation: smoothHeroTitle 7s cubic-bezier(.45,0,.25,1) infinite !important;

    will-change: transform, opacity !important;
}

/* هاله بسیار ظریف فقط پشت نوشته */
.hero-content h1::after {
    content: "" !important;
    position: absolute !important;

    left: 50% !important;
    top: 50% !important;

    width: 85% !important;
    height: 75% !important;

    transform: translate(-50%, -50%) !important;

    background: rgba(0,0,0,.12) !important;

    filter: blur(24px) !important;

    border-radius: 50% !important;

    z-index: -1 !important;
}

/* حرکت نرم و لوکس */
@keyframes smoothHeroTitle {

    0% {
        transform: translate3d(0, 0, 0);
        opacity: .96;
    }

    50% {
        transform: translate3d(0, -3px, 0);
        opacity: 1;
    }

    100% {
        transform: translate3d(0, 0, 0);
        opacity: .96;
    }
}

/* دکمه ها ثابت و حرفه ای */
.hero-content .hero-buttons {
    transform: translate3d(0,0,0) !important;
}

/* جلوگیری از لرزش هنگام Hover */
.hero-content .hero-buttons a,
.hero-content .hero-buttons button {
    will-change: transform !important;
    backface-visibility: hidden !important;
}

/* موبایل */
@media (max-width:700px) {

    .hero-content h1 {
        font-size: 24px !important;
        line-height: 1.5 !important;
        -webkit-text-stroke: 0.25px rgba(255,255,255,.5) !important;
    }
}


/* ===== HERO CONTENT — CENTER / STATIC ===== */

.hero-content {
    position: absolute !important;

    left: 50% !important;
    right: auto !important;
    top: 48% !important;
    bottom: auto !important;

    transform: translate(-50%, -50%) !important;

    width: min(900px, 92vw) !important;
    max-width: 92vw !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;

    text-align: center !important;

    z-index: 20 !important;

    animation: none !important;
}

/* آموزش تخصصی بازارهای مالی */
.hero-content .hero-badge,
.hero-content span:first-child {
    display: block !important;

    margin: 0 auto 12px !important;

    font-size: 16px !important;
    font-weight: 600 !important;

    color: #e8bd62 !important;

    text-align: center !important;

    opacity: 1 !important;

    animation: none !important;
}

/* عنوان اصلی */
.hero-content h1 {
    margin: 0 auto 20px !important;

    width: 100% !important;
    max-width: 850px !important;

    font-size: clamp(28px, 3.2vw, 46px) !important;
    line-height: 1.35 !important;

    font-weight: 800 !important;

    color: #ffffff !important;

    text-align: center !important;

    white-space: nowrap !important;

    letter-spacing: -0.7px !important;

    text-shadow:
        0 2px 4px rgba(0,0,0,.95),
        0 5px 15px rgba(0,0,0,.9),
        0 10px 30px rgba(0,0,0,.65) !important;

    animation: none !important;
    transition: none !important;
    transform: none !important;
}

/* دکمه ها */
.hero-content .hero-buttons {
    display: flex !important;

    flex-direction: row !important;

    align-items: center !important;
    justify-content: center !important;

    gap: 14px !important;

    margin: 0 auto !important;

    animation: none !important;
}

/* دکمه ها */
.hero-content .hero-buttons a,
.hero-content .hero-buttons button {
    width: 185px !important;
    min-width: 185px !important;

    height: 52px !important;

    display: inline-flex !important;

    align-items: center !important;
    justify-content: center !important;

    border-radius: 10px !important;

    font-size: 14px !important;
    font-weight: 700 !important;

    animation: none !important;
    transition: transform .2s ease, box-shadow .2s ease !important;
}

/* مشاهده دوره ها */
.hero-content .hero-buttons a:last-child,
.hero-content .hero-buttons button:last-child {
    background: rgba(5,12,24,.78) !important;

    color: #fff !important;

    border: 1px solid rgba(232,189,98,.8) !important;

    box-shadow: 0 8px 25px rgba(0,0,0,.35) !important;
}

/* شروع یادگیری */
.hero-content .hero-buttons a:first-child,
.hero-content .hero-buttons button:first-child {
    background: #e2b34f !important;

    color: #07111f !important;

    border: 1px solid #f0cb78 !important;

    box-shadow: 0 8px 25px rgba(0,0,0,.35) !important;
}

/* Hover فقط روی دکمه */
.hero-content .hero-buttons a:hover,
.hero-content .hero-buttons button:hover {
    transform: translateY(-2px) !important;
}

/* موبایل */
@media (max-width:700px) {

    .hero-content {
        top: 48% !important;
        width: 94vw !important;
    }

    .hero-content h1 {
        font-size: 24px !important;
        white-space: normal !important;
        line-height: 1.5 !important;
        margin-bottom: 16px !important;
    }

    .hero-content .hero-buttons {
        gap: 9px !important;
    }

    .hero-content .hero-buttons a,
    .hero-content .hero-buttons button {
        width: 145px !important;
        min-width: 145px !important;
        height: 46px !important;
        font-size: 12px !important;
    }
}


/* ===== TITLE TOP / BUTTONS FIXED ===== */

/* فقط عنوان اصلی */
.hero-content h1 {
    position: absolute !important;

    top: 5px !important;
    left: 50% !important;

    transform: translateX(-50%) !important;

    width: 900px !important;
    max-width: 92vw !important;

    margin: 0 !important;

    text-align: center !important;

    white-space: nowrap !important;

    animation: none !important;
    transition: none !important;
}

/* فقط عبارت بالای عنوان */
.hero-content .hero-badge,
.hero-content span:first-child {
    position: absolute !important;

    top: -42px !important;
    left: 50% !important;

    transform: translateX(-50%) !important;

    margin: 0 !important;

    animation: none !important;
}

/* دکمه ها دقیقا سر جای فعلی بمانند */
.hero-content .hero-buttons {
    position: relative !important;

    transform: none !important;

    margin: 0 auto !important;

    animation: none !important;
}


/* ===== HERO FINAL RESET ===== */

.hero-content {
    position: absolute !important;
    inset: 0 !important;

    width: 100% !important;
    max-width: none !important;

    transform: none !important;

    display: block !important;

    text-align: center !important;

    z-index: 20 !important;

    animation: none !important;
}

/* آموزش تخصصی بازارهای مالی */
.hero-content .hero-badge,
.hero-content span:first-child {
    position: absolute !important;

    top: 5px !important;
    left: 50% !important;

    transform: translateX(-50%) !important;

    margin: 0 !important;

    white-space: nowrap !important;

    font-size: 16px !important;
    font-weight: 600 !important;

    color: #e8bd62 !important;

    animation: none !important;
}

/* عنوان اصلی */
.hero-content h1 {
    position: absolute !important;

    top: 35px !important;
    left: 50% !important;

    transform: translateX(-50%) !important;

    width: 90% !important;
    max-width: 900px !important;

    margin: 0 !important;

    font-size: clamp(28px, 3.2vw, 44px) !important;
    line-height: 1.4 !important;

    font-weight: 800 !important;

    color: #fff !important;

    text-align: center !important;

    white-space: nowrap !important;

    text-shadow:
        0 3px 5px rgba(0,0,0,.95),
        0 6px 18px rgba(0,0,0,.8) !important;

    animation: none !important;
    transition: none !important;
}

/* ===== BUTTONS — KEEP AT BOTTOM ===== */

.hero-content .hero-buttons {
    position: absolute !important;

    left: 50% !important;
    bottom: 28px !important;

    transform: translateX(-50%) !important;

    display: flex !important;

    flex-direction: row !important;

    align-items: center !important;
    justify-content: center !important;

    gap: 14px !important;

    width: auto !important;

    margin: 0 !important;

    animation: none !important;
}

/* دکمه ها */
.hero-content .hero-buttons a,
.hero-content .hero-buttons button {
    width: 185px !important;
    min-width: 185px !important;

    height: 52px !important;

    display: inline-flex !important;

    align-items: center !important;
    justify-content: center !important;

    border-radius: 10px !important;

    font-size: 14px !important;
    font-weight: 700 !important;

    animation: none !important;
}

/* مشاهده دوره ها */
.hero-content .hero-buttons a:last-child,
.hero-content .hero-buttons button:last-child {
    background: rgba(5,12,24,.78) !important;

    color: #fff !important;

    border: 1px solid rgba(232,189,98,.8) !important;
}

/* شروع یادگیری */
.hero-content .hero-buttons a:first-child,
.hero-content .hero-buttons button:first-child {
    background: #e2b34f !important;

    color: #07111f !important;

    border: 1px solid #f0cb78 !important;
}

/* موبایل */
@media (max-width:700px) {

    .hero-content .hero-badge,
    .hero-content span:first-child {
        top: 5px !important;
        font-size: 11px !important;
    }

    .hero-content h1 {
        top: 30px !important;

        width: 94% !important;

        font-size: 23px !important;

        white-space: normal !important;
    }

    .hero-content .hero-buttons {
        bottom: 20px !important;
        gap: 8px !important;
    }

    .hero-content .hero-buttons a,
    .hero-content .hero-buttons button {
        width: 145px !important;
        min-width: 145px !important;
        height: 46px !important;
        font-size: 12px !important;
    }
}


/* ===== BUTTONS — BOTTOM CENTER UNDER GOLD ===== */

.hero-content .hero-buttons {
    position: absolute !important;

    left: 50% !important;
    right: auto !important;

    bottom: 28px !important;
    top: auto !important;

    transform: translateX(-50%) !important;

    display: flex !important;
    flex-direction: row !important;

    align-items: center !important;
    justify-content: center !important;

    gap: 14px !important;

    width: max-content !important;
    margin: 0 !important;

    z-index: 30 !important;

    animation: none !important;
}

/* خود دکمه ها */
.hero-content .hero-buttons a,
.hero-content .hero-buttons button {
    position: relative !important;

    width: 185px !important;
    min-width: 185px !important;
    height: 52px !important;

    margin: 0 !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    border-radius: 10px !important;

    animation: none !important;
}

/* موبایل */
@media (max-width:700px) {

    .hero-content .hero-buttons {
        bottom: 20px !important;
        gap: 9px !important;
    }

    .hero-content .hero-buttons a,
    .hero-content .hero-buttons button {
        width: 145px !important;
        min-width: 145px !important;
        height: 46px !important;
    }
}


/* ===== REAL HERO BUTTONS ===== */

.hero-content .hero-actions {
    position: absolute !important;

    left: 50% !important;
    right: auto !important;
    top: auto !important;
    bottom: 28px !important;

    transform: translateX(-50%) !important;

    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;

    gap: 14px !important;

    width: max-content !important;
    margin: 0 !important;

    z-index: 50 !important;

    animation: none !important;
}

/* دکمه ها */
.hero-content .hero-actions .hero-btn {
    position: relative !important;

    width: 185px !important;
    min-width: 185px !important;
    height: 52px !important;

    margin: 0 !important;
    padding: 0 20px !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    border-radius: 10px !important;

    box-sizing: border-box !important;

    font-size: 14px !important;
    font-weight: 700 !important;

    animation: none !important;
}

/* شروع یادگیری */
.hero-content .hero-actions .hero-btn.primary {
    background: #e2b34f !important;
    color: #07111f !important;
    border: 1px solid #f0cb78 !important;
    box-shadow: 0 8px 25px rgba(0,0,0,.35) !important;
}

/* مشاهده دوره ها */
.hero-content .hero-actions .hero-btn.secondary {
    background: rgba(5,12,24,.82) !important;
    color: #fff !important;
    border: 1px solid rgba(232,189,98,.8) !important;
    box-shadow: 0 8px 25px rgba(0,0,0,.35) !important;
}

/* موبایل */
@media (max-width:700px) {
    .hero-content .hero-actions {
        bottom: 20px !important;
        gap: 9px !important;
    }

    .hero-content .hero-actions .hero-btn {
        width: 145px !important;
        min-width: 145px !important;
        height: 46px !important;
        font-size: 12px !important;
    }
}


/* ===== HERO TOP TEXT — CLEAN SPACING ===== */

/* متن کوچک بالا */
.hero-content > span:first-child,
.hero-content .hero-badge {
    position: absolute !important;

    top: 8px !important;
    left: 50% !important;

    transform: translateX(-50%) !important;

    margin: 0 !important;
    padding: 6px 14px !important;

    white-space: nowrap !important;

    font-size: 12px !important;
    line-height: 1.4 !important;
    font-weight: 600 !important;

    color: #e8bd62 !important;

    z-index: 30 !important;

    animation: none !important;
}

/* عنوان اصلی */
.hero-content h1 {
    position: absolute !important;

    top: 52px !important;
    left: 50% !important;

    transform: translateX(-50%) !important;

    width: 92% !important;
    max-width: 900px !important;

    margin: 0 !important;
    padding: 0 !important;

    text-align: center !important;

    font-size: clamp(28px, 3.1vw, 44px) !important;
    line-height: 1.45 !important;
    font-weight: 800 !important;

    color: #fff !important;

    white-space: nowrap !important;

    text-shadow:
        0 3px 5px rgba(0,0,0,.95),
        0 7px 18px rgba(0,0,0,.75) !important;

    z-index: 25 !important;

    animation: none !important;
    transition: none !important;
}

/* فاصله بین دو بخش عنوان */
.hero-content h1 span {
    display: inline !important;
    margin-right: 8px !important;
}

/* توضیح زیر عنوان — مرتب و جدا */
.hero-content > p {
    position: absolute !important;

    top: 118px !important;
    left: 50% !important;

    transform: translateX(-50%) !important;

    width: 90% !important;
    max-width: 700px !important;

    margin: 0 !important;
    padding: 0 !important;

    text-align: center !important;

    font-size: 16px !important;
    line-height: 1.7 !important;

    color: rgba(255,255,255,.82) !important;

    z-index: 20 !important;

    animation: none !important;
}

/* موبایل */
@media (max-width:700px) {

    .hero-content > span:first-child,
    .hero-content .hero-badge {
        top: 6px !important;
        font-size: 10px !important;
    }

    .hero-content h1 {
        top: 43px !important;

        width: 95% !important;

        font-size: 23px !important;
        line-height: 1.5 !important;

        white-space: normal !important;
    }

    .hero-content > p {
        top: 105px !important;

        width: 90% !important;

        font-size: 11px !important;
    }
}


/* ===== HERO TITLE — SMALLER + MORE SPACE ===== */

.hero-content h1 {
    top: 52px !important;

    font-size: clamp(23px, 2.4vw, 34px) !important;
    font-weight: 750 !important;

    line-height: 1.8 !important;

    word-spacing: 10px !important;
    letter-spacing: normal !important;

    white-space: nowrap !important;

    max-width: 800px !important;

    text-shadow:
        0 2px 4px rgba(0,0,0,.95),
        0 5px 14px rgba(0,0,0,.8) !important;

    animation: none !important;
    transition: none !important;
}

/* فاصله مشخص بین دو قسمت عنوان */
.hero-content h1 span {
    display: inline-block !important;
    margin-right: 18px !important;
}

/* متن کوچک بالای عنوان */
.hero-content .hero-badge,
.hero-content > span:first-child {
    top: 8px !important;

    font-size: 11px !important;
    line-height: 1.5 !important;

    padding: 4px 12px !important;

    animation: none !important;
}

/* موبایل */
@media (max-width:700px) {
    .hero-content h1 {
        top: 45px !important;
        font-size: 21px !important;
        line-height: 1.7 !important;
        word-spacing: 6px !important;
        white-space: normal !important;
    }

    .hero-content h1 span {
        margin-right: 10px !important;
    }
}


/* ===== FIX HERO TITLE SPAN ===== */

/* span داخل خود عنوان نباید badge باشد */
.hero-content h1 > span {
    position: static !important;

    display: inline-block !important;

    width: auto !important;
    height: auto !important;

    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;

    transform: none !important;

    margin: 0 0 0 28px !important;
    padding: 0 !important;

    color: #ffffff !important;

    font-size: inherit !important;
    font-weight: inherit !important;
    line-height: inherit !important;

    white-space: nowrap !important;

    border: 0 !important;
    background: none !important;
    box-shadow: none !important;

    animation: none !important;
}

/* عنوان اصلی */
.hero-content h1 {
    top: 55px !important;

    font-size: clamp(22px, 2.3vw, 34px) !important;
    font-weight: 750 !important;

    line-height: 1.7 !important;

    word-spacing: 7px !important;
    letter-spacing: normal !important;

    white-space: nowrap !important;

    text-align: center !important;

    animation: none !important;
    transition: none !important;
}

/* فقط badge واقعی بالای عنوان */
.hero-content > span:first-child,
.hero-content > .hero-badge {
    position: absolute !important;

    top: 8px !important;
    left: 50% !important;

    transform: translateX(-50%) !important;

    margin: 0 !important;
    padding: 5px 12px !important;

    font-size: 11px !important;
    line-height: 1.4 !important;

    color: #e8bd62 !important;

    white-space: nowrap !important;

    z-index: 30 !important;

    animation: none !important;
}

/* حذف هر استایل حرکتی قبلی */
.hero-content h1,
.hero-content h1 span {
    animation: none !important;
    transition: none !important;
}

/* موبایل */
@media (max-width:700px) {

    .hero-content h1 {
        top: 48px !important;

        font-size: 21px !important;
        line-height: 1.7 !important;

        word-spacing: 5px !important;

        white-space: normal !important;
    }

    .hero-content h1 > span {
        margin-right: 14px !important;
    }
}


/* =====================================================
   HERO TITLE — FINAL CLEAN FIX
   ===================================================== */

/* هر span داخل H1 = بخشی از عنوان نه badge */
.hero-content h1 > span {
    position: static !important;

    display: inline !important;

    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;

    transform: none !important;

    width: auto !important;
    height: auto !important;

    margin: 0 0 0 32px !important;
    padding: 0 !important;

    color: #ffffff !important;

    font-size: inherit !important;
    font-weight: inherit !important;
    line-height: inherit !important;

    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;

    white-space: nowrap !important;

    animation: none !important;
    transition: none !important;
}

/* عنوان اصلی */
.hero-content h1 {
    position: absolute !important;

    top: 55px !important;
    left: 50% !important;

    transform: translateX(-50%) !important;

    width: 95% !important;
    max-width: 900px !important;

    margin: 0 !important;
    padding: 0 !important;

    text-align: center !important;

    font-size: clamp(22px, 2.4vw, 35px) !important;
    font-weight: 750 !important;

    line-height: 1.7 !important;

    word-spacing: 6px !important;
    letter-spacing: normal !important;

    color: #ffffff !important;

    white-space: nowrap !important;

    text-shadow:
        0 2px 4px rgba(0,0,0,.95),
        0 5px 14px rgba(0,0,0,.85) !important;

    animation: none !important;
    transition: none !important;
}

/* فقط Badge واقعی */
.hero-content > span:first-child {
    position: absolute !important;

    top: 8px !important;
    left: 50% !important;

    transform: translateX(-50%) !important;

    margin: 0 !important;

    padding: 5px 12px !important;

    color: #e8bd62 !important;

    font-size: 11px !important;
    line-height: 1.4 !important;

    white-space: nowrap !important;

    z-index: 40 !important;

    animation: none !important;
}

/* توضیحات اضافی را فعلا مخفی نکن */
.hero-content > p {
    visibility: visible !important;
}

/* دکمهها دست نخورند */
.hero-content .hero-actions {
    position: absolute !important;

    left: 50% !important;
    bottom: 28px !important;

    top: auto !important;
    right: auto !important;

    transform: translateX(-50%) !important;

    display: flex !important;

    align-items: center !important;
    justify-content: center !important;

    gap: 14px !important;

    z-index: 50 !important;
}

/* موبایل */
@media (max-width:700px) {

    .hero-content h1 {
        top: 48px !important;

        width: 95% !important;

        font-size: 21px !important;

        line-height: 1.7 !important;

        white-space: normal !important;
    }

    .hero-content h1 > span {
        margin-right: 18px !important;
    }
}


/* =========================================================
   HERO TITLE — CLEAN FINAL
   ========================================================= */

/* عنوان اصلی: ثابت و وسط */
.hero-content h1.hero-title {
    position: absolute !important;

    top: 55px !important;
    left: 50% !important;
    right: auto !important;

    transform: translateX(-50%) !important;

    width: 95% !important;
    max-width: 900px !important;

    margin: 0 !important;
    padding: 0 !important;

    display: flex !important;
    flex-direction: row !important;

    align-items: center !important;
    justify-content: center !important;

    gap: 28px !important;

    direction: rtl !important;

    font-size: 30px !important;
    font-weight: 750 !important;

    line-height: 1.5 !important;

    white-space: nowrap !important;

    text-align: center !important;

    color: #ffffff !important;

    text-shadow:
        0 2px 4px rgba(0,0,0,.95),
        0 5px 15px rgba(0,0,0,.85) !important;

    animation: none !important;
    transition: none !important;
}

/* بخش اول عنوان */
.hero-content h1.hero-title > span.hero-title-main {
    position: static !important;

    display: block !important;

    width: auto !important;
    height: auto !important;

    margin: 0 !important;
    padding: 0 !important;

    transform: none !important;

    color: #ffffff !important;

    font-size: 30px !important;
    font-weight: 750 !important;

    line-height: inherit !important;

    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;

    white-space: nowrap !important;

    animation: none !important;
}

/* بخش دوم عنوان */
.hero-content h1.hero-title > span.hero-title-accent {
    position: static !important;

    display: block !important;

    width: auto !important;
    height: auto !important;

    margin: 0 !important;
    padding: 0 !important;

    transform: none !important;

    color: #e8bd62 !important;

    font-size: 30px !important;
    font-weight: 750 !important;

    line-height: inherit !important;

    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;

    white-space: nowrap !important;

    animation: none !important;
}

/* Badge بالای عنوان */
.hero-content > span:first-child {
    position: absolute !important;

    top: 8px !important;
    left: 50% !important;

    transform: translateX(-50%) !important;

    margin: 0 !important;

    padding: 5px 12px !important;

    color: #e8bd62 !important;

    font-size: 11px !important;
    line-height: 1.4 !important;

    white-space: nowrap !important;

    z-index: 40 !important;

    animation: none !important;
}

/* دکمهها ثابت پایین وسط */
.hero-content .hero-actions {
    position: absolute !important;

    left: 50% !important;
    bottom: 28px !important;

    top: auto !important;
    right: auto !important;

    transform: translateX(-50%) !important;

    display: flex !important;

    flex-direction: row !important;

    align-items: center !important;
    justify-content: center !important;

    gap: 14px !important;

    width: max-content !important;

    margin: 0 !important;

    z-index: 50 !important;

    animation: none !important;
}

/* موبایل */
@media (max-width: 700px) {

    .hero-content h1.hero-title {
        top: 48px !important;

        width: 96% !important;

        gap: 16px !important;

        font-size: 21px !important;

        white-space: normal !important;
    }

    .hero-content h1.hero-title > span.hero-title-main,
    .hero-content h1.hero-title > span.hero-title-accent {
        font-size: 21px !important;
    }
}

.hero-content h1.hero-title {
    position: absolute !important;
    top: 58px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;

    width: max-content !important;
    max-width: 90% !important;

    margin: 0 !important;
    padding: 0 !important;

    display: block !important;

    font-size: 32px !important;
    font-weight: 800 !important;
    line-height: 1.4 !important;

    color: #ffffff !important;
    text-align: center !important;
    white-space: nowrap !important;

    direction: rtl !important;

    animation: none !important;
    transition: none !important;
    text-shadow: 0 3px 18px rgba(0,0,0,.65) !important;
}

.hero-content h1.hero-title::first-letter {
    color: #ffffff !important;
}
/* ===== FINAL WIDE HERO ===== */

.hero {
    transform: translateY(-5px);
    position: relative !important;
    width: 100vw !important;
    max-width: none !important;
    min-height: 0 !important;
    height: clamp(480px, 43vw, 680px) !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    display: block !important;
    box-sizing: border-box !important;
}

.hero-image-card {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    min-height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    overflow: hidden !important;
}

.hero-image-card img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    object-fit: cover !important;
    object-position: center center !important;
    transform: none !important;
    animation: none !important;
}

/* حذف هرگونه تاریکی اضافه روی تصویر */
.hero-image-card::after {
    display: none !important;
}

/* حذف محتوای HTML روی تصویر */
.hero-content {
    display: none !important;
}

/* حذف فضای احتمالی اطراف Hero */
body {
    overflow-x: hidden !important;
}

main {
    margin: 0 !important;
    padding: 0 !important;
}

/* دسکتاپ عریض */
@media (min-width: 1200px) {
    .hero {
    transform: translateY(-5px);
        height: min(44vw, 700px) !important;
    }
}

/* لپتاپ */
@media (min-width: 768px) and (max-width: 1199px) {
    .hero {
    transform: translateY(-5px);
        height: 55vw !important;
        max-height: 620px !important;
    }
}

/* موبایل */
@media (max-width: 767px) {
    .hero {
    transform: translateY(-5px);
        height: 115vw !important;
        min-height: 480px !important;
        max-height: 620px !important;
    }

    .hero-image-card img {
        object-position: center center !important;
    }
}
/* ===== HERO BUTTONS RESTORE ===== */

.hero-content {
    display: block !important;
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    max-width: none !important;
    transform: none !important;
    z-index: 10 !important;
    pointer-events: none !important;
}

/* عنوان */
.hero-content .hero-title {
    position: absolute !important;
    top: 55px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 90% !important;
    max-width: 900px !important;
    margin: 0 !important;
    text-align: center !important;
    white-space: nowrap !important;
    font-size: clamp(30px, 3.2vw, 52px) !important;
    line-height: 1.35 !important;
    font-weight: 800 !important;
    color: #fff !important;
    text-shadow: 0 4px 20px rgba(0,0,0,.55) !important;
}

/* دکمهها */
.hero-content .hero-actions {
    position: absolute !important;
    left: 50% !important;
    bottom: 28px !important;
    transform: translateX(-50%) !important;

    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;

    gap: 14px !important;
    width: max-content !important;
    margin: 0 !important;

    pointer-events: auto !important;
    z-index: 20 !important;
}

/* ظاهر دکمهها */
.hero-content .hero-actions .hero-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    width: 185px !important;
    height: 52px !important;

    padding: 0 24px !important;
    border-radius: 12px !important;

    font-size: 15px !important;
    font-weight: 700 !important;
    text-decoration: none !important;

    transition: .25s ease !important;
}

/* دکمه طلایی */
.hero-content .hero-actions .hero-btn.primary {
    background: linear-gradient(135deg,#f1c45b,#dcae42) !important;
    color: #07111f !important;
    border: 1px solid #f1c45b !important;
}

/* دکمه دوم */
.hero-content .hero-actions .hero-btn.secondary {
    background: rgba(5,15,28,.55) !important;
    color: #fff !important;
    border: 1px solid rgba(232,189,98,.8) !important;
    backdrop-filter: blur(8px) !important;
}

/* هاور */
.hero-content .hero-actions .hero-btn:hover {
    transform: translateY(-3px) !important;
}

/* حذف فقط توضیحات اضافی */
.hero-content > p {
    display: none !important;
}

/* موبایل */
@media (max-width: 767px) {

    .hero-content .hero-title {
        top: 35px !important;
        width: 94% !important;
        white-space: normal !important;
        font-size: 27px !important;
    }

    .hero-content .hero-actions {
        bottom: 20px !important;
        gap: 10px !important;
    }

    .hero-content .hero-actions .hero-btn {
        width: 145px !important;
        height: 48px !important;
        font-size: 16px !important;
    }
}
/* ===== FULL WIDTH HERO FIX ===== */

.hero {
    transform: translateY(-5px);
    position: relative !important;

    width: 100vw !important;
    max-width: none !important;

    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;

    padding: 0 !important;

    height: clamp(480px, 43vw, 680px) !important;
    min-height: 0 !important;

    overflow: hidden !important;
    box-sizing: border-box !important;

    left: auto !important;
    right: auto !important;
}

/* تصویر دقیقا تا دو لبه صفحه */
.hero-image-card {
    position: absolute !important;
    inset: 0 !important;

    width: 100% !important;
    max-width: none !important;
    height: 100% !important;
    min-height: 100% !important;

    margin: 0 !important;
    padding: 0 !important;

    border: 0 !important;
    border-radius: 0 !important;

    overflow: hidden !important;
}

/* خود تصویر */
.hero-image-card img {
    display: block !important;

    width: 100% !important;
    height: 100% !important;

    max-width: none !important;

    object-fit: cover !important;
    object-position: center center !important;

    margin: 0 !important;
    padding: 0 !important;

    transform: none !important;
    animation: none !important;
}

/* جلوگیری از ایجاد فاصله توسط والدهای اصلی */
main,
main > *,
.container,
.page-container {
    box-sizing: border-box !important;
}

/* فقط جلوگیری از اسکرول افقی */
html,
body {
    max-width: 100% !important;
    overflow-x: hidden !important;
}

/* دسکتاپ */
@media (min-width: 1200px) {
    .hero {
    transform: translateY(-5px);
        height: min(43vw, 680px) !important;
    }
}
/* ===== NORMAL PROFESSIONAL HERO ===== */

.hero {
    transform: translateY(-5px);
    position: relative !important;
    width: 100% !important;
    max-width: 1280px !important;
    height: 620px !important;

    margin: 30px auto !important;
    padding: 0 !important;

    overflow: hidden !important;
    display: block !important;

    border-radius: 28px !important;
    box-sizing: border-box !important;
}

/* تصویر */
.hero-image-card {
    position: absolute !important;
    inset: 0 !important;

    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    min-height: 0 !important;

    margin: 0 !important;
    padding: 0 !important;

    border: 0 !important;
    border-radius: 28px !important;

    overflow: hidden !important;
    background: #07111f !important;
}

/* خود تصویر */
.hero-image-card img {
    display: block !important;

    width: 100% !important;
    height: 100% !important;

    object-fit: cover !important;
    object-position: center center !important;

    margin: 0 !important;
    padding: 0 !important;

    transform: none !important;
    animation: none !important;
}

/* لایه خیلی ملایم */
.hero-image-card::after {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;

    background:
        linear-gradient(
            180deg,
            rgba(3,10,20,.08) 0%,
            rgba(3,10,20,.02) 45%,
            rgba(3,10,20,.28) 100%
        ) !important;

    z-index: 1 !important;
}

/* محتوای Hero */
.hero-content {
    position: absolute !important;
    inset: 0 !important;

    width: 100% !important;
    max-width: none !important;

    margin: 0 !important;
    padding: 0 !important;

    display: block !important;

    z-index: 5 !important;

    pointer-events: none !important;
}

/* عنوان */
.hero-content .hero-title {
    position: absolute !important;

    top: 55px !important;
    left: 50% !important;

    transform: translateX(-50%) !important;

    width: 90% !important;
    max-width: 900px !important;

    margin: 0 !important;
    padding: 0 !important;

    text-align: center !important;

    font-size: clamp(30px, 3.2vw, 48px) !important;
    line-height: 1.4 !important;
    font-weight: 800 !important;

    color: #fff !important;

    text-shadow:
        0 4px 18px rgba(0,0,0,.7) !important;

    white-space: nowrap !important;

    animation: none !important;
}

/* دکمهها */
.hero-content .hero-actions {
    position: absolute !important;

    left: 50% !important;
    bottom: 30px !important;

    transform: translateX(-50%) !important;

    display: flex !important;

    align-items: center !important;
    justify-content: center !important;

    gap: 14px !important;

    width: max-content !important;

    margin: 0 !important;

    pointer-events: auto !important;

    z-index: 10 !important;
}

/* دکمه */
.hero-content .hero-actions .hero-btn {
    width: 185px !important;
    height: 52px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    border-radius: 12px !important;

    font-size: 15px !important;
    font-weight: 700 !important;

    transition: .25s ease !important;
}

/* موبایل */
@media (max-width: 767px) {

    .hero {
    transform: translateY(-5px);
        width: calc(100% - 24px) !important;
        height: 560px !important;
        margin: 16px auto !important;
        border-radius: 20px !important;
    }

    .hero-image-card {
        border-radius: 20px !important;
    }

    .hero-content .hero-title {
        top: 35px !important;
        width: 92% !important;

        white-space: normal !important;

        font-size: 28px !important;
    }

    .hero-content .hero-actions {
        bottom: 22px !important;
    }

    .hero-content .hero-actions .hero-btn {
        width: 145px !important;
        height: 48px !important;
        font-size: 16px !important;
    }
}
/* =====================================================
   FINAL PREMIUM HEADER
   ===================================================== */

header,
.site-header {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;

    width: 100% !important;
    height: 82px !important;

    background: linear-gradient(
        180deg,
        rgba(3,10,20,.72) 0%,
        rgba(3,10,20,.20) 70%,
        transparent 100%
    ) !important;

    border: 0 !important;
    box-shadow: none !important;

    z-index: 1000 !important;
}

/* کانتینر هدر */
header .header-inner,
.site-header .header-inner {
    width: calc(100% - 70px) !important;
    max-width: 1280px !important;
    height: 82px !important;

    margin: 0 auto !important;
    padding: 0 !important;

    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;

    background: transparent !important;
    border: 0 !important;
}

/* =====================================================
   LOGO
   ===================================================== */

header .logo,
.site-header .logo {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;

    text-decoration: none !important;
    color: #fff !important;

    line-height: 1 !important;
}

header .logo-main,
.site-header .logo-main {
    color: #fff !important;

    font-size: 21px !important;
    font-weight: 900 !important;

    letter-spacing: -.5px !important;

    text-shadow: 0 2px 12px rgba(0,0,0,.5) !important;
}

header .logo-sub,
.site-header .logo-sub {
    margin-top: 7px !important;

    color: #e8bd62 !important;

    font-size: 9px !important;
    font-weight: 700 !important;

    letter-spacing: 2px !important;
}

/* =====================================================
   DESKTOP NAV
   ===================================================== */

header .desktop-nav,
.site-header .desktop-nav {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    gap: 28px !important;

    margin: 0 auto !important;
}

header .desktop-nav a,
.site-header .desktop-nav a {
    position: relative !important;

    color: rgba(255,255,255,.88) !important;

    font-size: 14px !important;
    font-weight: 600 !important;

    text-decoration: none !important;

    padding: 8px 0 !important;

    transition: color .25s ease !important;
}

header .desktop-nav a::after,
.site-header .desktop-nav a::after {
    content: "" !important;

    position: absolute !important;

    right: 0 !important;
    bottom: 0 !important;

    width: 0 !important;
    height: 2px !important;

    background: #e8bd62 !important;

    transition: width .25s ease !important;
}

header .desktop-nav a:hover,
.site-header .desktop-nav a:hover {
    color: #e8bd62 !important;
}

header .desktop-nav a:hover::after,
.site-header .desktop-nav a:hover::after {
    width: 100% !important;
}

/* =====================================================
   HEADER ACTIONS
   ===================================================== */

header .header-actions,
.site-header .header-actions {
    display: flex !important;
    align-items: center !important;

    gap: 10px !important;
}

/* جستجو */
header .search-btn,
.site-header .search-btn {
    width: 38px !important;
    height: 38px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    background: rgba(255,255,255,.06) !important;

    border: 1px solid rgba(232,189,98,.25) !important;
    border-radius: 10px !important;

    color: #fff !important;

    cursor: pointer !important;
}

/* ورود */
header .login-btn,
.site-header .login-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    height: 40px !important;
    padding: 0 18px !important;

    color: #fff !important;

    border: 1px solid rgba(232,189,98,.45) !important;
    border-radius: 10px !important;

    text-decoration: none !important;

    font-size: 16px !important;
    font-weight: 700 !important;
}

/* عضویت */
header .register-btn,
.site-header .register-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    height: 40px !important;
    padding: 0 19px !important;

    background: linear-gradient(
        135deg,
        #f0c45b,
        #dcae42
    ) !important;

    color: #07111f !important;

    border: 1px solid #f0c45b !important;
    border-radius: 10px !important;

    text-decoration: none !important;

    font-size: 16px !important;
    font-weight: 800 !important;

    box-shadow: 0 5px 18px rgba(220,174,66,.18) !important;
}

/* هاور */
header .login-btn:hover,
.site-header .login-btn:hover {
    background: rgba(232,189,98,.10) !important;
}

header .register-btn:hover,
.site-header .register-btn:hover {
    transform: translateY(-2px) !important;
}

/* =====================================================
   MOBILE
   ===================================================== */

header .mobile-menu-btn,
.site-header .mobile-menu-btn {
    display: none !important;
}

@media (max-width: 1000px) {

    header .desktop-nav,
    .site-header .desktop-nav {
        display: none !important;
    }

    header .search-btn,
    .site-header .search-btn,
    header .login-btn,
    .site-header .login-btn {
        display: none !important;
    }

    header .mobile-menu-btn,
    .site-header .mobile-menu-btn {
        display: flex !important;

        width: 42px !important;
        height: 42px !important;

        align-items: center !important;
        justify-content: center !important;

        background: rgba(5,15,28,.55) !important;

        border: 1px solid rgba(232,189,98,.35) !important;
        border-radius: 10px !important;

        color: #e8bd62 !important;

        font-size: 21px !important;

        cursor: pointer !important;
    }

    header .header-inner,
    .site-header .header-inner {
        width: calc(100% - 32px) !important;
    }
}

/* موبایل کوچک */
@media (max-width: 500px) {

    header,
    .site-header {
        height: 68px !important;
    }

    header .header-inner,
    .site-header .header-inner {
        height: 68px !important;
    }

    header .logo-main,
    .site-header .logo-main {
        font-size: 17px !important;
    }

    header .logo-sub,
    .site-header .logo-sub {
        font-size: 7px !important;
        letter-spacing: 1.5px !important;
    }
}
/* =========================================
   HERO — FULL WIDTH + HEADER GAP
   ========================================= */

.hero {
    transform: translateY(-5px);
    position: relative !important;

    width: 100vw !important;
    max-width: none !important;

    /* خارج شدن از کانتینر سایت */
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;

    /* فاصله از هدر */
    margin-top: 105px !important;
    margin-bottom: 0 !important;

    height: 620px !important;

    padding: 0 !important;

    border-radius: 0 !important;

    overflow: hidden !important;

    box-sizing: border-box !important;
}

/* تصویر */
.hero-image-card {
    position: absolute !important;
    inset: 0 !important;

    width: 100% !important;
    height: 100% !important;

    max-width: none !important;
    min-height: 0 !important;

    margin: 0 !important;
    padding: 0 !important;

    border: 0 !important;
    border-radius: 0 !important;

    overflow: hidden !important;
}

/* تصویر اصلی */
.hero-image-card img {
    display: block !important;

    width: 100% !important;
    height: 100% !important;

    max-width: none !important;

    object-fit: cover !important;
    object-position: center center !important;

    margin: 0 !important;
    padding: 0 !important;

    transform: none !important;
    animation: none !important;
}

/* لایه تصویر بسیار ملایم */
.hero-image-card::after {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;

    background:
        linear-gradient(
            180deg,
            rgba(2,8,18,.12) 0%,
            rgba(2,8,18,.02) 45%,
            rgba(2,8,18,.25) 100%
        ) !important;

    z-index: 1 !important;
}

/* محتوای روی Hero */
.hero-content {
    position: absolute !important;
    inset: 0 !important;

    width: 100% !important;
    max-width: none !important;

    margin: 0 !important;
    padding: 0 !important;

    z-index: 5 !important;
}

/* عنوان */
.hero-content .hero-title {
    position: absolute !important;

    top: 55px !important;
    left: 50% !important;

    transform: translateX(-50%) !important;

    width: 90% !important;
    max-width: 1000px !important;

    margin: 0 !important;
    padding: 0 !important;

    text-align: center !important;

    font-size: clamp(32px, 3.3vw, 52px) !important;
    line-height: 1.4 !important;
    font-weight: 800 !important;

    white-space: nowrap !important;

    color: #fff !important;

    text-shadow:
        0 4px 20px rgba(0,0,0,.65) !important;
}

/* دکمهها */
.hero-content .hero-actions {
    position: absolute !important;

    left: 50% !important;
    bottom: 30px !important;

    transform: translateX(-50%) !important;

    display: flex !important;

    align-items: center !important;
    justify-content: center !important;

    gap: 14px !important;

    width: max-content !important;

    margin: 0 !important;

    z-index: 20 !important;
}

/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 767px) {

    .hero {
    transform: translateY(-5px);
        width: 100vw !important;

        margin-left: calc(50% - 50vw) !important;
        margin-right: calc(50% - 50vw) !important;

        margin-top: 82px !important;

        height: 560px !important;
    }

    .hero-content .hero-title {
        top: 40px !important;

        width: 92% !important;

        white-space: normal !important;

        font-size: 28px !important;
    }

    .hero-content .hero-actions {
        bottom: 22px !important;
    }
}
/* =========================================
   HEADER — CLEAN FINAL DESKTOP
   ========================================= */

header,
.site-header {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;

    width: 100% !important;
    height: 78px !important;

    padding: 0 !important;
    margin: 0 !important;

    background: rgba(4,12,24,.94) !important;
    border: 0 !important;
    box-shadow: 0 8px 30px rgba(0,0,0,.18) !important;

    z-index: 9999 !important;
}

header .header-inner,
.site-header .header-inner {
    width: calc(100% - 70px) !important;
    max-width: 1280px !important;
    height: 78px !important;

    margin: 0 auto !important;
    padding: 0 !important;

    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;

    direction: rtl !important;
}

/* ---------- LOGO RIGHT ---------- */

header .logo,
.site-header .logo {
    order: 1 !important;

    flex: 0 0 auto !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: flex-end !important;

    margin: 0 !important;
    padding: 0 !important;

    text-decoration: none !important;
}

header .logo-main,
.site-header .logo-main {
    font-size: 20px !important;
    font-weight: 900 !important;

    color: #fff !important;
}

header .logo-sub,
.site-header .logo-sub {
    margin-top: 5px !important;

    font-size: 8px !important;
    font-weight: 700 !important;

    letter-spacing: 2px !important;

    color: #e8bd62 !important;
}

/* ---------- NAV CENTER ---------- */

header .desktop-nav,
.site-header .desktop-nav {
    order: 2 !important;

    flex: 1 1 auto !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    gap: 24px !important;

    margin: 0 35px !important;
    padding: 0 !important;

    direction: rtl !important;
}

header .desktop-nav a,
.site-header .desktop-nav a {
    display: inline-flex !important;
    align-items: center !important;

    height: 40px !important;

    padding: 0 !important;
    margin: 0 !important;

    color: rgba(255,255,255,.88) !important;

    font-size: 16px !important;
    font-weight: 600 !important;

    white-space: nowrap !important;

    text-decoration: none !important;

    transition: .2s ease !important;
}

header .desktop-nav a:hover,
.site-header .desktop-nav a:hover {
    color: #e8bd62 !important;
}

/* فلشهای اضافه */
header .desktop-nav a::after,
.site-header .desktop-nav a::after {
    display: none !important;
}

/* ---------- ACTIONS LEFT ---------- */

header .header-actions,
.site-header .header-actions {
    order: 3 !important;

    flex: 0 0 auto !important;

    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;

    gap: 9px !important;

    margin: 0 !important;
    padding: 0 !important;

    direction: rtl !important;
}

/* جستجو */
header .search-btn,
.site-header .search-btn {
    width: 40px !important;
    height: 40px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    padding: 0 !important;
    margin: 0 !important;

    color: #fff !important;

    background: rgba(255,255,255,.04) !important;

    border: 1px solid rgba(232,189,98,.30) !important;
    border-radius: 10px !important;
}

/* ورود */
header .login-btn,
.site-header .login-btn {
    height: 40px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    padding: 0 17px !important;
    margin: 0 !important;

    color: #fff !important;

    background: transparent !important;

    border: 1px solid rgba(232,189,98,.40) !important;
    border-radius: 10px !important;

    font-size: 16px !important;
    font-weight: 700 !important;

    text-decoration: none !important;
}

/* عضویت */
header .register-btn,
.site-header .register-btn {
    height: 40px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    padding: 0 18px !important;
    margin: 0 !important;

    color: #07111f !important;

    background: linear-gradient(
        135deg,
        #f2c65c,
        #dcae42
    ) !important;

    border: 1px solid #f2c65c !important;
    border-radius: 10px !important;

    font-size: 16px !important;
    font-weight: 800 !important;

    text-decoration: none !important;
}

/* ---------- MOBILE BUTTON MUST BE HIDDEN ---------- */

header .mobile-menu-btn,
.site-header .mobile-menu-btn,
header button.mobile-menu-btn,
.site-header button.mobile-menu-btn {
    display: none !important;

    position: static !important;

    width: 40px !important;
    height: 40px !important;

    margin: 0 !important;
}

/* ---------- HERO GAP ---------- */

.hero {
    transform: translateY(-5px);
    margin-top: 92px !important;
}

/* =========================================
   TABLET
   ========================================= */

@media (max-width: 1050px) {

    header .desktop-nav,
    .site-header .desktop-nav {
        gap: 14px !important;
        margin: 0 15px !important;
    }

    header .desktop-nav a,
    .site-header .desktop-nav a {
        font-size: 11px !important;
    }

    header .logo-main,
    .site-header .logo-main {
        font-size: 17px !important;
    }
}

/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 760px) {

    header,
    .site-header {
        height: 68px !important;
    }

    header .header-inner,
    .site-header .header-inner {
        width: calc(100% - 28px) !important;
        height: 68px !important;
    }

    header .desktop-nav,
    .site-header .desktop-nav,
    header .search-btn,
    .site-header .search-btn,
    header .login-btn,
    .site-header .login-btn {
        display: none !important;
    }

    header .mobile-menu-btn,
    .site-header .mobile-menu-btn,
    header button.mobile-menu-btn,
    .site-header button.mobile-menu-btn {
        display: flex !important;

        align-items: center !important;
        justify-content: center !important;

        color: #e8bd62 !important;
        background: rgba(255,255,255,.04) !important;

        border: 1px solid rgba(232,189,98,.35) !important;
        border-radius: 10px !important;
    }

    header .register-btn,
    .site-header .register-btn {
        display: none !important;
    }

    header .logo-main,
    .site-header .logo-main {
        font-size: 17px !important;
    }

    .hero {
    transform: translateY(-5px);
        margin-top: 78px !important;
    }
}
/* ===== HEADER TRANSPARENT ===== */

header,
.site-header {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;

    box-shadow: none !important;
    border: 0 !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

/* حذف هر لایه ساختگی هدر */
header::before,
header::after,
.site-header::before,
.site-header::after {
    content: none !important;
    display: none !important;
    background: none !important;
    box-shadow: none !important;
}

/* کانتینر هدر هم شفاف */
header .header-inner,
.site-header .header-inner {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;

    box-shadow: none !important;
    border: 0 !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}
/* ===== HEADER + HERO FINAL POSITION ===== */

/* هدر کاملا بالای صفحه */
header,
.site-header {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;

    height: 72px !important;
    margin: 0 !important;
    padding: 0 !important;

    z-index: 9999 !important;
}

/* هدر شفاف */
header,
.site-header,
header .header-inner,
.site-header .header-inner {
    background: transparent !important;
    background-color: transparent !important;
    box-shadow: none !important;
    border: 0 !important;
}

/* بنر نزدیک به هدر */
.hero {
    transform: translateY(-5px);
    margin-top: 72px !important;
    margin-bottom: 0 !important;

    width: 100vw !important;
    max-width: none !important;

    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;

    height: 620px !important;

    border-radius: 0 !important;
}

/* تصویر بدون فاصله */
.hero-image-card {
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;

    border-radius: 0 !important;
}

/* موبایل */
@media (max-width: 760px) {
    header,
    .site-header {
        height: 64px !important;
    }

    .hero {
    transform: translateY(-5px);
        margin-top: 64px !important;
        height: 560px !important;
    }
}

/* FINAL HERO - SHOW FULL IMAGE */
header,
.site-header {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    border: 0 !important;
    z-index: 9999 !important;
}

.hero {
    transform: translateY(-5px);
    margin-top: 0 !important;
    width: 100vw !important;
    max-width: none !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    height: auto !important;
    min-height: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
}

.hero-image-card {
    position: relative !important;
    inset: auto !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    overflow: hidden !important;
}

.hero-image-card img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    object-position: center top !important;
}


/* MINIMAL HEADER ARROWS */
.desktop-nav a::after {
    border: solid rgba(255,255,255,.65) !important;
    border-width: 0 1px 1px 0 !important;
    display: inline-block !important;
    padding: 2.5px !important;
    transform: rotate(45deg) !important;
    margin-right: 7px !important;
    margin-bottom: 3px !important;
    transition: .2s ease !important;
    background: transparent !important;
}

/* فقط لینکهای دارای فلش */
.desktop-nav a:not([href="/"]):hover::after {
    border-color: #d4a84b !important;
}


/* MINIMAL DROPDOWN ARROWS */
.desktop-nav .nav-dropdown > button span {
    display: inline-block !important;
    font-size: 11px !important;
    font-weight: 400 !important;
    color: rgba(255,255,255,.55) !important;
    margin-right: 6px !important;
    transform: translateY(-1px) !important;
    transition: all .2s ease !important;
}

.desktop-nav .nav-dropdown > button:hover span {
    color: #d4a84b !important;
}


/* FINAL MINIMAL CHEVRON */
.desktop-nav .nav-dropdown > button {
    display: inline-flex !important;
    align-items: center !important;
    gap: 7px !important;
}

.desktop-nav .nav-chevron {
    width: 6px !important;
    height: 6px !important;
    display: inline-block !important;
    border-right: 1.5px solid rgba(255,255,255,.7) !important;
    border-bottom: 1.5px solid rgba(255,255,255,.7) !important;
    transform: rotate(45deg) translateY(-2px) !important;
    transform-origin: center !important;
    transition: transform .2s ease, border-color .2s ease !important;
}

.desktop-nav .nav-dropdown > button:hover .nav-chevron {
    border-color: #d4a84b !important;
}


/* SOFT HERO FRAME */
.hero {
    transform: translateY(-5px);
    margin: 18px 14px 0 !important;
    width: calc(100vw - 28px) !important;
    max-width: none !important;
    border-radius: 24px !important;
    overflow: hidden !important;
    border: 1px solid rgba(212,168,75,.16) !important;
    box-shadow:
        0 0 0 1px rgba(255,255,255,.025),
        0 18px 55px rgba(0,0,0,.28) !important;
}

.hero-image-card {
    border-radius: 24px !important;
    overflow: hidden !important;
}

.hero-image-card img {
    border-radius: 24px !important;
}


/* SOFT FADED HERO SHADOW */
.hero {
    transform: translateY(-5px);
    border: none !important;
    box-shadow:
        0 0 45px rgba(0,0,0,.38),
        0 0 90px rgba(0,0,0,.22) !important;
}


/* FADED HERO EDGES */
.hero {
    transform: translateY(-5px);
    border-radius: 0 !important;
    border: none !important;
    box-shadow: none !important;
}

.hero-image-card,
.hero-image-card img {
    border-radius: 0 !important;
}

.hero-image-card {
    overflow: hidden !important;
    -webkit-mask-image: radial-gradient(
        ellipse 92% 88% at center,
        #000 62%,
        rgba(0,0,0,.85) 78%,
        transparent 100%
    ) !important;
    mask-image: radial-gradient(
        ellipse 92% 88% at center,
        #000 62%,
        rgba(0,0,0,.85) 78%,
        transparent 100%
    ) !important;
}


/* HERO EDGE TO EDGE */
html,
body {
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden !important;
}

.hero {
    transform: translateY(-5px);
    width: 100% !important;
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    border-radius: 0 !important;
    border: 0 !important;
}

.hero-image-card {
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    border-radius: 0 !important;
}

/* =========================================================
   PREMIUM TRADING COURSES — FINAL
========================================================= */

.courses-section{
    position:relative !important;
    padding:110px 0 !important;
    overflow:hidden !important;
}

.courses-section .section-heading{
    position:relative !important;
    z-index:2 !important;
    margin-bottom:55px !important;
}

.courses-section .section-heading > span{
    display:inline-flex !important;
    align-items:center !important;
    gap:10px !important;
    color:#d4af37 !important;
    font-size:12px !important;
    font-weight:900 !important;
    letter-spacing:2px !important;
}

.courses-section .section-heading > span::before{
    content:"" !important;
    width:28px !important;
    height:1px !important;
    background:linear-gradient(90deg,transparent,#d4af37) !important;
}

.courses-section .section-heading h2{
    margin:14px 0 12px !important;
    font-size:clamp(30px,4vw,46px) !important;
    font-weight:900 !important;
    line-height:1.4 !important;
}

.courses-section .section-heading p{
    max-width:650px !important;
    margin:0 auto !important;
    color:#8795a8 !important;
    line-height:2 !important;
}


/* =========================
   GRID
========================= */

.courses-section .courses-grid{
    width:min(1240px,calc(100% - 40px)) !important;
    margin:0 auto !important;

    display:grid !important;
    grid-template-columns:repeat(4,minmax(0,1fr)) !important;
    gap:22px !important;

    align-items:stretch !important;
}


/* =========================
   CARD
========================= */

.courses-section .course-card{
    position:relative !important;

    display:flex !important;
    flex-direction:column !important;

    min-width:0 !important;
    overflow:hidden !important;

    background:
        linear-gradient(
            180deg,
            rgba(18,36,56,.98),
            rgba(7,18,31,.98)
        ) !important;

    border:1px solid rgba(212,175,55,.16) !important;
    border-radius:22px !important;

    box-shadow:
        0 15px 45px rgba(0,0,0,.18) !important;

    transition:
        transform .35s cubic-bezier(.2,.8,.2,1),
        border-color .35s ease,
        box-shadow .35s ease !important;
}

.courses-section .course-card::before{
    content:"" !important;

    position:absolute !important;
    top:0 !important;
    right:0 !important;
    left:0 !important;

    height:2px !important;

    background:
        linear-gradient(
            90deg,
            transparent,
            #d4af37,
            transparent
        ) !important;

    opacity:.45 !important;
    transition:.35s ease !important;
}

.courses-section .course-card:hover{
    transform:translateY(-10px) !important;

    border-color:rgba(212,175,55,.48) !important;

    box-shadow:
        0 25px 60px rgba(0,0,0,.35),
        0 0 35px rgba(212,175,55,.07) !important;
}

.courses-section .course-card:hover::before{
    opacity:1 !important;
}


/* =========================
   IMAGE
========================= */

.courses-section .course-image{
    position:relative !important;

    width:100% !important;
    height:205px !important;

    overflow:hidden !important;

    background:
        radial-gradient(
            circle at 50% 40%,
            rgba(212,175,55,.18),
            transparent 55%
        ),
        #102236 !important;
}

.courses-section .course-image::after{
    content:"" !important;

    position:absolute !important;
    inset:0 !important;

    background:
        linear-gradient(
            180deg,
            transparent 45%,
            rgba(7,17,31,.88) 100%
        ) !important;

    pointer-events:none !important;
}

.courses-section .course-image img{
    width:100% !important;
    height:100% !important;

    object-fit:cover !important;

    display:block !important;

    transition:
        transform .55s cubic-bezier(.2,.8,.2,1),
        filter .4s ease !important;
}

.courses-section .course-card:hover
.course-image img{
    transform:scale(1.07) !important;
    filter:saturate(1.08) contrast(1.03) !important;
}

.courses-section .course-image > span{
    position:absolute !important;
    inset:0 !important;

    display:flex !important;
    align-items:center !important;
    justify-content:center !important;

    color:rgba(212,175,55,.32) !important;

    font-size:34px !important;
    font-weight:900 !important;
    letter-spacing:4px !important;
}


/* =========================
   BODY
========================= */

.courses-section .course-body{
    position:relative !important;
    z-index:2 !important;

    flex:1 !important;

    display:flex !important;
    flex-direction:column !important;

    padding:24px !important;
}


/* LEVEL */

.courses-section .course-level{
    align-self:flex-start !important;

    display:inline-flex !important;
    align-items:center !important;

    min-height:28px !important;

    padding:5px 11px !important;

    border:1px solid rgba(212,175,55,.22) !important;
    border-radius:999px !important;

    background:rgba(212,175,55,.07) !important;

    color:#d4af37 !important;

    font-size:10px !important;
    font-weight:800 !important;
}


/* TITLE */

.courses-section .course-body h3{
    margin:16px 0 10px !important;

    color:#fff !important;

    font-size:20px !important;
    line-height:1.65 !important;
    font-weight:900 !important;
}

.courses-section .course-body p{
    margin:0 !important;

    min-height:55px !important;

    color:#8291a5 !important;

    font-size:13px !important;
    line-height:2 !important;
}


/* =========================
   META
========================= */

.courses-section .course-meta{
    margin-top:20px !important;
    padding-top:16px !important;

    border-top:1px solid rgba(255,255,255,.07) !important;

    display:flex !important;
    align-items:center !important;
    justify-content:space-between !important;

    gap:10px !important;

    color:#718095 !important;

    font-size:11px !important;
}

.courses-section .course-meta span:first-child{
    color:#c8d0da !important;
}

.courses-section .course-meta span:first-child::before{
    content:"◉" !important;
    margin-left:6px !important;
    color:#d4af37 !important;
    font-size:8px !important;
}


/* =========================
   BUTTON
========================= */

.courses-section .course-btn{
    position:relative !important;

    width:100% !important;

    margin-top:20px !important;

    min-height:45px !important;

    display:flex !important;
    align-items:center !important;
    justify-content:center !important;

    border:1px solid rgba(212,175,55,.55) !important;
    border-radius:12px !important;

    background:rgba(212,175,55,.04) !important;

    color:#d4af37 !important;

    text-decoration:none !important;

    font-size:12px !important;
    font-weight:900 !important;

    overflow:hidden !important;

    transition:
        background .3s ease,
        color .3s ease,
        border-color .3s ease,
        transform .3s ease !important;
}

.courses-section .course-btn::before{
    content:"" !important;

    position:absolute !important;
    inset:0 !important;

    background:#d4af37 !important;

    transform:translateX(-105%) !important;

    transition:transform .35s ease !important;

    z-index:-1 !important;
}

.courses-section .course-btn:hover{
    color:#07111f !important;
    border-color:#d4af37 !important;
    transform:translateY(-2px) !important;
}

.courses-section .course-btn:hover::before{
    transform:translateX(0) !important;
}


/* =========================
   EMPTY
========================= */

.courses-section .course-card:has(.course-body h3:only-child){
    min-height:220px !important;
}


/* =========================
   TABLET
========================= */

@media(max-width:1100px){

    .courses-section .courses-grid{
        grid-template-columns:repeat(2,minmax(0,1fr)) !important;
        gap:20px !important;
    }
}


/* =========================
   MOBILE
========================= */

@media(max-width:650px){

    .courses-section{
        padding:80px 0 !important;
    }

    .courses-section .courses-grid{
        width:min(100% - 28px,520px) !important;
        grid-template-columns:1fr !important;
        gap:18px !important;
    }

    .courses-section .course-image{
        height:220px !important;
    }

    .courses-section .course-body{
        padding:22px !important;
    }
}


/* =========================
   SMALL MOBILE
========================= */

@media(max-width:400px){

    .courses-section .course-image{
        height:195px !important;
    }

    .courses-section .course-body h3{
        font-size:18px !important;
    }
}

/* =========================================================
   ECONOMIC CALENDAR - MODERN
========================================================= */

.calendar-box {
    background: #0f2034;
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
}

.calendar-header {
    padding: 28px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    border-bottom: 1px solid var(--border);
}

.calendar-filters {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.calendar-filters button {
    min-width: 72px;
    padding: 9px 16px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: rgba(255,255,255,.025);
    color: #aebdcd;
    font-family: inherit;
    font-size: 12px;
    cursor: pointer;
    transition: .2s ease;
}

.calendar-filters button:hover,
.calendar-filters button.active {
    background: var(--gold);
    color: #07111f;
    border-color: var(--gold);
}

.calendar-event {
    direction: rtl;
    display: grid;
    grid-template-columns: 110px 90px minmax(260px, 1fr) 180px;
    align-items: center;
    gap: 24px;
    padding: 24px 32px;
    border-bottom: 1px solid var(--border);
    transition: background .2s ease;
}

.calendar-event:hover {
    background: rgba(255,255,255,.025);
}

.event-time {
    align-items: flex-start;
    text-align: right;
}

.event-time strong {
    font-size: 17px;
    font-weight: 800;
    color: #fff;
    direction: ltr;
    display: block;
}

.event-time span {
    margin-top: 5px;
    display: block;
    color: #64748b;
    font-size: 10px;
    direction: ltr;
}

.event-impact {
    justify-content: flex-start;
    white-space: nowrap;
}

.event-info {
    min-width: 0;
    text-align: right;
}

.event-info strong {
    display: block;
    font-size: 14px;
    line-height: 1.8;
    color: #fff;
}

.event-info span {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.7;
}

.event-values {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
    color: #94a3b8;
    font-size: 11px;
    direction: rtl;
}

.event-values span {
    white-space: nowrap;
}

@media (max-width: 900px) {
    .calendar-header {
        flex-direction: column;
        align-items: stretch;
    }

    .calendar-filters {
        justify-content: flex-start;
    }

    .calendar-event {
        grid-template-columns: 90px 80px 1fr;
        gap: 16px;
    }

    .event-values {
        grid-column: 1 / -1;
        flex-direction: row;
        justify-content: flex-start;
        gap: 25px;
        padding-top: 4px;
    }
}

@media (max-width: 600px) {
    .calendar-event {
        grid-template-columns: 75px 1fr;
        gap: 12px;
        padding: 20px;
    }

    .event-impact {
        grid-column: 2;
        grid-row: 1;
        justify-self: end;
    }

    .event-info {
        grid-column: 1 / -1;
        grid-row: 2;
    }

    .event-values {
        grid-column: 1 / -1;
        grid-row: 3;
        flex-wrap: wrap;
    }

    .calendar-filters {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 3px;
    }

    .calendar-filters button {
        flex: 0 0 auto;
    }
}

/* FIX - ARTICLES TITLE */
.articles-section .section-heading h2 {
    line-height: 1.9;
    letter-spacing: 0;
    word-spacing: 4px;
    white-space: normal;
    word-break: normal;
    overflow-wrap: normal;
}

@media (max-width: 600px) {
    .articles-section .section-heading h2 {
        font-size: 25px;
        line-height: 1.9;
        word-spacing: 3px;
    }
}

/* =========================================================
   ARTICLES CAROUSEL - FINAL STYLE
========================================================= */

.articles-slider {
    position: relative;
    width: 100%;
    padding: 0 55px;
    box-sizing: border-box;
}

.articles-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
    padding: 5px 2px 20px;
}

.articles-grid::-webkit-scrollbar {
    display: none;
}

.articles-grid .article-card {
    flex: 0 0 calc((100% - 60px) / 4);
    scroll-snap-align: start;
    box-sizing: border-box;
}

.slider-btn {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    z-index: 20;

    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    border: 1px solid rgba(214,168,79,.5);

    background: #0f2034;
    color: var(--gold);

    font-size: 25px;
    line-height: 1;

    cursor: pointer;
    transition: .25s ease;
}

.slider-btn:hover {
    background: var(--gold);
    color: #07111f;
    transform: translateY(-50%) scale(1.08);
}

.slider-prev {
    left: 5px;
}

.slider-next {
    right: 5px;
}

@media (max-width: 1100px) {

    .articles-grid .article-card {
        flex-basis: calc((100% - 20px) / 2);
    }

}

@media (max-width: 600px) {

    .articles-slider {
        padding: 0 5px;
    }

    .articles-grid .article-card {
        flex-basis: 85%;
    }

    .slider-btn {
        display: none;
    }

}

/* FINAL ARTICLES CAROUSEL OVERRIDE */

.articles-slider {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 55px !important;
    box-sizing: border-box !important;
}

.articles-slider .articles-grid {
    display: flex !important;
    width: 100% !important;
    max-width: 100% !important;
    grid-template-columns: none !important;
    grid-auto-columns: unset !important;
    grid-auto-flow: unset !important;
    gap: 20px !important;
    overflow-x: auto !important;
}

.articles-slider .article-card {
    flex: 0 0 calc((100% - 60px) / 4) !important;
    width: calc((100% - 60px) / 4) !important;
    min-width: 0 !important;
    max-width: none !important;
}

@media (max-width: 1100px) {
    .articles-slider .article-card {
        flex: 0 0 calc((100% - 20px) / 2) !important;
        width: calc((100% - 20px) / 2) !important;
    }
}

@media (max-width: 600px) {
    .articles-slider {
        padding: 0 5px !important;
    }

    .articles-slider .article-card {
        flex: 0 0 85% !important;
        width: 85% !important;
    }
}

/* HEADER DROPDOWN - FIX */
.nav-dropdown.open > .dropdown-menu{
    display:block !important;
    opacity:1;
    visibility:visible;
    pointer-events:auto;
}

.nav-dropdown > .dropdown-menu{
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transition:opacity .2s ease, transform .2s ease;
    transform:translateY(-5px);
}

.nav-dropdown.open > .dropdown-menu{
    transform:translateY(0);
}

/* MOBILE MENU - FIX */
.mobile-menu.open{
    display:block !important;
}

@media (max-width:900px){
    .mobile-menu{
        display:none;
    }

    .mobile-menu.open{
        display:block !important;
    }
}


/* FIX HEADER LOGO */
.site-header .header-logo{
    width:140px !important;
    height:60px !important;
    max-width:140px !important;
    max-height:60px !important;
    object-fit:contain !important;
    object-position:center !important;
    display:block !important;
    margin:0 !important;
}

.site-header .logo{
    width:140px !important;
    min-width:140px !important;
    max-width:140px !important;
    height:70px !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    overflow:hidden !important;
}

.site-header .logo img{
    width:140px !important;
    height:60px !important;
    max-width:140px !important;
    max-height:60px !important;
    object-fit:contain !important;
}
