/* Nashr Hero + Features */

.nashr-hero {
    background: transparent;
    padding: 28px 0 0;
    direction: rtl;
}

.nashr-hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
    padding: 18px 0 0;
}

.nashr-hero-media {
    flex: 0 0 auto;
    width: min(360px, 42vw);
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: relative;
}

.nashr-hero-media .hero-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 26px;
    padding: var(--nashr-hero-img-outline, 12px);
}

.nashr-hero-content {
    flex: 1 1 auto;
}

.nashr-hero-title {
    margin: 0 0 10px;
    font-size: 26px;
    font-weight: 900;
    line-height: 1.9;
    color: var(--nashr-hero-title, var(--color-material-theme-sys-light-on-surface, #1f1a16));
}

.nashr-hero-desc {
    margin: 0 0 16px;
    font-size: 14px;
    line-height: 2.1;
    color: var(--nashr-hero-text, rgba(31, 26, 22, 0.75));
    max-width: 720px;
}

.nashr-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: var(--nashr-hero-btn-bg, var(--color-material-theme-sys-light-primary, #766152));
    color: var(--nashr-hero-btn-color, #fff);
    border-radius: 14px;
    padding: 12px 22px;
    font-weight: 800;
    font-size: 13px;
    box-shadow: 0 10px 22px rgba(118, 97, 82, 0.25);
}

.nashr-hero-btn:hover { opacity: .92; }

/* optional decorations images */
.nashr-hero-deco {
    position: absolute;
    pointer-events: none;
    opacity: .95;
}
.nashr-hero-deco.deco1 { top: -12px; right: -18px; width: 86px; }
.nashr-hero-deco.deco2 { top: 20px; left: -22px; width: 64px; }
.nashr-hero-deco.deco3 { bottom: 0px; right: 10px; width: 56px; }

/* features bar */
.nashr-hero-features {
    background: var(--nashr-features-bg, var(--color-material-theme-sys-light-primary, #766152));
    border-radius: 18px;
    padding: 16px 0;
    margin: 0 16px;
}

.nashr-hero-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    align-items: center;
}

.nashr-feature-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: var(--nashr-features-color, #fff);
    text-align: center;
    flex-direction: column;
}

.nashr-feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.08);
    color: inherit;
}
.nashr-feature-icon svg { width: 22px; height: 22px; }

.nashr-feature-text {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.6;
    font-family: IRANSansXFaNum;
}

/* Responsive */
@media (max-width: 1024px){
    .nashr-hero-inner { gap: 22px; }
    .nashr-hero-media { width: min(320px, 46vw); }
}

@media (max-width: 768px){
    .nashr-hero-inner{
        flex-direction: column;
        align-items: stretch;
        text-align: right;
    }
    .nashr-hero-media{ width: min(320px, 85vw); margin: 0 auto; }
    .nashr-hero-title{ font-size: 22px; }
    .nashr-hero-features-grid{ grid-template-columns: repeat(2, 1fr); }
    .nashr-feature-item{ justify-content: flex-start; }
}
