/* ============================================
   سبک عمومی RTL – تم روشن صنعتی
   برای: fa, ar
   فایل: css/style-rtl.css
   ============================================ */

/* ================= ریست ساده ================= */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

/* مرورگرهای جدید: clip بهجای hidden تا sticky سالم بماند */
@supports (overflow: clip) {
    html, body {
        overflow-x: clip;
    }
}

body {
    font-family: "Vazirmatn", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background-color: #f4f6f9;
    color: #222;
    line-height: 1.7;
    direction: rtl;
    text-align: right;
}

/* ================= متغیرهای رنگ – تم روشن صنعتی ================= */
:root {
    --color-bg: #f4f6f9;
    --color-surface: #ffffff;
    --color-surface-soft: #f8fafc;
    --color-border: #d5dce5;
    --color-text-main: #222222;
    --color-text-muted: #6b7280;

    --color-primary: #1f4f82;      /* آبی صنعتی */
    --color-primary-soft: #e0edf7;
    --color-primary-hover: #163a62;

    --color-accent: #e67e22;       /* نارنجی برای تأکید */
    --color-danger: #e53935;

    --shadow-soft: 0 8px 24px rgba(15, 23, 42, 0.08);
    --radius-lg: 16px;
    --radius-md: 12px;
    --radius-sm: 8px;
}

/* لایه محافظ – اگر protection.js فعال است */
.protection-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none; /* اگر می‌خواهید کاملاً فعال شود، این را بردارید */
}

/* ================= ناوبری بالا – چسبان (sticky) ================= */
.navigation {
    position: sticky !important;   /* ↜ همیشه بالای صفحه می‌ماند */
    top: 0 !important;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(148, 163, 184, 0.25);
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

/* سایه ملایم وقتی صفحه اسکرول شده */
.navigation.nav-scrolled {
    border-bottom-color: rgba(148, 163, 184, 0.45);
    box-shadow: 0 6px 22px rgba(15, 23, 42, 0.10);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    min-height: 64px;
    position: relative;
}

/* برند */
.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}

.brand-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 8px;
}

.brand-text-group {
    display: flex;
    flex-direction: column;
    white-space: nowrap;
}

.brand-name {
    font-weight: 700;
    letter-spacing: 0.03em;
    color: var(--color-primary);
    font-size: 0.95rem;
}

.brand-tagline {
    font-size: 0.78rem;
    color: var(--color-text-muted);
}

/* منو اصلی */
.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    flex: 1 1 auto;
    min-width: 0;
    padding: 0;
    margin: 0;
}

.nav-links li {
    flex: 0 0 auto;
}

.nav-link {
    text-decoration: none;
    color: var(--color-text-main);
    font-size: 0.92rem;
    padding: 8px 10px;
    border-radius: 999px;
    transition: background-color 0.2s ease, color 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.nav-link:hover {
    background-color: var(--color-primary-soft);
    color: var(--color-primary);
}

.nav-active,
.nav-link--current {
    background-color: var(--color-primary);
    color: #ffffff !important;
    font-weight: 600;
}

/* منوی موبایل */
.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.4rem;
    border: none;
    background: transparent;
    color: var(--color-primary);
}

/* ================= Hero نوین مشترک ================= */
.hero-banner {
    position: relative;
    width: 100%;
    min-height: 78vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(
        90deg,
        rgba(7, 20, 35, 0.58) 0%,
        rgba(7, 20, 35, 0.68) 55%,
        rgba(7, 20, 35, 0.80) 100%
    );
}

.hero-banner-content {
    position: relative;
    z-index: 2;
    width: min(1100px, 92%);
    margin: 0 auto;
    padding: 80px 0;
    color: #ffffff;
    text-align: right;
}

.home-hero {
    min-height: 78vh;
}

.hero-highlight {
    display: inline-block;
    margin-bottom: 20px;
    padding: 0.8rem 1.1rem;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 12px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.hero-banner h1 {
    max-width: 850px;
    margin-bottom: 22px;
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.45;
    text-shadow:
        0 3px 12px rgba(0, 0, 0, 0.78),
        0 1px 2px rgba(0, 0, 0, 0.9);
}

.hero-banner p {
    max-width: 780px;
    margin-bottom: 30px;
    color: #ffffff;
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    line-height: 2;
    text-shadow:
        0 2px 8px rgba(0, 0, 0, 0.75),
        0 1px 2px rgba(0, 0, 0, 0.9);
}

.hero-banner .hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-top: 8px;
}

/* دکمه‌های هیرو */
.btn-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 24px;
    border: 2px solid transparent;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.4;
    text-decoration: none;
    cursor: pointer;
    transition:
        background-color 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.btn-hero-primary {
    color: #163a62;
    background-color: #ffffff;
    border-color: #ffffff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-hero-primary:hover {
    color: #ffffff;
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.btn-hero-secondary {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.btn-hero-secondary:hover {
    color: #163a62;
    background-color: #ffffff;
    border-color: #ffffff;
    transform: translateY(-2px);
}

/* ================= Hero عمومی (دو ستونه) ================= */
.hero {
    max-width: 1200px;
    margin: 24px auto 32px;
    padding: 0 24px;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 32px;
    align-items: center;
}

.hero-media {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    background: linear-gradient(135deg, #e5ebf5, #f9fafb);
}

.hero-image {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    display: block;
}

.hero-overlay-badge {
    position: absolute;
    bottom: 18px;
    left: 18px;
    right: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between;
    padding: 10px 14px;
    background: rgba(15, 23, 42, 0.80);
    color: #f9fafb;
    border-radius: 999px;
    font-size: 0.8rem;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: relative;
    z-index: 5;
}

.hero-title {
    font-size: 2.2rem;
    margin-bottom: 16px;
    color: var(--color-primary);
    letter-spacing: 0.02em;
}

.hero-title-sub {
    display: block;
    font-size: 1rem;
    color: var(--color-text-muted);
    margin-top: 6px;
}

.hero-subtitle {
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 24px;
    color: var(--color-text-muted);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 4px;
}

/* ================= Hero fullwidth ================= */
.hero.hero--fullwidth {
    position: relative;
    width: 100%;
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 2;
}

.hero-content--overlay {
    position: relative;
    z-index: 5;
    max-width: 960px;
    padding: 32px 16px;
    color: #ffffff;
    text-align: center;
}

.hero-content--overlay .hero-title {
    font-size: 2.2rem;
    margin-bottom: 16px;
    color: #ffffff;
    letter-spacing: 0.02em;
    -webkit-text-stroke: 1px #ffffff;
    text-shadow: 0 0 6px rgba(0,0,0,0.9);
}

.hero-content--overlay .hero-subtitle {
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 24px;
    color: #ffffff;
    text-shadow: 0 0 4px rgba(0,0,0,0.85);
}

/* ================= Hero اختصاصی Services ================= */
.hero-services {
    position: relative;
    width: 100%;
    min-height: 520px;
    overflow: hidden;
    display: flex;
    align-items: center;
    margin: 0 0 32px 0;
    background-color: #dbe2ea;
}

.hero-services-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 1;
}

.hero-services-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(15, 23, 42, 0.62) 0%,
        rgba(15, 23, 42, 0.45) 40%,
        rgba(15, 23, 42, 0.25) 100%
    );
    z-index: 2;
}

.hero-services-content {
    position: relative;
    z-index: 5;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 48px 24px;
    display: flex;
    justify-content: flex-start;
}

.hero-services-text {
    max-width: 560px;
    color: #ffffff;
    text-align: right;
    backdrop-filter: blur(1.5px);
}

/* ================= دکمه‌ها – عمومی ================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
    background-color: var(--color-primary);
    color: #ffffff;
    box-shadow: 0 6px 18px rgba(31, 79, 130, 0.35);
}

.btn-primary:hover {
    background-color: var(--color-primary-hover);
}

.btn-secondary {
    background-color: #ffffff;
    color: var(--color-primary);
    border-color: var(--color-border);
}

.btn-secondary:hover {
    background-color: var(--color-primary-soft);
}

/* ================= بدنه اصلی و سکشن‌ها ================= */
.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 40px;
}

.section {
    background-color: var(--color-surface);
    padding: 24px 22px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    margin-bottom: 28px;
}

.section-title {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--color-primary);
}

.section-subtitle {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 18px;
}

/* کارت‌ها */
.cards-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 18px;
}

/* ================= Language Switcher هدر ================= */
.language-switcher {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    margin-right: 0;
    flex: 0 0 auto;
}

.language-switcher a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid #cbd5e1;
    background-color: #ffffff;
    color: #0f172a;
    text-decoration: none;
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.05);
    transition: all 0.25s ease;
}

.language-switcher a:hover {
    background-color: #f1f5f9;
    border-color: #94a3b8;
    color: #2563eb;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}

.language-switcher a:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.language-switcher a.lang-active {
    background: linear-gradient(135deg, #0f172a, #1e3a8a);
    color: #ffffff;
    border-color: #0f172a;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.18);
}

/* ================= صفحه‌های حقوقی (Legal) ================= */
.page--legal {
    padding-top: 32px;
    padding-bottom: 40px;
}

.page--legal .page-header {
    text-align: center;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 2rem;
    margin-bottom: 2.5rem;
}

.page--legal .page-title {
    font-size: 1.7rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--color-primary);
}

.page--legal .page-subtitle {
    max-width: 700px;
    margin: 1rem auto 0;
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.9;
}

.legal-badge {
    display: inline-block;
    background: #eef4ff;
    color: #0d4f8b;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.legal-date {
    font-size: 0.9rem;
    color: #6b7280;
    margin-top: 10px;
}

.legal-summary {
    background: #f9fafb;
    padding: 20px;
    border-right: 5px solid #0d4f8b;
    border-radius: 8px;
    margin-bottom: 32px;
    line-height: 1.9;
    color: #111827;
    font-size: 0.95rem;
}

.legal-notice {
    background: rgba(13, 79, 139, 0.05);
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    font-style: italic;
    color: #1f2937;
    font-size: 0.9rem;
}

.page--legal h2.section-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--color-primary);
}

.page--legal .section-subtitle {
    margin-bottom: 12px;
    font-size: 0.92rem;
}

.page--legal ul {
    margin: 0;
    padding-right: 1.5rem;
    list-style: disc;
}

.page--legal li {
    margin-bottom: 0.35rem;
    font-size: 0.92rem;
}

/* ==========================================================
   FOOTER — نسخه نهایی و ریسپانسیو SJP Corporation
   ========================================================== */
.site-footer {
    background-color: #0a0e17;
    color: #ffffff;
    padding: 60px 0 20px;
    direction: rtl;
    text-align: right;
    border-top: 4px solid #e67e22; /* خط برند نارنجی */
}

/* --- گرید اصلی: سه ستون --- */
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr; /* معرفی | لینک‌ها | زبان‌ها */
    gap: 50px;
    align-items: start;
}

/* --- تیتر ستون‌ها --- */
.footer-section h4 {
    color: #fff;
    font-size: 1.15rem;
    font-weight: 600;
    margin: 0 0 20px;
    padding-bottom: 12px;
    position: relative;
}
.footer-section h4::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 44px;
    height: 2px;
    background: #e67e22;
}

/* --- متن معرفی --- */
.footer-about p {
    color: #cbd5e1;
    line-height: 1.9;
    font-size: 0.95rem;
    max-width: 90%;
}

/* --- لینک‌های ستون وسط (عمودی) --- */
.footer-nav,
.footer-legal {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-nav a,
.footer-legal a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.92rem;
    transition: color 0.3s, padding-right 0.3s;
}
.footer-nav a:hover,
.footer-legal a:hover {
    color: #e67e22;
    padding-right: 6px;
}

/* --- ستون سمت چپ (سیاست‌ها + زبان‌ها) --- */
.footer-side {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.footer-languages h4 {
    margin-top: 0;
}

/* --- دکمه‌های زبان: عمودی و مرتب --- */
.footer-lang-switcher {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-lang-switcher a {
    display: block;
    text-align: center;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: #fff;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s;
}
.footer-lang-switcher a:hover {
    background: #1f4f82;
    border-color: #1f4f82;
}
.footer-lang-switcher a.lang-active {
    background: #1f4f82;
    border: 1px solid #e67e22;
}

/* --- نوار پایین فوتر --- */
.footer-bottom {
    max-width: 1200px;
    margin: 45px auto 0;
    padding: 18px 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.8rem;
    color: #94a3b8;
}

/* ==========================================================
   ریسپانسیو — موبایل (عرض کمتر از 768px)
   ========================================================== */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr; /* همه زیر هم */
        gap: 35px;
        text-align: center;
    }

    .footer-section h4::after {
        right: 50%;
        transform: translateX(50%);
    }

    .footer-about p {
        max-width: 100%;
    }

    .footer-nav,
    .footer-legal {
        align-items: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}


/* ================= ریسپانسیو ================= */
@media (max-width: 992px) {
    .nav-container {
        flex-wrap: wrap;
        justify-content: center;
    }

    .brand {
        order: 1;
    }

    .language-switcher {
        order: 2;
    }

    .nav-links {
        order: 3;
        width: 100%;
        justify-content: center;
        margin-top: 8px;
    }
}

@media (max-width: 900px) {
    .hero-banner {
        min-height: 650px;
    }

    .hero-banner-content {
        width: min(100% - 40px, 760px);
        padding: 70px 0;
    }

    .hero-banner h1 {
        font-size: clamp(1.9rem, 5vw, 2.8rem);
    }

    .hero-banner p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .hero {
        grid-template-columns: minmax(0, 1fr);
        padding: 0 16px;
    }

    .hero-media {
        margin-bottom: 18px;
    }

    .nav-container {
        padding: 10px 12px;
    }

    .nav-links {
        gap: 8px;
    }

    .nav-link {
        font-size: 0.84rem;
        padding: 7px 9px;
    }

    .main-container {
        padding: 0 16px 32px;
    }

    .section {
        padding: 18px 14px;
    }

    /* فوتر: تک‌ستون و مرتب در موبایل */
    .footer-content {
        grid-template-columns: minmax(0, 1fr);
        gap: 26px;
        padding: 36px 20px 24px;
    }

    .footer-side {
        gap: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px 20px 18px;
    }

/* ==========================================================
   بخش CTA قبل از فوتر (با افکت شیشه‌ای و خوانایی بالا)
   ========================================================== */
.footer-cta {
    position: relative;
    padding: 80px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    direction: rtl;
}

/* لایه تیره پس‌زمینه روی کل عکس جهت افزایش کنتراست */
.footer-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 14, 23, 0.7); /* لایه تاریک هماهنگ با تم سایت */
    z-index: 1;
}

.footer-cta-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 800px;
    padding: 0 24px;
    display: flex;
    justify-content: center;
}

/* پنل شیشه‌ای با حاشیه سفید نازک (White-Border Glassmorphism) */
.cta-glass-card {
    background: rgba(15, 23, 42, 0.85); /* پس‌زمینه تیره و غلیظ برای خوانایی کامل */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2); /* حاشیه روشن ظریف */
    border-radius: 12px;
    padding: 40px 50px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    width: 100%;
}

.cta-glass-card h2 {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6); /* سایه متن */
}

.cta-glass-card p {
    color: #e2e8f0;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 25px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* دکمه نارنجی برند با افکت هاور */
.btn-cta-primary {
    display: inline-block;
    padding: 12px 35px;
    background-color: #e67e22;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 6px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
}

.btn-cta-primary:hover {
    background-color: #d35400;
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.5);
    transform: translateY(-2px);
}

/* ریسپانسو برای موبایل */
@media (max-width: 768px) {
    .footer-cta {
        padding: 50px 0;
    }
    .cta-glass-card {
        padding: 25px 20px;
    }
    .cta-glass-card h2 {
        font-size: 1.4rem;
    }
    .cta-glass-card p {
        font-size: 0.95rem;
    }
}


@media (max-width: 640px) {
    .hero-banner,
    .home-hero {
        min-height: 620px;
    }

    .hero-banner-content {
        width: calc(100% - 32px);
        padding: 55px 0;
        text-align: right;
    }

    .hero-highlight {
        margin-bottom: 16px;
        padding: 0.65rem 0.85rem;
        font-size: 0.85rem;
    }

    .hero-banner h1 {
        margin-bottom: 18px;
        font-size: 1.85rem;
        line-height: 1.6;
    }

    .footer-content {
        padding: 32px 16px 20px;
    }

    .footer-bottom {
        padding: 14px 16px 16px;
    }
}
