/* 
   === نوین حساب | Professional Financial & Tax Services ===
   Design: Modern Corporate · RTL · Persian
   Primary: #1e3a8a · Accent: #f59e0b (Gold)
   ============================================================
*/

/* ========================================================================
   1. FONT FACES
   ======================================================================== */
@font-face {
    font-family: 'Vazirmatn';
    src: url('../font/Vazirmatn-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

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

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

@font-face {
    font-family: 'Shabnam';
    src: url('../font/shabnam/Shabnam-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Shabnam';
    src: url('../font/shabnam/Shabnam.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

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

@font-face {
    font-family: 'Shabnam';
    src: url('../font/shabnam/Shabnam-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ========================================================================
   2. DESIGN TOKENS
   ======================================================================== */
:root {
    --primary: #1e3a8a;
    --primary-dark: #1e1b4b;
    --primary-light: #dbeafe;
    --accent: #f59e0b;
    --accent-hover: #d97706;
    --accent-light: #fef3c7;
    --bg: #f8fafc;
    --surface: #ffffff;
    --text: #1f2937;
    --text-muted: #4b5563;
    --text-light: #94a3b8;
    --border: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --radius: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --container: 1200px;
    --header-h: 80px;
    --gap-xs: 0.5rem;
    --gap-sm: 1rem;
    --gap-md: 1.5rem;
    --gap-lg: 2rem;
    --gap-xl: 3rem;
    --gap-2xl: 4rem;
}

/* ========================================================================
   3. RESET & BASE
   ======================================================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    direction: rtl;
    font-family: 'Shabnam', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background-color: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: clip;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Vazirmatn', sans-serif;
    font-weight: 700;
    line-height: 1.35;
    color: var(--primary);
    margin-bottom: var(--gap-sm);
}

h1 { font-size: 2.75rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p { margin-bottom: var(--gap-sm); }
p:last-child { margin-bottom: 0; }

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}


img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gap-md);
}

/* ========================================================================
   4. COMPONENTS
   ======================================================================== */

/* ----- Buttons ----- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--gap-xs);
    padding: 0.85rem 2rem;
    border-radius: var(--radius);
    font-family: 'Shabnam', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    outline: none;
    white-space: nowrap;
    user-select: none;
}

.btn--primary {
    background-color: var(--accent);
    color: #1e1b4b;
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.35);
}

.btn--primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.45);
}

.btn--primary:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(245, 158, 11, 0.3);
}

/* ----- Form Inputs ----- */
input, textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-family: 'Shabnam', sans-serif;
    font-size: 1rem;
    color: var(--text);
    background-color: var(--surface);
    transition: all 0.3s ease;
    outline: none;
}

input:focus, textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.12);
}

input::placeholder, textarea::placeholder {
    color: var(--text-light);
}

textarea {
    min-height: 130px;
    resize: vertical;
}

.form__group {
    margin-bottom: var(--gap-md);
}

/* ----- Section Headers ----- */
.section__title {
    font-family: 'Vazirmatn', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: var(--gap-sm);
    text-align: center;
    position: relative;
}

.section__title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    margin: var(--gap-sm) auto 0;
    border-radius: 2px;
}

.section__desc {
    font-size: 1.125rem;
    color: var(--text-muted);
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--gap-xl);
    line-height: 1.8;
}

/* ----- Service Card ----- */
.service-card {
    background-color: var(--surface);
    border-radius: var(--radius-xl);
    padding: var(--gap-lg);
    text-align: center;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent);
}

.service-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: var(--radius-lg);
    background-color: var(--primary-light);
    font-size: 1.75rem;
    margin-bottom: var(--gap-md);
    transition: all 0.3s ease;
}

.service-card:hover .service-card__icon {
    background-color: var(--accent-light);
    transform: scale(1.1);
}

.service-card__title {
    font-family: 'Vazirmatn', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: var(--gap-sm);
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
    padding: 0.6rem 1.25rem;
    font-family: 'Shabnam', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--accent);
    border: 2px solid var(--accent);
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

.service-card__link:hover {
    background-color: var(--accent);
    color: var(--surface);
}

/* ========================================================================
   5. HEADER
   ======================================================================== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.7);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.header__inner {
    min-height: var(--header-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap-md);
}

.logo {
    font-family: 'Vazirmatn', sans-serif;
    font-size: 1.65rem;
    font-weight: 800;
    color: var(--primary);
    white-space: nowrap;
    line-height: 1;
}

.logo span {
    color: var(--accent);
}

.nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav__list {
    display: flex;
    align-items: center;
    gap: var(--gap-lg);
}

.nav__link {
    font-family: 'Shabnam', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text);
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav__link:hover {
    color: var(--primary);
}

.nav__link:hover::after {
    width: 100%;
    left: 0;
    right: auto;
}

.header__actions {
    display: flex;
    align-items: center;
}

.header__actions .btn {
    font-size: 0.9rem;
    padding: 0.6rem 1.25rem;
}

/* ----- Header Contact Dropdown ----- */
.header__contact-dropdown {
    position: relative;
}

.header__contact-trigger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2.5px solid var(--accent);
    background: var(--primary);
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    margin-inline-start: 12px;
    box-shadow: 0 3px 12px rgba(30, 58, 138, 0.3), 0 0 0 4px rgba(245, 158, 11, 0.12);
}

.header__contact-trigger:hover {
    background: var(--primary-dark);
    border-color: var(--accent-hover);
    color: #fff;
    transform: translateY(-3px) scale(1.06);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.4), 0 0 0 6px rgba(245, 158, 11, 0.2);
}

.header__contact-trigger:active {
    transform: translateY(-1px) scale(1.03);
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3), 0 0 0 4px rgba(245, 158, 11, 0.15);
}

.header__contact-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    min-width: 230px;
    background: var(--surface);
    border: 1px solid var(--border, #e2e8f0);
    border-radius: var(--radius);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.04);
    opacity: 0;
    visibility: hidden;
    transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
    padding: 0.4rem 0;
    pointer-events: none;
}

.header__contact-dropdown.is-open .header__contact-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.header__contact-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: var(--surface);
    border-top: 1px solid var(--border, #e2e8f0);
    border-inline-start: 1px solid var(--border, #e2e8f0);
}

.header__contact-item {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.6rem 1rem;
    text-decoration: none;
    color: var(--text);
    font-family: 'Vazirmatn', sans-serif;
    font-size: 0.85rem;
    transition: background 0.2s ease;
    white-space: nowrap;
}

.header__contact-item:hover {
    background: var(--primary-light);
}

.header__contact-item i {
    color: var(--primary);
    font-size: 0.78rem;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.header__contact-label {
    font-weight: 600;
    font-size: 0.78rem;
    color: var(--text-light);
    white-space: nowrap;
}

.header__contact-number {
    font-family: 'Vazirmatn', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--text);
    direction: ltr;
    margin-inline-start: auto;
}



/* ----- Hamburger ----- */
.hamburger {
    display: none;
    width: 44px;
    height: 44px;
    border: none;
    background: transparent;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    z-index: 1002;
    padding: 0;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2.5px;
    background-color: var(--primary);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.hamburger.hamburger--active span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.hamburger.hamburger--active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.hamburger--active span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* ========================================================================
   6. HERO
   ======================================================================== */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 60%, #0f172a 100%);
    color: #fff;
    padding: calc(var(--header-h) + var(--gap-2xl)) 0 var(--gap-2xl);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -20%;
    width: 60%;
    height: 140%;
    background: radial-gradient(ellipse, rgba(245, 158, 11, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 80px;
    background: var(--bg);
    clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 100%);
}

.hero__title {
    font-family: 'Vazirmatn', sans-serif;
    font-size: clamp(1.8rem, 5vw, 3.25rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: var(--gap-md);
    line-height: 1.4;
    position: relative;
    z-index: 1;
}

.hero__title br {
    display: none;
}

@media (min-width: 640px) {
    .hero__title br {
        display: inline;
    }
}

.hero__subtitle {
    font-family: 'Shabnam', sans-serif;
    font-size: 1.15rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.85);
    max-width: 720px;
    margin: 0 auto var(--gap-lg);
    position: relative;
    z-index: 1;
}

.hero__btns {
    display: flex;
    justify-content: center;
    gap: var(--gap-sm);
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.hero__btns .btn--primary {
    padding: 0.9rem 2.5rem;
    font-size: 1.1rem;
}

/* ========================================================================
   7. SERVICES
   ======================================================================== */
.services {
    padding: var(--gap-2xl) 0;
    background-color: var(--bg);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap-lg);
    margin-top: var(--gap-lg);
}

/* ========================================================================
    7.5. ACHIEVEMENTS
    ======================================================================== */
.achievements {
    padding: var(--gap-2xl) 0;
    background-color: #0f172a;
}

.achievements .section__title {
    color: #fff;
}

.achievements .section__title::after {
    background: linear-gradient(90deg, var(--accent), #fff);
}

.achievements .section__desc {
    color: rgba(255, 255, 255, 0.7);
}

.achievements .section__title .text-accent {
    color: var(--accent);
    font-weight: 800;
}

.achievements .text-highlight {
    color: var(--accent);
    font-weight: 700;
}

.achievements__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--gap-lg);
    margin-top: var(--gap-lg);
}

.achievement-card {
    text-align: center;
    padding: var(--gap-lg) var(--gap-md);
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: transform 0.3s ease, background 0.3s ease;
}

.achievement-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.07);
}

.achievement-card__icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(245, 158, 11, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--gap-md);
    font-size: 1.6rem;
    color: var(--accent);
}

.achievement-card__stat {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: 'Vazirmatn', sans-serif;
    color: var(--accent);
    line-height: 1.1;
    margin-bottom: var(--gap-sm);
}

.achievement-card__title {
    font-family: 'Shabnam', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    max-width: 200px;
    margin: 0 auto;
}

/* Tablet landscape */
@media (max-width: 1024px) {
    .achievements__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet portrait */
@media (max-width: 768px) {
    .achievements__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .achievement-card__stat {
        font-size: 2rem;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .achievements__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--gap-md);
    }

    .achievement-card {
        padding: var(--gap-md) var(--gap-sm);
    }

    .achievement-card__icon {
        width: 52px;
        height: 52px;
        font-size: 1.3rem;
    }

    .achievement-card__stat {
        font-size: 1.75rem;
    }

    .achievement-card__title {
        font-size: 0.85rem;
    }
}

/* ========================================================================
    8. ABOUT
    ======================================================================== */
.about {
    padding: var(--gap-2xl) 0;
    background-color: var(--surface);
}

.about__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gap-2xl);
    align-items: center;
}

.about__content .section__title {
    text-align: right;
}

.about__content .section__title::after {
    margin: var(--gap-sm) 0 0;
}

.about__content p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: var(--gap-sm);
}

.about__content ul {
    margin-top: var(--gap-md);
}

.about__content ul li {
    padding: 0.5rem 0;
    font-size: 1rem;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: var(--gap-xs);
}

.about__image-placeholder {
    background-color: var(--bg);
    border-radius: var(--radius-xl);
    padding: var(--gap-2xl) var(--gap-lg);
    border: 2px dashed var(--border);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 320px;
    transition: all 0.3s ease;
}

.about__image-placeholder p {
    font-family: 'Vazirmatn', sans-serif;
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: var(--gap-xs);
}

.about__image-placeholder small {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ========================================================================
   9. CONTACT
   ======================================================================== */
.contact {
    padding: var(--gap-2xl) 0;
    background-color: var(--bg);
}

.contact__form {
    background-color: var(--surface);
    border-radius: var(--radius-xl);
    padding: var(--gap-xl);
    box-shadow: var(--shadow-lg);
    max-width: 600px;
    margin: 0 auto;
}

.contact__form .btn--primary {
    width: 100%;
    padding: 0.9rem;
    font-size: 1.05rem;
}

/* ========================================================================
   10. FOOTER
   ======================================================================== */
.footer {
    background-color: #0f172a;
    color: var(--text-light);
    padding: var(--gap-xl) 0;
}

.footer__inner {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: var(--gap-xs);
    text-align: center;
}

.footer__inner p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.footer__inner strong {
    color: #fff;
}

/* ========================================================================
    11. SERVICES PAGE
    ======================================================================== */
.services-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 60%, #0f172a 100%);
    color: #fff;
    padding: calc(var(--header-h) + 6rem) 0 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.services-hero__title {
    font-family: 'Vazirmatn', sans-serif;
    font-size: 2.25rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.25;
    margin-bottom: var(--gap-md);
}

@media (min-width: 768px) {
    .services-hero__title {
        font-size: 3.75rem;
    }
}

.services-hero__title .text-accent {
    color: var(--accent);
}

.services-hero__subtitle {
    font-size: 1.25rem;
    color: #e5e7eb;
    max-width: 672px;
    margin: var(--gap-sm) auto 0;
    line-height: 1.8;
}

.services-page {
    padding: var(--gap-2xl) 0;
    background-color: var(--bg);
}

.services-page__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap-lg);
    margin-top: var(--gap-lg);
}

.premium-service {
    background-color: var(--surface);
    border-radius: var(--radius-xl);
    padding: var(--gap-xl) var(--gap-lg);
    text-align: center;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeInUp 0.5s ease-out forwards;
    opacity: 0;
}

.premium-service:nth-child(1) { animation-delay: 0.05s; }
.premium-service:nth-child(2) { animation-delay: 0.12s; }
.premium-service:nth-child(3) { animation-delay: 0.19s; }
.premium-service:nth-child(4) { animation-delay: 0.26s; }
.premium-service:nth-child(5) { animation-delay: 0.33s; }
.premium-service:nth-child(6) { animation-delay: 0.40s; }

.premium-service:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border-color: var(--accent);
}

.premium-service__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background-color: var(--accent-light);
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: var(--gap-md);
    transition: all 0.3s ease;
}

.premium-service:hover .premium-service__icon {
    background-color: var(--primary-light);
    color: var(--primary);
    transform: scale(1.1) rotate(-5deg);
}

.premium-service__title {
    font-family: 'Vazirmatn', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: var(--gap-sm);
}

.premium-service p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: var(--gap-md);
    flex: 1;
}

.premium-service .btn {
    margin-top: auto;
}

.text-white {
    color: #fff;
}

/* ========================================================================
    12. RESPONSIVE
    ======================================================================== */

/* Tablet landscape / small desktop */
@media (max-width: 1024px) {
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .services-hero__title {
        font-size: 2.25rem;
    }

    .about__inner {
        gap: var(--gap-xl);
    }
}

/* Tablet portrait */
@media (max-width: 768px) {
    :root {
        --header-h: 70px;
        --gap-2xl: 3rem;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }

    .container {
        padding: 0 var(--gap-sm);
    }

    /* ---- Header ---- */
    .header__inner {
        min-height: var(--header-h);
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--surface);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1001;
        box-shadow: var(--shadow-xl);
    }

    .nav.nav--open {
        right: 0;
    }

    .nav__list {
        flex-direction: column;
        gap: var(--gap-lg);
        align-items: center;
    }

    .nav__link {
        font-size: 1.2rem;
        padding: var(--gap-sm) 0;
    }

    .nav__link::after {
        display: none;
    }

    .header__contact-trigger {
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
        margin-inline-start: 8px;
    }

    .header__contact-menu {
        min-width: 210px;
        right: 0;
        left: auto;
        transform: translateY(-6px);
    }

    .header__contact-dropdown.is-open .header__contact-menu {
        transform: translateY(0);
    }

    .header__contact-menu::before {
        left: auto;
        right: 18px;
        transform: rotate(45deg);
    }

    .hamburger {
        display: flex;
    }

    .header__actions {
        display: none;
    }

    /* ---- Hero ---- */
    .hero {
        padding: calc(var(--header-h) + var(--gap-xl)) 0 var(--gap-xl);
    }

    .hero__subtitle {
        font-size: 1rem;
    }

    /* ---- About ---- */
    .about__inner {
        grid-template-columns: 1fr;
        gap: var(--gap-xl);
    }

    .about__content .section__title {
        text-align: center;
    }

    .about__content .section__title::after {
        margin: var(--gap-sm) auto 0;
    }

    .about__image-placeholder {
        min-height: 240px;
    }

    /* ---- About Premium ---- */
    .about-premium {
        padding: 50px 0;
    }

    .about-premium__grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-premium__content {
        order: 1;
        overflow-wrap: break-word;
        word-wrap: break-word;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }

    .about-premium__media {
        order: 2;
        width: 100%;
        max-width: 100%;
    }

    .about-premium__header {
        margin-bottom: 36px;
    }

    .about-premium__header h2 {
        font-size: 1.6rem;
    }

    .about-premium__content .about-premium__lead {
        font-size: 1rem;
        line-height: 1.8;
    }

    .btn--premium-cta {
        width: 100%;
        justify-content: center;
    }

    #aboutSlider,
    .slider__track,
    .slider__slide {
        width: 100% !important;
        max-width: 100% !important;
    }

    .slider {
        width: 100%;
        max-width: 100%;
        aspect-ratio: 4 / 3;
    }

    .slider__slide img {
        border-radius: 20px;
        object-fit: cover;
        height: auto;
    }

    .slider__badge {
        bottom: 16px;
        right: 12px;
        left: auto;
        padding: 8px 12px;
        gap: 6px;
        border-radius: 10px;
        max-width: calc(100% - 24px);
    }

    .slider__badge-icon {
        width: 26px;
        height: 26px;
        font-size: 0.7rem;
        border-radius: 8px;
    }

    .slider__badge-text .badge-number {
        font-size: 0.75rem;
    }

    .slider__badge-text .badge-label {
        font-size: 0.55rem;
    }

    /* ---- Services ---- */
    .services__grid {
        grid-template-columns: 1fr;
        gap: var(--gap-md);
    }

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

    .services-hero {
        padding: calc(var(--header-h) + 3rem) 0 3rem;
    }

    .services-hero__title {
        font-size: 2rem;
    }

    .services-hero__subtitle {
        font-size: 1rem;
    }

    /* ---- Footer ---- */
    .footer__inner p {
        font-size: 0.9rem;
    }
}

/* Tablet portrait — header__actions visible with hamburger */
@media (max-width: 768px) and (min-width: 481px) {
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 480px) {
    :root {
        --gap-2xl: 2.5rem;
    }

    h1 { font-size: 1.65rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }

    .hero {
        padding: calc(var(--header-h) + var(--gap-lg)) 0 var(--gap-lg);
    }

    .hero__title {
        font-size: 1.65rem;
    }

    .hero__subtitle {
        font-size: 0.95rem;
    }

    .hero__btns .btn--primary {
        padding: 0.8rem 2rem;
        font-size: 1rem;
        width: 100%;
    }

    .section__title {
        font-size: 1.5rem;
    }

    .section__desc {
        font-size: 1rem;
    }

    .contact__form {
        padding: var(--gap-lg);
    }

    .service-card {
        padding: var(--gap-md);
    }

    .footer {
        padding: var(--gap-lg) 0;
    }
}

/* Extra small phones */
@media (max-width: 360px) {
    :root {
        --gap-2xl: 2rem;
        --gap-xl: 1.5rem;
    }

    h1 { font-size: 1.4rem; }
    h2 { font-size: 1.3rem; }
    h3 { font-size: 1.1rem; }

    .about-premium__grid {
        gap: 1.5rem;
    }

    .container {
        padding: 0 0.75rem;
    }

    .hero__title {
        font-size: 1.4rem;
    }

    .section__title {
        font-size: 1.3rem;
    }

    .services-hero__title {
        font-size: 1.5rem;
    }

    .service-detail-hero__title {
        font-size: 1.4rem;
    }

    .about-premium__header h2 {
        font-size: 1.45rem;
    }

    .slider__badge {
        bottom: 10px;
        right: 8px;
        left: auto;
        padding: 5px 8px;
        gap: 4px;
        border-radius: 6px;
        max-width: calc(100% - 16px);
    }
    .slider__badge-icon {
        width: 18px;
        height: 18px;
        font-size: 0.5rem;
        border-radius: 4px;
    }
    .slider__badge-text .badge-number {
        font-size: 0.55rem;
    }
    .slider__badge-text .badge-label {
        font-size: 0.45rem;
    }

    .footer {
        padding: var(--gap-md) 0;
    }
}

/* ========================================================================
    13. ANIMATIONS
    ======================================================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.service-card {
    animation: fadeInUp 0.5s ease-out forwards;
    opacity: 0;
}

.service-card:nth-child(1) { animation-delay: 0.05s; }
.service-card:nth-child(2) { animation-delay: 0.15s; }
.service-card:nth-child(3) { animation-delay: 0.25s; }

/* ========================================================================
    14. UTILITY
    ======================================================================== */
.btn--primary,
.service-card,
.about__image-placeholder {
    will-change: transform;
}

/* ========================================================================
    15. FLOATING CONTACT WIDGET (FAB)
    ======================================================================== */

/* Pulse animation for the toggle button */
@keyframes fab-pulse {
    0% {
        box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(245, 158, 11, 0.7), 0 0 0 10px rgba(245, 158, 11, 0.08);
        transform: scale(1.05);
    }
    100% {
        box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
    }
}

.fab {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.fab__toggle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: var(--accent);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
    animation: fab-pulse 2s ease-in-out infinite;
}

.fab__toggle:hover {
    background-color: var(--accent-hover);
    transform: scale(1.06);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
}

.fab__toggle:active {
    transform: scale(0.95);
}

.fab__toggle .fa-xmark {
    display: none;
    font-size: 1.5rem;
}

.fab--active .fab__toggle .fa-phone {
    display: none;
}

.fab--active .fab__toggle .fa-xmark {
    display: inline-flex;
}

.fab--active .fab__toggle {
    animation: none;
    background-color: var(--primary);
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.4);
}

/* ─── Popup Card ─── */
.fab__menu {
    position: absolute;
    bottom: 68px;
    left: 0;
    width: 280px;
    background: var(--surface);
    border-radius: 16px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.18);
    overflow: hidden;
    opacity: 0;
    transform: translateY(12px) scale(0.92);
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: bottom right;
}

.fab--active .fab__menu {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

/* ─── Header ─── */
.fab__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    background: linear-gradient(135deg, #0f172a, #1e3a8a);
    color: #fff;
}

.fab__title {
    font-family: 'Shabnam', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    opacity: 0.92;
}

.fab__close {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: background 0.2s ease;
    flex-shrink: 0;
}

.fab__close:hover {
    background: rgba(255, 255, 255, 0.22);
}

.fab__close:active {
    transform: scale(0.9);
}

/* ─── Body ─── */
.fab__body {
    display: flex;
    flex-direction: column;
}

/* ─── Group (Phone / WhatsApp) ─── */
.fab__group {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid var(--border);
}

.fab__group:last-child {
    border-bottom: none;
}

.fab__group-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Shabnam', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
    text-align: right;
    width: 100%;
    transition: background 0.2s ease;
}

.fab__group-toggle:hover {
    background-color: #f8fafc;
}

.fab__group-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    flex-shrink: 0;
    font-size: 1rem;
}

.fab__group-icon--phone {
    background-color: #eff6ff;
    color: var(--primary);
}

.fab__group-icon--whatsapp {
    background-color: #f0fdf4;
    color: #25D366;
}

.fab__group-label {
    flex: 1;
    text-align: right;
}

.fab__group-arrow {
    font-size: 0.75rem;
    color: var(--text-light);
    transition: transform 0.3s ease;
}

.fab__group--expanded .fab__group-arrow {
    transform: rotate(180deg);
}

/* ─── Submenu ─── */
.fab__submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 18px;
}

.fab__group--expanded .fab__submenu {
    max-height: 200px;
    padding: 0 18px 10px;
}

.fab__sub-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    border-radius: 8px;
    text-decoration: none;
    color: var(--text);
    transition: background 0.2s ease;
    gap: 8px;
}

.fab__sub-item:hover {
    background-color: #f1f5f9;
}

.fab__sub-item:active {
    background-color: #e2e8f0;
}

.fab__sub-item + .fab__sub-item {
    margin-top: 2px;
}

.fab__sub-item-text {
    font-family: 'Shabnam', sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-muted);
}

.fab__sub-item-number {
    font-family: 'Vazirmatn', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text);
    direction: ltr;
}

/* Mobile adjustments */
@media (max-width: 480px) {
    .fab {
        bottom: 16px;
        left: 16px;
    }

    .fab__toggle {
        width: 48px;
        height: 48px;
        font-size: 1.15rem;
    }

    .fab__menu {
        bottom: 60px;
        width: calc(100vw - 32px);
        max-width: 280px;
    }

    .fab__header {
        padding: 12px 16px;
    }

    .fab__title {
        font-size: 0.8rem;
    }

    .fab__group-toggle {
        padding: 12px 16px;
        font-size: 0.85rem;
    }

    .fab__group-icon {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }

    .fab__submenu {
        padding: 0 16px;
    }

    .fab__group--expanded .fab__submenu {
        padding: 0 16px 8px;
    }

    .fab__sub-item {
        padding: 6px 10px;
    }
}

/* ========================================================================
    16. TOAST NOTIFICATION
    ======================================================================== */
.toast {
    position: fixed;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    max-width: 480px;
    width: 90vw;
    background: #1f2937;
    color: #fff;
    padding: 16px 24px 16px 24px;
    border-radius: 16px;
    font-family: 'Shabnam', sans-serif;
    font-size: 0.92rem;
    font-weight: 500;
    line-height: 1.7;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.18), 0 2px 8px rgba(0, 0, 0, 0.06);
    z-index: 99999;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    direction: rtl;
    text-align: right;
    overflow: hidden;
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.toast--success {
    background: linear-gradient(135deg, #065f46, #047857);
    border-inline-start: 4px solid var(--accent);
    box-shadow: 0 10px 40px rgba(4, 120, 87, 0.25), 0 2px 8px rgba(0, 0, 0, 0.06);
}

.toast--error {
    background: linear-gradient(135deg, #991b1b, #b91c1c);
    border-inline-start: 4px solid #fca5a5;
    box-shadow: 0 10px 40px rgba(185, 28, 28, 0.25), 0 2px 8px rgba(0, 0, 0, 0.06);
}

.toast__icon {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.1rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
}

.toast__message {
    display: inline;
    padding-right: 44px;
}

.toast__close {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.3rem;
    cursor: pointer;
    padding: 4px 8px;
    line-height: 1;
    transition: color 0.2s ease;
}

.toast__close:hover {
    color: #fff;
}

.toast__progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.15);
    overflow: hidden;
}

.toast__progress-bar {
    display: block;
    height: 100%;
    width: 100%;
    background: rgba(255, 255, 255, 0.5);
    transform-origin: right;
    animation: toast-progress-shrink linear forwards;
}

@keyframes toast-progress-shrink {
    from { transform: scaleX(1); }
    to { transform: scaleX(0); }
}

/* ========================================================================
    17. BREADCRUMB
    ======================================================================== */
.breadcrumb {
    background-color: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
}

.breadcrumb__list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.breadcrumb__item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.breadcrumb__item + .breadcrumb__item::before {
    content: '/';
    color: var(--text-light);
    font-size: 0.8rem;
}

.breadcrumb__link {
    color: var(--text-muted);
    transition: color 0.2s ease;
}

.breadcrumb__link:hover {
    color: var(--accent);
}

.breadcrumb__current {
    color: var(--text);
    font-weight: 600;
}

/* ========================================================================
    18. SERVICE DETAIL PAGE
    ======================================================================== */
.service-detail-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 60%, #0f172a 100%);
    color: #fff;
    padding: calc(var(--header-h) + 4rem) 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-detail-hero__title {
    font-family: 'Vazirmatn', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.75rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: var(--gap-sm);
    line-height: 1.25;
}

.service-detail-hero__subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 640px;
    margin: var(--gap-sm) auto 0;
    line-height: 1.8;
}

.service-detail {
    padding: var(--gap-2xl) 0;
    background-color: var(--bg);
}

.service-detail__grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: var(--gap-xl);
    align-items: start;
}

.service-detail__main p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 2;
    margin-bottom: var(--gap-lg);
}

/* ---- Check List (خدمات شامل) ---- */
.check-list {
    margin-bottom: var(--gap-xl);
}

.check-list__title {
    font-family: 'Vazirmatn', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: var(--gap-md);
    position: relative;
    padding-right: 0;
}

.check-list__title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    margin-top: 8px;
    border-radius: 2px;
}

.check-list ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.7;
}

.check-list li svg {
    flex-shrink: 0;
    margin-top: 3px;
}

/* ---- CTA Box ---- */
.cta-box {
    background: linear-gradient(135deg, #0f172a, var(--primary));
    border-radius: var(--radius-xl);
    padding: var(--gap-xl);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.cta-box p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: var(--gap-md);
}

.cta-box .btn {
    font-size: 1rem;
    padding: 0.9rem 2.5rem;
}

/* ---- Sidebar ---- */
.service-detail__sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--gap-lg);
}

.sidebar-card {
    background-color: var(--surface);
    border-radius: var(--radius-xl);
    padding: var(--gap-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
}

.sidebar-card__title {
    font-family: 'Vazirmatn', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: var(--gap-md);
    position: relative;
    padding-bottom: 10px;
}

.sidebar-card__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}

/* ---- Other Services List ---- */
.other-services-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.other-services-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: var(--radius);
    font-size: 0.9rem;
    color: var(--text);
    transition: all 0.25s ease;
    text-decoration: none;
}

.other-services-list a:hover {
    background-color: var(--primary-light);
    color: var(--primary);
    transform: translateX(-4px);
}

.other-services-list a i {
    color: var(--accent);
    font-size: 0.75rem;
    flex-shrink: 0;
}

.other-services-list a.active {
    background-color: var(--primary-light);
    color: var(--primary);
    font-weight: 600;
}

/* ---- Quick Contact Form (Sidebar) ---- */
.quick-contact-form .form__group {
    margin-bottom: var(--gap-sm);
}

.quick-contact-form input,
.quick-contact-form textarea {
    padding: 0.7rem 0.9rem;
    font-size: 0.9rem;
}

.quick-contact-form textarea {
    min-height: 80px;
}

.quick-contact-form .btn {
    width: 100%;
    padding: 0.75rem;
    font-size: 0.9rem;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .service-detail__grid {
        grid-template-columns: 1fr 280px;
        gap: var(--gap-lg);
    }
}

@media (max-width: 768px) {
    .service-detail-hero {
        padding: calc(var(--header-h) + 2.5rem) 0 2.5rem;
    }

    .service-detail__grid {
        grid-template-columns: 1fr;
    }

    .service-detail__sidebar {
        order: -1;
    }

    .cta-box {
        padding: var(--gap-lg);
    }

    .cta-box p {
        font-size: 0.95rem;
    }

    .check-list li {
        font-size: 0.9rem;
    }
}
/* استایل‌های بخش هیرو مدرن */
.hero-modern {
    padding: 80px 0;
    background-color: #f8fafc; /* تم روشن و تمیز */
}

.hero__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero__text {
    flex: 1;
}

.hero__image-container {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero__team-img {
    width: 100%;
    max-width: 550px;
    border-radius: 20px; /* لبه‌های گرد */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15); /* سایه عمیق برای عمق دادن */
    border: 5px solid #ffffff; /* حاشیه سفید برای برجستگی */
    object-fit: cover;
}

.hero__title {
    font-size: 2.5rem;
    color: #1e293b; /* سرمه‌ای تیره برای کنتراست */
    line-height: 1.4;
    margin-bottom: 20px;
}

.hero__subtitle {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero__btns {
    display: flex;
    gap: 15px;
}

/* دکمه ثانویه */
.btn--outline {
    padding: 12px 25px;
    border: 2px solid #003366;
    color: #003366;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
}

.btn--outline:hover {
    background-color: #003366;
    color: #fff;
}

/* واکنش‌گرایی برای موبایل */
@media (max-width: 992px) {
    .hero__wrapper {
        flex-direction: column;
        text-align: center;
    }
    .hero__btns {
        justify-content: center;
    }
    .hero__title {
        font-size: 1.8rem;
    }
}

/* ========================================================================
    19. PREMIUM ABOUT US SECTION
    ======================================================================== */
.about-premium {
    padding: 90px 0;
    background: #ffffff;
    position: relative;
}

.about-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.3), transparent);
}

.about-premium__header {
    text-align: center;
    margin-bottom: 60px;
}

.about-premium__header h2 {
    font-family: 'Vazirmatn', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: #1e3a8a;
    margin-bottom: 14px;
    line-height: 1.35;
    letter-spacing: -0.02em;
}

.about-premium__header-sub {
    font-size: 1.05rem;
    color: #64748b;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.8;
}

.about-premium__divider {
    width: 64px;
    height: 3.5px;
    background: linear-gradient(90deg, #f59e0b, #d97706);
    border-radius: 3px;
    margin: 18px auto 0;
}

.about-premium__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-premium__content {
    text-align: right;
}

.about-premium__content .about-premium__subtitle {
    font-family: 'Vazirmatn', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 24px;
    line-height: 1.5;
}

.text-brand-novin {
    color: #3b82f6;
}

.text-brand-hesab {
    color: #f59e0b;
}

.text-location {
    color: #f59e0b;
    font-weight: 700;
}

.about-premium__location-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fef3c7;
    color: #92400e;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 6px 16px 6px 12px;
    border-radius: 100px;
    margin-bottom: 28px;
    border: 1px solid #fde68a;
}

.about-premium__location-badge i {
    color: #f59e0b;
    font-size: 0.8rem;
}

.about-premium__content .about-premium__lead {
    font-size: 1.1rem;
    font-weight: 400;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 24px;
}

.about-premium__features {
    margin: 24px 0 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.about-premium__features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: #334155;
    line-height: 1.6;
}

.about-premium__features li .feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #fef3c7;
    color: #f59e0b;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.btn--premium-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: linear-gradient(135deg, #1e3a8a, #1e1b4b);
    color: #fff;
    font-family: 'Shabnam', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(30, 58, 138, 0.25);
    text-decoration: none;
}

.btn--premium-cta:hover {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(245, 158, 11, 0.35);
}

.btn--premium-cta i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.btn--premium-cta:hover i {
    transform: translateX(-4px);
}

.about-premium__media {
    position: relative;
}

/* --- Floating Badge on Slider --- */
.slider__badge {
    position: absolute;
    bottom: 70px;
    left: 16px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(226, 232, 240, 0.6);
    direction: rtl;
}

.slider__badge-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, #1e3a8a, #1e1b4b);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f59e0b;
    font-size: 1rem;
    flex-shrink: 0;
}

.slider__badge-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.slider__badge-text .badge-number {
    font-family: 'Vazirmatn', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    color: #1e3a8a;
}

.slider__badge-text .badge-label {
    font-size: 0.7rem;
    font-weight: 500;
    color: #64748b;
}

@media (max-width: 480px) {
    .slider__badge {
        bottom: 12px;
        right: 10px;
        left: auto;
        padding: 6px 10px;
        gap: 5px;
        border-radius: 8px;
        max-width: calc(100% - 20px);
    }
    .slider__badge-icon {
        width: 22px;
        height: 22px;
        font-size: 0.6rem;
        border-radius: 6px;
    }
    .slider__badge-text .badge-number {
        font-size: 0.65rem;
    }
    .slider__badge-text .badge-label {
        font-size: 0.5rem;
    }
}

/* --- ABOUT SLIDER PREMIUM STYLES (FIXED) --- */
.slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  border-radius: 20px;
  /* نسبت ابعاد 4:3 دقیقاً هماهنگ با عکس‌های 600x450 شما برای جلوگیری از زوم شدن */
  aspect-ratio: 4 / 3; 
  background-color: #f3f4f6;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.slider__track {
  display: flex;
  height: 100%;
  /* تغییر جهت به LTR فقط برای ترکِ اسلایدر جهت حل مشکل حرکت در سایت‌های فارسی */
  direction: ltr !important; 
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.slider__slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
}

.slider__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* عکس کادر را کاملاً پر می‌کند بدون دفرمه شدن */
  display: block;
}

/* استایل دات‌ها (RTL نگه داشتن دات‌ها بیرون از ترک اسلایدر) */
.slider__dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.slider__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
  position: relative;
}

.slider__dot::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.slider__dot.active {
  background: #f59e0b;
  width: 24px;
  border-radius: 6px;
}

/* =====================================================
   MOBILE OVERRIDE: About Premium (fix source order bug)
   ===================================================== */
@media (max-width: 768px) {
  #about,
  .about-premium__grid {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    gap: 1.25rem !important;
    grid-template-columns: 1fr !important;
  }

  .header__inner {
    padding-inline: 1.5rem !important;
  }

  .about-premium__text,
  .about-premium__content {
    width: 100% !important;
    padding-inline: 1rem !important;
    box-sizing: border-box !important;
  }

  #aboutSlider,
  .slider__track,
  .slider__slide {
    width: 100% !important;
    max-width: 100% !important;
  }

  .slider__slide img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    object-fit: cover !important;
    aspect-ratio: 4 / 3 !important;
    display: block !important;
  }

  .slider__badge {
    font-size: 0.72rem !important;
    padding: 0.35rem 0.55rem !important;
    bottom: 1.5rem !important;
    right: 1.5rem !important;
    left: auto !important;
    max-width: calc(100% - 1.5rem) !important;
    gap: 0.35rem !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18) !important;
  }

  .slider__badge-icon {
    width: 22px !important;
    height: 22px !important;
    font-size: 0.55rem !important;
  }

  .slider__badge-text .badge-number {
    font-size: 0.7rem !important;
  }

  .slider__badge-text .badge-label {
    font-size: 0.5rem !important;
  }

  .floating-call-button,
  a[href^="tel:"] {
    left: 1rem !important;
    bottom: 2rem !important;
    transform: none !important;
    z-index: 50 !important;
  }

  body {
    overflow-x: hidden !important;
  }
}
/* تنظیمات کلی بخش درباره ما */
.about-section {
    line-height: 1.8; /* برای تنفس متن و خوانایی بیشتر */
    color: #334155; /* یک خاکستری تیره استاندارد و شیک */
    font-size: 1.1rem;
}

/* تیتر برند: نوین (آبی) + حساب (نارنجی) */
.brand-heading {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.brand-novin {
    color: #3b82f6; /* رنگ آبی روشن (Light Blue) */
}

.brand-hesab {
    color: #f59e0b; /* رنگ نارنجی (Orange) */
}

/* متن پاراگراف‌ها: حذف بولدهای اضافی */
.about-paragraph {
    font-weight: 400; /* وزن معمولی و استاندارد */
    margin-bottom: 1.5rem; /* فاصله بین پاراگراف‌ها برای جلوگیری از شلوغی */
    text-align: justify; /* تراز کردن متن برای ظاهر مرتب‌تر */
}

/* مدیریت بولدهای کلیدی (فقط موارد خیلی مهم) */
.about-paragraph strong {
    font-weight: 600; /* وزن نیمه‌بولد (به جای بولد غلیظ) */
    color: #1e293b; /* رنگ کمی تیره‌تر برای تفکیک */
}

/* کارت موقعیت (استان گیلان) */
.location-badge {
    display: inline-flex;
    align-items: center;
    background-color: #eff6ff; /* آبی بسیار ملایم */
    padding: 0.5rem 1rem;
    border-radius: 9999px; /* شکل قرصی */
    font-size: 0.9rem;
    color: #2563eb;
    margin-bottom: 1rem;
}


