    /* ==================== VARIABLES & RESET ==================== */
        :root {
            /* Dark theme (default) */
            --ae-primary: #0A192F;
            --ae-accent: #FF6D00;
            --ae-accent-glow: rgba(255, 109, 0, 0.65);
            --ae-cyan: #00F0FF;
            --ae-text-main: #FFFFFF;
            --ae-text-muted: #A0ABC0;
            --ae-bg: #030A16;
            
            /* Glassmorphism Variables */
            --ae-glass-bg: rgba(10, 25, 47, 0.35);
            --ae-glass-border: rgba(255, 255, 255, 0.08);
            --ae-glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
            
            --ae-font: 'Vazirmatn', sans-serif;
            --ae-truck-body: #1A2B4C;
    --ae-truck-dark: #0A192F;
    --ae-truck-stroke: #2A3F66;
    --ae-truck-window: rgba(255, 255, 255, 0.9);
    --ae-truck-highlight: rgba(255, 255, 255, 0.15);
    --ae-road-line: rgba(255, 255, 255, 0.2);
        }

        /* Light theme overrides (bright & minimal) */
        html[data-theme="light"] {
            --ae-primary: #F9FAFB;
            --ae-bg: #F3F4F6;
            --ae-text-main: #0F172A;
            --ae-text-muted: #6B7280;
            --ae-cyan: #0EA5E9;
            --ae-accent-glow: rgba(248, 181, 92, 0.45);
            --ae-glass-bg: rgba(255, 255, 255, 0.9);
            --ae-glass-border: rgba(15, 23, 42, 0.06);
            --ae-glass-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
            --ae-truck-body: #F1F5F9; /* بدنه ماشین در حالت روشن */
    --ae-truck-dark: #94A3B8; /* چرخ‌ها و شاسی در حالت روشن */
    --ae-truck-stroke: #CBD5E1;
    --ae-truck-window: rgba(15, 23, 42, 0.8);
    --ae-truck-highlight: rgba(0, 0, 0, 0.05);
    --ae-road-line: rgba(15, 23, 42, 0.15);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: var(--ae-font);
        }

        body {
            background-color: var(--ae-bg);
            color: var(--ae-text-main);
            overflow-x: hidden;
            line-height: 1.6;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        /* ==================== BACKGROUND ANIMATIONS ==================== */
        .ae-bg-animation {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            z-index: -1;
            overflow: hidden;
            background: #030A16;
        }

        html[data-theme="light"] .ae-bg-animation {
            background: radial-gradient(circle at top, #FEFCE8 0%, #E5E7EB 45%, #F9FAFB 100%);
        }

        .ae-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.5;
            animation: ae-orb-float 20s infinite alternate ease-in-out;
        }

        .ae-orb-1 {
            width: 400px;
            height: 400px;
            background: rgba(255, 109, 0, 0.15);
            top: -100px;
            right: -100px;
        }

        .ae-orb-2 {
            width: 500px;
            height: 500px;
            background: rgba(0, 240, 255, 0.1);
            bottom: -150px;
            left: -150px;
            animation-delay: -5s;
        }

        @keyframes ae-orb-float {
            0% { transform: translate(0, 0) scale(1); }
            50% { transform: translate(-50px, 50px) scale(1.1); }
            100% { transform: translate(50px, -50px) scale(0.9); }
        }

        /* ==================== GLOBAL ANIMATIONS ==================== */
        @keyframes ae-fade-up {
            0% { opacity: 0; transform: translateY(30px); }
            100% { opacity: 1; transform: translateY(0); }
        }

        @keyframes ae-pulse-glow {
            0% { box-shadow: 0 0 0 0 var(--ae-accent-glow); }
            70% { box-shadow: 0 0 0 15px rgba(255, 109, 0, 0); }
            100% { box-shadow: 0 0 0 0 rgba(255, 109, 0, 0); }
        }

        /* Tow Truck SVG Animations */
        @keyframes ae-spin {
            from { transform: rotate(0deg); }
            to { transform: rotate(-360deg); } /* منفی برای چرخش به سمت جلو (چپ به راست) */
        }

        @keyframes ae-road-move {
            from { stroke-dashoffset: 40; }
            to { stroke-dashoffset: 0; }
        }

        @keyframes ae-truck-bob {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-2px); }
        }

        @keyframes ae-blink {
            0%, 100% { opacity: 1; fill: #FF0000; }
            50% { opacity: 0.3; fill: #FF6D00; }
        }

        /* ==================== GLASS CLASSES ==================== */
        .ae-glass {
            background: var(--ae-glass-bg);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid var(--ae-glass-border);
            box-shadow: var(--ae-glass-shadow);
        }

        /* ==================== HEADER ==================== */
        .ae-header {
            position: fixed;
            top: 0;
            width: 100%;
            height: 80px;
            z-index: 1000;
            transition: all 0.4s ease;
            border-bottom: 1px solid transparent;
        }

        .ae-header.scrolled {
            background: var(--ae-glass-bg);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--ae-glass-border);
            box-shadow: var(--ae-glass-shadow);
            height: 70px;
        }

        .ae-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 5%;
            height: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .ae-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.6rem;
            font-weight: 900;
            background: linear-gradient(45deg, #fff, var(--ae-accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .ae-nav-desktop {
            display: flex;
            gap: 35px;
            list-style: none;
        }

        .ae-nav-desktop li a {
            font-size: 1rem;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            color: var(--ae-text-main);
        }

        .ae-nav-desktop li a:hover {
            color: var(--ae-accent);
            text-shadow: 0 0 10px var(--ae-accent-glow);
        }

        .ae-call-btn {
            background: linear-gradient(135deg, var(--ae-accent), #D55000);
            color: #fff;
            padding: 10px 28px;
            border-radius: 50px;
            font-weight: 900;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            gap: 8px;
            direction: ltr;
            animation: ae-pulse-glow 2s infinite;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .ae-call-btn:hover {
            transform: translateY(-2px) scale(1.05);
            box-shadow: 0 10px 25px var(--ae-accent-glow);
        }

        html[data-theme="light"] .ae-call-btn {
            color: #111827;
            border-color: rgba(248, 181, 92, 0.9);
        }

        /* Ghost variant used in hero for secondary call */
        .ae-call-btn--ghost {
            background: transparent;
            border: 1px solid var(--ae-accent);
            color: var(--ae-text-main);
            animation: none;
            box-shadow: none;
            font-size: 1.05rem;
            padding: 12px 22px;
        }

        .ae-call-btn--ghost:hover {
            transform: translateY(-2px);
            background: rgba(255, 109, 0, 0.08);
            box-shadow: 0 10px 25px rgba(255, 109, 0, 0.12);
        }

        html[data-theme="light"] .ae-call-btn--ghost {
            background: #FFFFFF;
            border-color: rgba(148, 163, 184, 0.7);
        }

        html[data-theme="light"] .ae-call-btn--ghost:hover {
            background: #FEE2E2;
            box-shadow: 0 12px 26px rgba(248, 113, 113, 0.4);
        }

        /* Theme toggle (sun / moon slider) */
        .ae-theme-toggle {
            border: none;
            background: transparent;
            cursor: pointer;
            padding: 0;
            margin-left: 18px;
            display: flex;
            align-items: center;
        }

        .ae-theme-toggle-track {
            position: relative;
            width: 60px;
            height: 30px;
            border-radius: 999px;
            background: linear-gradient(135deg, rgba(15,23,42,0.9), rgba(30,64,175,0.9));
            box-shadow: 0 0 0 1px rgba(148, 163, 184, 0.35), 0 8px 18px rgba(15,23,42,0.7);
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 8px;
            transition: background 0.4s ease, box-shadow 0.4s ease;
        }

        html[data-theme="light"] .ae-theme-toggle-track {
            background: linear-gradient(135deg, #e5edf9, #ffffff);
            box-shadow: 0 0 0 1px rgba(148, 163, 184, 0.35), 0 8px 20px rgba(148, 163, 184, 0.45);
        }

        .ae-theme-icon {
            width: 16px;
            height: 16px;
            position: relative;
            flex-shrink: 0;
        }

        .ae-theme-icon--sun::before,
        .ae-theme-icon--moon::before {
            content: '';
            position: absolute;
            inset: 2px;
            border-radius: 50%;
        }

        /* Sun */
        .ae-theme-icon--sun::before {
            background: radial-gradient(circle at 30% 30%, #ffffff, #fde68a);
            box-shadow: 0 0 10px rgba(252, 211, 77, 0.9);
            animation: ae-sun-pulse 2.4s infinite ease-in-out;
        }

        /* Moon (crescent) */
        .ae-theme-icon--moon::before {
            background: radial-gradient(circle at 30% 30%, #e5e7eb, #9ca3af);
            box-shadow: 0 0 8px rgba(156, 163, 175, 0.8);
            transform: translateX(-2px);
            box-shadow: inset -6px 0 0 0 rgba(15, 23, 42, 0.95);
        }

        @keyframes ae-sun-pulse {
            0%, 100% { transform: scale(1); box-shadow: 0 0 8px rgba(252, 211, 77, 0.7); }
            50% { transform: scale(1.06); box-shadow: 0 0 16px rgba(252, 211, 77, 1); }
        }

        .ae-theme-toggle-thumb {
            position: absolute;
            top: 3px;
            right: 3px; /* RTL: dark (moon) سمت راست شروع می‌کند */
            width: 24px;
            height: 24px;
            border-radius: 999px;
            background: radial-gradient(circle at 30% 20%, #ffffff, #e5e7eb);
            box-shadow: 0 4px 10px rgba(15, 23, 42, 0.65);
            transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1), background 0.35s ease, box-shadow 0.35s ease;
        }

        /* وقتی روی لایت مود هستیم، شست به سمت چپ حرکت کند (در راست‌چین) */
        html[data-theme="light"] .ae-theme-toggle-thumb {
            transform: translateX(-28px);
            background: radial-gradient(circle at 30% 20%, #fee2e2, #facc15);
            box-shadow: 0 4px 12px rgba(234, 179, 8, 0.65);
        }

        /* کمی حرکت پارالاکس آیکن‌ها با تغییر مود */
        html[data-theme="light"] .ae-theme-icon--sun {
            transform: translateY(-1px);
        }

        html[data-theme="light"] .ae-theme-icon--moon {
            transform: translateY(1px);
            opacity: 0.85;
        }

        /* Hamburger Menu */
        .ae-hamburger {
            display: none;
            cursor: pointer;
            flex-direction: column;
            gap: 6px;
            z-index: 1100;
        }

        .ae-hamburger span {
            width: 28px;
            height: 2px;
            background: var(--ae-text-main);
            border-radius: 2px;
            transition: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        /* Mobile Drawer (Glassy) */
        .ae-mobile-drawer {
            position: fixed;
            top: 0;
            right: -320px;
            width: 300px;
            height: 100vh;
            background: rgba(10, 25, 47, 0.6);
            backdrop-filter: blur(25px);
            -webkit-backdrop-filter: blur(25px);
            border-left: 1px solid var(--ae-glass-border);
            z-index: 1050;
            padding: 85px 22px 30px;
            transition: right 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        html[data-theme="light"] .ae-mobile-drawer {
            background: rgba(255, 255, 255, 0.96);
        }

        .ae-mobile-drawer.ae-open { right: 0; }

        .ae-mobile-header {
            position: absolute;
            top: 18px;
            right: 18px;
            left: 18px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
        }

        .ae-mobile-logo {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 12px;
            border-radius: 999px;
            background: rgba(15, 23, 42, 0.75);
            border: 1px solid rgba(148, 163, 184, 0.45);
            box-shadow: 0 8px 18px rgba(15, 23, 42, 0.7);
            font-weight: 800;
            font-size: 1.05rem;
        }

        html[data-theme="light"] .ae-mobile-logo {
            background: rgba(255, 255, 255, 0.9);
            border-color: rgba(148, 163, 184, 0.5);
            box-shadow: 0 8px 18px rgba(148, 163, 184, 0.4);
        }

        .ae-mobile-logo-icon svg {
            width: 22px;
            height: 22px;
            color: var(--ae-accent);
        }

        .ae-mobile-close {
            width: 34px;
            height: 34px;
            border-radius: 999px;
            border: 1px solid rgba(148, 163, 184, 0.5);
            background: rgba(15, 23, 42, 0.75);
            color: var(--ae-text-main);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
        }

        .ae-mobile-close:hover {
            transform: rotate(-90deg) scale(1.05);
            background: rgba(248, 113, 113, 0.08);
            border-color: rgba(248, 113, 113, 0.7);
            box-shadow: 0 8px 18px rgba(248, 113, 113, 0.35);
        }

        .ae-mobile-body {
            display: flex;
            flex-direction: column;
            gap: 24px;
            height: 100%;
        }

        .ae-mobile-cta {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 14px;
            border-radius: 16px;
            background: radial-gradient(circle at 0% 0%, rgba(255, 109, 0, 0.4), rgba(15, 23, 42, 0.95));
            border: 1px solid rgba(248, 158, 79, 0.9);
            color: #fff;
            text-decoration: none;
            box-shadow: 0 16px 35px rgba(0, 0, 0, 0.75);
            position: relative;
            overflow: hidden;
        }

        html[data-theme="light"] .ae-mobile-cta {
            background: radial-gradient(circle at 0% 0%, rgba(248, 250, 252, 1), rgba(254, 243, 199, 1));
            color: #111827;
            box-shadow: 0 16px 35px rgba(148, 163, 184, 0.5);
        }

        .ae-mobile-cta::after {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 120% 0%, rgba(255, 255, 255, 0.18), transparent 55%);
            mix-blend-mode: screen;
            pointer-events: none;
        }

        .ae-mobile-cta-icon svg {
            width: 26px;
            height: 26px;
        }

        .ae-mobile-cta-text {
            display: flex;
            flex-direction: column;
            gap: 2px;
            font-size: 0.9rem;
        }

        .ae-mobile-cta-text strong {
            font-size: 1rem;
        }

        .ae-mobile-nav {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .ae-mobile-item {
            opacity: 0;
            transform: translateX(12px);
            transition: opacity 0.35s ease, transform 0.35s ease;
        }

        .ae-mobile-drawer.ae-open .ae-mobile-item {
            opacity: 1;
            transform: translateX(0);
        }

        .ae-mobile-item:nth-child(1) { transition-delay: 0.02s; }
        .ae-mobile-item:nth-child(2) { transition-delay: 0.06s; }
        .ae-mobile-item:nth-child(3) { transition-delay: 0.10s; }
        .ae-mobile-item:nth-child(4) { transition-delay: 0.14s; }
        .ae-mobile-item:nth-child(5) { transition-delay: 0.18s; }

        .ae-mobile-link {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            padding: 11px 12px;
            border-radius: 12px;
            background: rgba(15, 23, 42, 0.72);
            border: 1px solid rgba(148, 163, 184, 0.3);
            color: var(--ae-text-main);
            cursor: pointer;
            text-align: right;
            transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
        }

        .ae-mobile-link:hover {
            background: radial-gradient(circle at 0 0, rgba(255, 109, 0, 0.24), rgba(15, 23, 42, 0.9));
            border-color: rgba(251, 146, 60, 0.9);
            box-shadow: 0 10px 24px rgba(15, 23, 42, 0.85);
            transform: translateY(-1px);
        }

        html[data-theme="light"] .ae-mobile-link {
            background: rgba(255, 255, 255, 0.96);
            border-color: rgba(148, 163, 184, 0.5);
            box-shadow: 0 10px 24px rgba(148, 163, 184, 0.35);
        }

        html[data-theme="light"] .ae-mobile-link:hover {
            background: linear-gradient(135deg, #fefce8, #ffffff);
            border-color: rgba(250, 204, 21, 0.9);
            box-shadow: 0 14px 30px rgba(250, 204, 21, 0.4);
        }

        .ae-mobile-link-icon svg {
            width: 20px;
            height: 20px;
        }

        .ae-mobile-link-text {
            flex: 1;
            font-size: 1.02rem;
            font-weight: 500;
        }

        .ae-mobile-chevron svg {
            width: 16px;
            height: 16px;
            transition: transform 0.25s ease;
        }

        .ae-mobile-item--has-children.ae-open > .ae-mobile-link .ae-mobile-chevron svg {
            transform: rotate(180deg);
        }

        .ae-mobile-subnav {
            list-style: none;
            margin-top: 6px;
            padding-right: 8px;
            display: none;
            flex-direction: column;
            gap: 6px;
        }

        .ae-mobile-item--has-children.ae-open > .ae-mobile-subnav {
            display: flex;
        }

        .ae-mobile-subnav a {
            display: block;
            padding: 7px 10px;
            border-radius: 10px;
            font-size: 0.9rem;
            color: var(--ae-text-muted);
            background: rgba(15, 23, 42, 0.5);
            border: 1px solid rgba(148, 163, 184, 0.25);
            transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
        }

        .ae-mobile-subnav a:hover {
            color: var(--ae-accent);
            border-color: rgba(251, 146, 60, 0.9);
            background: rgba(30, 64, 175, 0.35);
        }

        html[data-theme="light"] .ae-mobile-subnav a {
            background: rgba(248, 250, 252, 0.95);
            border-color: rgba(148, 163, 184, 0.4);
        }

        html[data-theme="light"] .ae-mobile-subnav a:hover {
            background: rgba(254, 243, 199, 0.9);
        }

        .ae-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.6);
            backdrop-filter: blur(5px);
            z-index: 1040;
            opacity: 0;
            visibility: hidden;
            transition: 0.4s ease;
        }

        .ae-overlay.ae-open {
            opacity: 1;
            visibility: visible;
        }

        /* ==================== HERO SECTION ==================== */
        .ae-hero {
            padding-top: 115px;
            padding-bottom: 70px;
            display: flex;
            align-items: center;
            position: relative;
        }

        html[data-theme="light"] .ae-hero {
            padding-top: 110px;
            padding-bottom: 60px;
        }

        .ae-hero-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 5%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
            align-items: center;
        }

        .ae-hero-content {
            animation: ae-fade-up 1s ease forwards;
            position: relative;
            z-index: 2;
        }

        .ae-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 109, 0, 0.15);
            color: var(--ae-accent);
            padding: 6px 16px;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 700;
            margin-bottom: 18px;
            border: 1px solid rgba(255, 109, 0, 0.3);
            backdrop-filter: blur(10px);
        }

        html[data-theme="light"] .ae-badge {
            background: rgba(254, 243, 199, 0.7);
            border-color: rgba(250, 204, 21, 0.7);
        }

        .ae-hero-title {
            font-size: 3.35rem;
            font-weight: 900;
            line-height: 1.2;
            margin-bottom: 18px;
            text-shadow: 0 5px 15px rgba(0,0,0,0.5);
        }

        html[data-theme="light"] .ae-hero-title {
            text-shadow: none;
            color: #0F172A;
        }

        .ae-hero-title span {
            color: var(--ae-accent);
            position: relative;
            display: inline-block;
        }

        .ae-hero-title span::after {
            content: '';
            position: absolute;
            bottom: 8px;
            left: 0;
            width: 100%;
            height: 8px;
            background: var(--ae-accent);
            opacity: 0.3;
            border-radius: 4px;
            z-index: -1;
        }

        .ae-hero-desc {
            font-size: 1.06rem;
            color: var(--ae-text-muted);
            margin-bottom: 28px;
            max-width: 520px;
            line-height: 1.75;
        }

        html[data-theme="light"] .ae-hero-desc {
            color: #4B5563;
        }

        .ae-hero-actions {
            display: flex;
            gap: 20px;
            align-items: center;
        }

        .ae-btn-app {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: #fff;
            padding: 12px 26px;
            border-radius: 15px;
            font-weight: 700;
            font-size: 1.05rem;
            display: flex;
            align-items: center;
            gap: 12px;
            transition: all 0.3s ease;
            cursor: pointer;
            backdrop-filter: blur(10px);
        }

        .ae-btn-app:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: var(--ae-accent);
            box-shadow: 0 0 20px rgba(255, 109, 0, 0.2);
            transform: translateY(-2px);
        }

        html[data-theme="light"] .ae-btn-app {
            background: #111827;
            border-color: transparent;
            color: #F9FAFB;
            box-shadow: 0 14px 32px rgba(15, 23, 42, 0.45);
        }

        html[data-theme="light"] .ae-btn-app:hover {
            background: #020617;
            box-shadow: 0 18px 40px rgba(15, 23, 42, 0.7);
        }

        /* Visuals: App Mockup & Animated Tow Truck */
        .ae-hero-visual {
            position: relative;
            animation: ae-fade-up 1.2s ease forwards;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100%;
            padding-bottom: 18px;
        }

        /* Glassmorphism App Mockup */
        .ae-app-mockup {
            width: 290px;
            height: 520px;
            border-radius: 45px;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            align-items: center;
            z-index: 2;
            /* Glass Effect for Phone Frame */
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 2px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 30px 60px rgba(0,0,0,0.6), inset 0 0 20px rgba(255,255,255,0.05);
        }

        .ae-mockup-notch {
            width: 130px;
            height: 30px;
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(10px);
            border-bottom-left-radius: 18px;
            border-bottom-right-radius: 18px;
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            z-index: 5;
            border: 1px solid rgba(255,255,255,0.05);
            border-top: none;
        }

        .ae-mockup-screen {
            width: 100%;
            height: 100%;
            padding: 54px 20px 22px;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .ae-ui-map {
            width: 100%;
            height: 200px;
            border-radius: 20px;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            background: rgba(0, 240, 255, 0.03);
            border: 1px solid rgba(0, 240, 255, 0.15);
        }

        .ae-ui-card {
            width: 100%;
            height: 64px;
            border-radius: 15px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.08);
        }

        .ae-ui-btn {
            width: 100%;
            height: 52px;
            background: linear-gradient(90deg, var(--ae-accent), #FF8A33);
            border-radius: 15px;
            margin-top: auto;
            border: none;
            box-shadow: 0 5px 15px rgba(255, 109, 0, 0.3);
        }

        /* ----------------------------------------------------
           NEW: Highly Professional & Animated SVG Tow Truck
           ---------------------------------------------------- */
        .ae-tow-truck-container {
            position: absolute;
            bottom: -12px;
            left: -60px; /* کشیده شده به بیرون کادر موبایل */
            width: 420px;
            height: 200px;
            z-index: 10;
            pointer-events: none;
            filter: drop-shadow(0 20px 25px rgba(0,0,0,0.5));
        }

        .ae-wheel-spin {
            transform-box: fill-box;
            transform-origin: center;
            animation: ae-spin 1.5s linear infinite;
        }

        .ae-road {
            stroke-dasharray: 30, 20;
            animation: ae-road-move 1s linear infinite;
        }

        .ae-truck-body {
            animation: ae-truck-bob 2s ease-in-out infinite;
        }

        .ae-beacon {
            animation: ae-blink 0.8s infinite;
        }

        /* ==================== RESPONSIVE ==================== */
        @media (max-width: 1024px) {
            .ae-hero-title { font-size: 3rem; }
            .ae-app-mockup { width: 280px; height: 500px; }
            .ae-tow-truck-container { width: 360px; left: -30px; }
        }

        @media (max-width: 850px) {
            .ae-hero { padding-top: 105px; padding-bottom: 55px; }
            .ae-hero-container { grid-template-columns: 1fr; text-align: center; gap: 34px; }
            .ae-hero-desc { margin: 0 auto 22px; }
            .ae-hero-actions { justify-content: center; }
            .ae-nav-desktop, .desktop-only { display: none; }
            .ae-hamburger { display: flex; }
            .ae-tow-truck-container { left: 50%; transform: translateX(-50%); bottom: -32px; width: 380px; }
            .ae-app-mockup { margin-bottom: 18px; width: 270px; height: 480px; }
        }

        @media (max-width: 480px) {
            .ae-hero { padding-top: 95px; padding-bottom: 45px; }
            .ae-hero-title { font-size: 2.05rem; }
            .ae-hero-desc { font-size: 1rem; margin-bottom: 22px; }
            .ae-btn-app { padding: 11px 18px; font-size: 1rem; }
            .ae-hero-actions { flex-direction: column; width: 100%; }
            .ae-btn-app, .ae-call-btn { width: 100%; justify-content: center; }
            .ae-hero-visual { padding-bottom: 10px; }
            .ae-app-mockup { width: 240px; height: 430px; }
            .ae-tow-truck-container { width: 300px; bottom: -24px; }
        }


        /* ==================== FEATURES SECTION (GLASS CARDS) ==================== */
    .ae-features {
        padding: 60px 0 100px;
        position: relative;
        z-index: 10;
    }

    .ae-features-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 5%;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 30px;
    }

    /* Base Glass Card Style */
    .ae-glass-card {
        background: rgba(255, 255, 255, 0.02);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.06);
        border-radius: 24px;
        padding: 40px 30px;
        position: relative;
        overflow: hidden;
        transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        cursor: pointer;
        box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    }

    /* 3D Hover Lift */
    .ae-glass-card:hover {
        transform: translateY(-12px);
        background: rgba(255, 255, 255, 0.04);
        border-color: rgba(255, 255, 255, 0.15);
    }

    /* Glass Glare Animation (بازتاب نور شیشه) */
    .ae-glass-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -150%;
        width: 100%;
        height: 100%;
        background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.1), transparent);
        transform: skewX(-25deg);
        transition: 0.7s;
        z-index: 2;
        pointer-events: none;
    }

    .ae-glass-card:hover::before {
        left: 150%;
    }

    /* Background Floating Glow for each card */
    .ae-card-glow {
        position: absolute;
        width: 150px;
        height: 150px;
        border-radius: 50%;
        top: -50px;
        right: -50px;
        filter: blur(60px);
        opacity: 0;
        transition: 0.5s ease;
        z-index: 0;
    }

    /* Glow Colors based on card type */
    .ae-card-cyan:hover .ae-card-glow { background: rgba(0, 240, 255, 0.4); opacity: 1; }
    .ae-card-blue:hover .ae-card-glow { background: rgba(58, 134, 255, 0.4); opacity: 1; }
    .ae-card-orange:hover .ae-card-glow { background: rgba(255, 109, 0, 0.4); opacity: 1; }

    /* Card Content Styling */
    .ae-icon-box {
        width: 65px;
        height: 65px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 18px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 25px;
        position: relative;
        z-index: 3;
        transition: 0.4s ease;
    }

    .ae-icon-box svg {
        width: 32px;
        height: 32px;
        color: #fff;
        transition: 0.4s ease;
    }

    .ae-glass-card:hover .ae-icon-box {
        transform: scale(1.1) rotate(5deg);
        box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    }

    /* Specific Icon Colors on Hover */
    .ae-card-cyan:hover .ae-icon-box svg { color: #00F0FF; filter: drop-shadow(0 0 8px rgba(0, 240, 255, 0.8)); }
    .ae-card-blue:hover .ae-icon-box svg { color: #3A86FF; filter: drop-shadow(0 0 8px rgba(58, 134, 255, 0.8)); }
    
    .ae-card-title {
        font-size: 1.35rem;
        font-weight: 800;
        margin-bottom: 15px;
        color: #fff;
        position: relative;
        z-index: 3;
        transition: 0.3s ease;
    }

    .ae-card-desc {
        font-size: 1rem;
        color: var(--ae-text-muted);
        line-height: 1.8;
        position: relative;
        z-index: 3;
    }

    /* --- Special Styling for Card 3 (CTA / Call) --- */
    .ae-cta-card {
        border-color: rgba(255, 109, 0, 0.3);
        background: rgba(255, 109, 0, 0.03);
    }
    
    .ae-cta-card:hover {
        border-color: var(--ae-accent);
        box-shadow: 0 15px 40px rgba(255, 109, 0, 0.15);
    }

    .ae-cta-card .ae-icon-box {
        background: rgba(255, 109, 0, 0.15);
        border-color: rgba(255, 109, 0, 0.4);
    }

    .ae-cta-card .ae-icon-box svg {
        color: var(--ae-accent);
    }

    @keyframes pulse-ring {
        0% { box-shadow: 0 0 0 0 rgba(255, 109, 0, 0.6); }
        100% { box-shadow: 0 0 0 20px rgba(255, 109, 0, 0); }
    }

    .ae-pulse-icon {
        animation: pulse-ring 2s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    /* Full card clickable link */
    .ae-hidden-link {
        position: absolute;
        top: 0; left: 0; width: 100%; height: 100%;
        z-index: 10;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .ae-features { padding: 40px 0; }
        .ae-glass-card { padding: 30px 25px; }
        .ae-card-title { font-size: 1.2rem; }
    }

/* ==================== ABOUT US SECTION ==================== */
    .ae-about-section {
        padding: 80px 0 120px;
        position: relative;
        overflow: hidden;
    }

    .ae-about-ambient {
        position: absolute;
        top: 20%; left: -10%;
        width: 500px; height: 500px;
        background: radial-gradient(circle, rgba(0, 240, 255, 0.08) 0%, transparent 70%);
        z-index: 0;
        pointer-events: none;
    }

    .ae-about-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 5%;
        display: grid;
        grid-template-columns: 1.1fr 0.9fr; /* نسبت ستون‌ها */
        gap: 60px;
        align-items: center;
        position: relative;
        z-index: 2;
    }

    /* --- Content (Right Side) --- */
    .ae-section-title {
        font-size: 2.4rem;
        font-weight: 900;
        margin-bottom: 10px;
        line-height: 1.4;
    }

    .ae-section-title span {
        color: var(--ae-accent);
        position: relative;
    }

    .ae-section-subtitle {
        font-size: 1.1rem;
        color: var(--ae-cyan);
        font-weight: 500;
        margin-bottom: 30px;
        opacity: 0.9;
    }

    .ae-about-text-box {
        background: rgba(255, 255, 255, 0.02);
        border-right: 3px solid var(--ae-accent);
        padding: 20px 25px;
        border-radius: 12px 0 0 12px;
        margin-bottom: 40px;
    }

    .ae-about-text-box p {
        font-size: 1rem;
        color: var(--ae-text-muted);
        line-height: 1.9;
        margin-bottom: 15px;
        text-align: justify;
    }
    
    .ae-about-text-box p:last-child { margin-bottom: 0; }

    /* --- Feature List --- */
    .ae-feature-list {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-bottom: 35px;
    }

    .ae-f-item {
        display: flex;
        gap: 20px;
        align-items: flex-start;
        padding: 20px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 16px;
        transition: 0.4s ease;
        cursor: default;
    }

    .ae-f-item:hover {
        background: rgba(255, 255, 255, 0.06);
        border-color: rgba(255, 109, 0, 0.3);
        transform: translateX(-10px); /* حرکت ریز به سمت راست در فارسی */
        box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    }

    .ae-f-icon {
        width: 55px;
        height: 55px;
        flex-shrink: 0;
        background: rgba(0, 0, 0, 0.3);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 14px;
        display: flex;
        justify-content: center;
        align-items: center;
        color: var(--ae-text-main);
        transition: 0.4s ease;
    }

    .ae-f-item:hover .ae-f-icon {
        background: var(--ae-accent);
        color: #fff;
        border-color: var(--ae-accent);
        box-shadow: 0 0 15px rgba(255, 109, 0, 0.4);
        transform: rotate(-10deg);
    }

    .ae-f-icon svg { width: 28px; height: 28px; }

    .ae-f-info h5 {
        font-size: 1.1rem;
        font-weight: 700;
        margin-bottom: 8px;
        color: #fff;
    }

    .ae-f-info p {
        font-size: 0.95rem;
        color: var(--ae-text-muted);
        line-height: 1.7;
    }

    .ae-about-closing {
        font-size: 1.1rem;
        background: linear-gradient(90deg, rgba(255, 109, 0, 0.1), transparent);
        padding: 15px 20px;
        border-radius: 10px;
        border-right: 3px solid var(--ae-accent);
        color: #fff;
    }

    .ae-about-closing strong { color: var(--ae-accent); }

    /* --- Visual & Glass Frame (Left Side) --- */
    .ae-about-visual {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .ae-image-glass-frame {
        position: relative;
        border-radius: 30px;
        padding: 15px;
        background: rgba(255, 255, 255, 0.03);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 30px 60px rgba(0,0,0,0.5);
        transform: perspective(1000px) rotateY(-5deg); /* حالت 3D ملایم */
        transition: 0.5s ease;
    }

    .ae-image-glass-frame:hover {
        transform: perspective(1000px) rotateY(0deg) translateY(-10px);
        border-color: rgba(255, 109, 0, 0.4);
        box-shadow: 0 40px 80px rgba(255, 109, 0, 0.15);
    }

    .ae-main-img {
        width: 100%;
        height: auto;
        border-radius: 20px;
        display: block;
        filter: grayscale(20%) contrast(1.1);
        transition: 0.5s ease;
    }

    .ae-image-glass-frame:hover .ae-main-img {
        filter: grayscale(0%) contrast(1);
    }

    /* Floating Badge */
    .ae-experience-badge {
        position: absolute;
        bottom: -20px;
        right: -30px;
        background: rgba(10, 25, 47, 0.85);
        backdrop-filter: blur(15px);
        border: 1px solid var(--ae-accent);
        padding: 20px 25px;
        border-radius: 20px;
        display: flex;
        align-items: center;
        gap: 15px;
        box-shadow: 0 15px 30px rgba(0,0,0,0.4);
        animation: ae-truck-bob 3s ease-in-out infinite; /* استفاده از انیمیشن شناور قبلی */
        z-index: 10;
    }

    html[data-theme="light"] .ae-experience-badge {
        background: rgba(255, 255, 255, 0.96);
        box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
    }

    html[data-theme="light"] .ae-experience-badge .ae-badge-text {
        color: #0F172A;
    }

    .ae-badge-num {
        font-size: 2.5rem;
        font-weight: 900;
        color: var(--ae-accent);
        line-height: 1;
    }

    .ae-badge-text {
        font-size: 0.95rem;
        color: #fff;
        font-weight: 600;
        line-height: 1.4;
    }

    /* Decorative Frame Lines */
    .ae-frame-border {
        position: absolute;
        width: 50px;
        height: 50px;
        border: 3px solid var(--ae-cyan);
        z-index: 5;
        opacity: 0.6;
        transition: 0.4s ease;
    }
    
    .ae-border-top { top: -10px; left: -10px; border-right: none; border-bottom: none; border-radius: 15px 0 0 0; }
    .ae-border-bottom { bottom: -10px; right: -10px; border-left: none; border-top: none; border-radius: 0 0 15px 0; border-color: var(--ae-accent); }

    .ae-image-glass-frame:hover .ae-border-top { top: -15px; left: -15px; opacity: 1; }
    .ae-image-glass-frame:hover .ae-border-bottom { bottom: -15px; right: -15px; opacity: 1; }

    /* Responsive */
    @media (max-width: 992px) {
        .ae-about-container { grid-template-columns: 1fr; gap: 50px; }
        .ae-about-visual { order: -1; /* تصویر در موبایل بالا قرار بگیرد */ }
        .ae-image-glass-frame { transform: none; width: 90%; max-width: 500px; margin: 0 auto; }
        .ae-experience-badge { right: -10px; bottom: -20px; padding: 15px; }
    }

    @media (max-width: 576px) {
        .ae-section-title { font-size: 1.8rem; }
        .ae-f-item { flex-direction: column; align-items: center; text-align: center; }
        .ae-f-item:hover { transform: translateY(-5px); }
    }



     /* ==================== ARTICLES SECTION (CAROUSEL) ==================== */
    .ae-articles-section {
        padding: 80px 0 100px;
        position: relative;
        overflow: hidden; /* برای کنترل بهتر کاروسل */
    }

    .ae-articles-section::before { /* Background subtle glow */
        content: '';
        position: absolute;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(255, 109, 0, 0.05) 0%, transparent 70%);
        top: 10%;
        left: -150px;
        filter: blur(50px);
        z-index: 0;
        pointer-events: none;
    }

    .ae-articles-container {
        max-width: 1400px; /* افزایش عرض برای نمایش بهتر 4 اسلاید */
        margin: 0 auto;
        padding: 0 5%;
        position: relative;
        z-index: 2;
    }

    .ae-articles-header {
        text-align: center;
        margin-bottom: 60px;
    }

    .ae-articles-header .ae-section-title {
        font-size: 2.8rem;
        margin-bottom: 15px;
    }

    .ae-articles-header .ae-section-title span {
        color: var(--ae-accent);
    }

    .ae-articles-subtitle {
        font-size: 1.15rem;
        color: var(--ae-text-muted);
        max-width: 700px;
        margin: 0 auto 30px;
    }

    .ae-view-all-btn {
        display: inline-flex;
        align-items: center;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: #fff;
        padding: 12px 28px;
        border-radius: 50px;
        font-weight: 600;
        transition: all 0.3s ease;
        backdrop-filter: blur(10px);
    }

    .ae-view-all-btn:hover {
        background: var(--ae-accent);
        border-color: var(--ae-accent);
        box-shadow: 0 5px 20px rgba(255, 109, 0, 0.3);
        transform: translateY(-3px);
    }

    /* --- Article Card Styling (Glassmorphism) --- */
    .ae-article-card {
        display: flex;
        flex-direction: column;
        height: 100%;
        background: rgba(255, 255, 255, 0.02); /* Glass background */
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.06);
        border-radius: 20px;
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
        position: relative;
        box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    }

    .ae-article-card:hover {
        transform: translateY(-10px);
        background: rgba(255, 255, 255, 0.04);
        border-color: rgba(255, 109, 0, 0.3);
        box-shadow: 0 20px 45px rgba(0,0,0,0.3);
    }

    /* Inner Glow on Hover */
    .ae-article-card .ae-card-glow {
        position: absolute;
        width: 150px;
        height: 150px;
        border-radius: 50%;
        background: rgba(255, 109, 0, 0.3);
        filter: blur(50px);
        top: -70px;
        left: -70px;
        opacity: 0;
        transition: 0.5s ease;
        z-index: 1;
        pointer-events: none;
    }

    .ae-article-card:hover .ae-card-glow {
        opacity: 0.8;
    }

    .ae-article-img-wrap {
        position: relative;
        width: 100%;
        height: 220px;
        overflow: hidden;
        border-radius: 18px 18px 0 0;
        flex-shrink: 0;
    }

    .ae-article-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .ae-article-card:hover .ae-article-img {
        transform: scale(1.08);
    }

    .ae-img-overlay {
        position: absolute;
        top: 0; left: 0; width: 100%; height: 100%;
        background: linear-gradient(to top, rgba(10, 25, 47, 0.6) 0%, transparent 50%);
        transition: 0.3s ease;
    }

    .ae-article-card:hover .ae-img-overlay {
        background: linear-gradient(to top, rgba(10, 25, 47, 0.8) 0%, transparent 70%);
    }

    html[data-theme="light"] .ae-img-overlay {
        background: linear-gradient(to top, rgba(148, 163, 184, 0.55) 0%, transparent 55%);
    }

    html[data-theme="light"] .ae-article-card:hover .ae-img-overlay {
        background: linear-gradient(to top, rgba(148, 163, 184, 0.75) 0%, transparent 70%);
    }

    .ae-article-content {
        padding: 25px;
        display: flex;
        flex-direction: column;
        flex-grow: 1;
        position: relative;
        z-index: 2;
    }

    .ae-meta {
        display: flex;
        justify-content: space-between;
        font-size: 0.85rem;
        color: var(--ae-text-muted);
        margin-bottom: 15px;
        opacity: 0.7;
    }

    .ae-meta span {
        display: flex;
        align-items: center;
        gap: 5px;
    }
    
    .ae-meta svg {
        width: 14px;
        height: 14px;
        color: var(--ae-cyan); /* رنگ آیکون‌ها */
    }

    .ae-article-title {
        font-size: 1.25rem;
        font-weight: 800;
        color: #fff;
        margin-bottom: 12px;
        line-height: 1.4;
    }

    .ae-article-excerpt {
        font-size: 0.95rem;
        color: var(--ae-text-muted);
        line-height: 1.7;
        margin-bottom: 20px;
        flex-grow: 1; /* برای هم‌اندازه شدن کارت‌ها */
    }

    .ae-read-more {
        display: flex;
        align-items: center;
        color: var(--ae-accent);
        font-weight: 600;
        transition: transform 0.3s ease;
    }

    .ae-article-card:hover .ae-read-more {
        transform: translateX(5px);
    }

    /* --- Swiper Navigation & Pagination (Custom Glass Styles) --- */
    .swiper-button-next, .swiper-button-prev {
        color: #fff;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(15px);
        border-radius: 50%;
        width: 50px;
        height: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
        border: 1px solid rgba(255, 255, 255, 0.2);
        transition: all 0.3s ease;
        box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    }

    .swiper-button-next::after, .swiper-button-prev::after {
        font-size: 1.4rem;
        font-weight: bold;
    }

    .swiper-button-next:hover, .swiper-button-prev:hover {
        background: var(--ae-accent);
        border-color: var(--ae-accent);
        color: #fff;
        transform: scale(1.1);
        box-shadow: 0 5px 25px rgba(255, 109, 0, 0.4);
    }

    .swiper-button-prev { /* برای جهت فارسی */
        left: var(--swiper-navigation-sides-offset, 10px);
        right: auto;
    }
    .swiper-button-next { /* برای جهت فارسی */
        right: var(--swiper-navigation-sides-offset, 10px);
        left: auto;
    }

    /* For RTL */
    .swiper-button-prev::after { content: 'next'; transform: rotate(180deg); }
    .swiper-button-next::after { content: 'prev'; transform: rotate(180deg); }


    .swiper-pagination-bullet {
        background: rgba(255, 255, 255, 0.4);
        opacity: 0.7;
        width: 10px;
        height: 10px;
        transition: all 0.3s ease;
    }

    .swiper-pagination-bullet-active {
        background: var(--ae-accent);
        opacity: 1;
        width: 25px;
        border-radius: 5px;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .ae-articles-header .ae-section-title { font-size: 2rem; }
        .ae-view-all-btn { padding: 10px 20px; font-size: 0.9rem; }
        .swiper-button-next, .swiper-button-prev {
            width: 40px;
            height: 40px;
        }
        .swiper-button-next::after, .swiper-button-prev::after { font-size: 1rem; }
        .ae-articles-carousel { padding: 0 40px; } /* فضای کناری برای دکمه‌ها */
    }

    @media (max-width: 480px) {
        .ae-articles-header .ae-section-title { font-size: 1.6rem; }
        .ae-articles-subtitle { font-size: 0.95rem; }
    }

.ae-contact-footer {
        padding: 100px 0 0;
        background: linear-gradient(to bottom, transparent, rgba(255,109,0,0.05));
        position: relative;
    }

    .ae-contact-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 5% 80px;
        display: grid;
        grid-template-columns: 0.9fr 1.1fr;
        gap: 80px;
        align-items: center;
    }

    /* --- فرم تماس شیشه‌ای --- */
    .ae-contact-form-box {
        position: relative;
        padding: 40px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 30px;
        backdrop-filter: blur(20px);
        box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    }

    .ae-contact-title { font-size: 1.8rem; margin-bottom: 10px; }
    .ae-contact-title span { color: var(--ae-accent); }
    .ae-contact-p { color: var(--ae-text-muted); margin-bottom: 30px; font-size: 0.95rem; }

    .ae-input-group { margin-bottom: 20px; }
    .ae-input-group input {
        width: 100%;
        padding: 15px 20px;
        background: rgba(0,0,0,0.2);
        border: 1px solid rgba(255,255,255,0.1);
        border-radius: 12px;
        color: #fff;
        outline: none;
        transition: 0.3s;
    }
    .ae-input-group input:focus { border-color: var(--ae-accent); background: rgba(0,0,0,0.4); }

    .ae-submit-btn {
        width: 100%;
        padding: 16px;
        background: var(--ae-accent);
        color: #fff;
        border: none;
        border-radius: 12px;
        font-weight: 800;
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        transition: 0.3s;
    }


    .ae-submit-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(255,109,0,0.4); }

    /* --- اطلاعات فوتر --- */
    .ae-footer-logo { display: flex; align-items: center; gap: 15px; font-size: 1.5rem; font-weight: 900; margin-bottom: 25px; }
    .ae-logo-icon { width: 45px; height: 45px; background: var(--ae-accent); border-radius: 10px; display: flex; center; justify-content: center; align-items: center; color: #fff; }
    
    .ae-footer-bio { line-height: 1.8; color: var(--ae-text-muted); margin-bottom: 35px; }

    .ae-detail-item { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; color: #fff; }
    .ae-d-icon { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.05); display: flex; justify-content: center; align-items: center; color: var(--ae-accent); }

    /* --- بخش کپی‌رایت --- */
    .ae-copyright {
        border-top: 1px solid rgba(255,255,255,0.05);
        padding: 30px 0;
        background: rgba(0,0,0,0.3);
    }
    .ae-copyright .ae-container { display: flex; justify-content: space-between; align-items: center; }
    .ae-socials { display: flex; gap: 20px; }
    .ae-socials a { color: var(--ae-text-muted); font-size: 0.9rem; transition: 0.3s; }
    .ae-socials a:hover { color: var(--ae-accent); }

    @media (max-width: 768px) {
        .ae-contact-container { grid-template-columns: 1fr; text-align: center; }
        .ae-footer-logo { justify-content: center; }
        .ae-detail-item { justify-content: center; }
        .ae-copyright .ae-container { flex-direction: column; gap: 20px; }
    }
.ae-faq-section { padding: 60px 0; }
    .ae-faq-wrapper { max-width: 800px; margin: 40px auto 0; }
    .ae-faq-item { 
        background: rgba(255,255,255,0.02); 
        border: 1px solid rgba(255,255,255,0.05); 
        border-radius: 15px; 
        margin-bottom: 15px; 
        overflow: hidden;
        transition: 0.3s;
    }
    .ae-faq-item:hover { background: rgba(255,255,255,0.05); border-color: var(--ae-accent); }
    .ae-faq-question { 
        padding: 20px 25px; 
        display: flex; 
        justify-content: space-between; 
        align-items: center; 
        cursor: pointer; 
        font-weight: 700;
        color: #fff;
    }
    .ae-faq-answer { 
        padding: 0 25px; 
        max-height: 0; 
        overflow: hidden; 
        transition: 0.4s ease-out; 
        color: var(--ae-text-muted);
        line-height: 1.8;
    }
    .ae-faq-item.active .ae-faq-answer { padding: 0 25px 20px; max-height: 200px; }
    .ae-faq-item.active svg { transform: rotate(180deg); color: var(--ae-accent); }



    /* --- Mobile Call Bar Styling --- */
    .ae-mobile-call-bar {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 12px 15px 25px; /* پدینگ بیشتر در پایین برای گوشی‌های جدید (Safe Area) */
        background: linear-gradient(to top, rgba(5, 12, 22, 0.95), transparent);
        z-index: 9999;
        display: none; /* پیش‌فرض مخفی */
    }

    .ae-call-button {
        display: flex;
        align-items: center;
        background: rgba(255, 109, 0, 0.2);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 109, 0, 0.4);
        border-radius: 100px; /* کپسولی کامل */
        padding: 8px 10px;
        text-decoration: none;
        color: #fff;
        box-shadow: 0 -10px 30px rgba(0,0,0,0.5), 0 0 20px rgba(255, 109, 0, 0.2);
        animation: ae-bar-entrance 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .ae-call-icon {
        width: 48px;
        height: 48px;
        background: var(--ae-accent);
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-shrink: 0;
        box-shadow: 0 0 15px rgba(255, 109, 0, 0.6);
        animation: ae-icon-pulse 2s infinite;
    }

    .ae-call-icon svg {
        width: 22px;
        height: 22px;
        color: #fff;
    }

    .ae-call-text {
        flex-grow: 1;
        margin-right: 15px;
        display: flex;
        flex-direction: column;
    }

    .ae-call-text span {
        font-size: 0.75rem;
        opacity: 0.8;
        margin-bottom: 2px;
    }

    .ae-call-text strong {
        font-size: 1rem;
        font-weight: 900;
        letter-spacing: -0.5px;
    }

    .ae-call-arrow {
        margin-left: 10px;
        opacity: 0.5;
    }

    /* --- Animations --- */
    @keyframes ae-bar-entrance {
        from { transform: translateY(100px); opacity: 0; }
        to { transform: translateY(0); opacity: 1; }
    }

    @keyframes ae-icon-pulse {
        0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 109, 0, 0.7); }
        70% { transform: scale(1.1); box-shadow: 0 0 0 15px rgba(255, 109, 0, 0); }
        100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 109, 0, 0); }
    }

    /* نمایش فقط در موبایل (زیر 768 پیکسل) */
    @media (max-width: 768px) {
        .ae-mobile-call-bar {
            display: block;
        }
        
        /* اضافه کردن پدینگ به انتهای بدنه سایت تا محتوا پشت دکمه مخفی نشود */
        body {
            padding-bottom: 80px;
        }
    }



    .ae-coverage-section {
        padding: 100px 0;
        position: relative;
        overflow: hidden;
        background: radial-gradient(circle at center, rgba(10, 25, 47, 0.8) 0%, var(--ae-bg) 100%);
    }

    html[data-theme="light"] .ae-coverage-section {
        background: radial-gradient(circle at center, #E0F2FE 0%, #F9FAFB 55%, #EEF2FF 100%);
    }

    /* Radar Background Animation */
    .ae-radar-bg {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 800px;
        height: 800px;
        z-index: 0;
        pointer-events: none;
        opacity: 0.15;
    }

    .ae-radar-circle {
        position: absolute;
        top: 50%; left: 50%;
        transform: translate(-50%, -50%);
        border: 1px solid var(--ae-accent);
        border-radius: 50%;
        animation: ae-radar-wave 4s infinite linear;
        box-shadow: 0 0 20px rgba(255, 109, 0, 0.2);
    }

    .ae-radar-circle:nth-child(1) { width: 200px; height: 200px; animation-delay: 0s; }
    .ae-radar-circle:nth-child(2) { width: 400px; height: 400px; animation-delay: 1.3s; }
    .ae-radar-circle:nth-child(3) { width: 600px; height: 600px; animation-delay: 2.6s; }

    @keyframes ae-radar-wave {
        0% { width: 0; height: 0; opacity: 1; }
        100% { width: 800px; height: 800px; opacity: 0; }
    }

    .ae-coverage-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 5%;
        position: relative;
        z-index: 2;
    }

    .ae-coverage-header { text-align: center; margin-bottom: 40px; }
    .ae-coverage-subtitle { font-size: 1.1rem; color: var(--ae-text-muted); margin-top: 15px; }

    /* Tabs Styling */
    .ae-region-tabs {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
        margin-bottom: 40px;
    }

    .ae-tab-btn {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        color: #fff;
        padding: 12px 25px;
        border-radius: 50px;
        font-size: 1.05rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .ae-tab-btn:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: translateY(-2px);
    }

    .ae-tab-btn.active {
        background: var(--ae-accent);
        border-color: var(--ae-accent);
        color: #fff;
        box-shadow: 0 5px 20px rgba(255, 109, 0, 0.4);
    }

    html[data-theme="light"] .ae-tab-btn {
        background: #FFFFFF;
        border-color: rgba(148, 163, 184, 0.45);
        color: #111827;
        box-shadow: 0 10px 24px rgba(148, 163, 184, 0.25);
    }

    html[data-theme="light"] .ae-tab-btn:hover {
        background: linear-gradient(135deg, #FEFCE8, #FFFFFF);
        border-color: rgba(250, 204, 21, 0.9);
        box-shadow: 0 14px 30px rgba(250, 204, 21, 0.35);
    }

    html[data-theme="light"] .ae-tab-btn.active {
        color: #111827;
        background: linear-gradient(135deg, #FED7AA, #FEF9C3);
        box-shadow: 0 14px 32px rgba(248, 181, 92, 0.5);
    }

    /* Panels & Glass Cards */
    .ae-panel {
        display: none; /* مخفی در حالت عادی */
        animation: ae-fade-up 0.5s ease forwards;
    }

    .ae-panel.active { display: block; }

    .ae-panel-glass {
        background: rgba(255, 255, 255, 0.02);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 30px;
        padding: 40px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.3), inset 0 0 20px rgba(255,255,255,0.02);
    }

    .ae-panel-title {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 1.5rem;
        color: #fff;
        margin-bottom: 30px;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        padding-bottom: 15px;
    }

    .ae-panel-title svg { width: 24px; height: 24px; color: var(--ae-accent); }

    /* Neighborhood Grid / Tags */
    .ae-neighborhood-grid {
        list-style: none;
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 15px;
    }

    .ae-neighborhood-grid li {
        background: rgba(0, 0, 0, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.05);
        padding: 12px 15px;
        border-radius: 12px;
        color: var(--ae-text-muted);
        font-size: 0.95rem;
        text-align: center;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        cursor: default;
    }

    /* Hover effect for neighborhoods (Glowing pin effect) */
    .ae-neighborhood-grid li::before {
        content: '';
        position: absolute;
        left: 0; top: 0;
        width: 3px; height: 100%;
        background: var(--ae-accent);
        transform: scaleY(0);
        transition: 0.3s ease;
    }

    .ae-neighborhood-grid li:hover {
        color: #fff;
        background: rgba(255, 109, 0, 0.05);
        border-color: rgba(255, 109, 0, 0.3);
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }

    .ae-neighborhood-grid li:hover::before { transform: scaleY(1); }

    /* Responsive */
    @media (max-width: 768px) {
        .ae-region-tabs { overflow-x: auto; flex-wrap: nowrap; justify-content: flex-start; padding-bottom: 10px; }
        .ae-tab-btn { flex-shrink: 0; font-size: 0.95rem; padding: 10px 20px; }
        .ae-panel-glass { padding: 25px; border-radius: 20px; }
        .ae-neighborhood-grid { grid-template-columns: repeat(2, 1fr); }
    }



    .ae-core-services {
        padding: 100px 0;
        position: relative;
    }

    .ae-services-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 5%;
    }

    /* هدر بخش */
    .ae-services-header {
        text-align: center;
        margin-bottom: 60px;
        max-width: 700px;
        margin-inline: auto;
    }

    .ae-services-header .ae-section-title {
        font-size: 2.2rem;
        font-weight: 900;
        margin-bottom: 15px;
        color: #fff;
    }

    .ae-services-header .ae-section-title span {
        color: var(--ae-accent);
    }

    .ae-services-header .ae-section-subtitle {
        color: var(--ae-text-muted);
        line-height: 1.8;
        font-size: 1.05rem;
    }

    /* گرید کارت‌ها */
    .ae-services-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    /* طراحی کارت ساده و شیشه‌ای */
    .ae-s-card {
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 20px;
        padding: 35px 30px;
        transition: all 0.4s ease;
        display: flex;
        flex-direction: column;
        align-items: flex-start; /* چپ‌چین یا راست‌چین منظم */
    }

    .ae-s-card:hover {
        background: rgba(255, 109, 0, 0.03);
        border-color: rgba(255, 109, 0, 0.3);
        transform: translateY(-8px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    }

    .ae-s-icon-box {
        width: 60px;
        height: 60px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 16px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 25px;
        color: var(--ae-accent);
        transition: 0.4s ease;
    }

    .ae-s-card:hover .ae-s-icon-box {
        background: var(--ae-accent);
        color: #fff;
        transform: scale(1.1) rotate(-5deg);
        box-shadow: 0 10px 20px rgba(255, 109, 0, 0.3);
    }

    .ae-s-icon-box svg {
        width: 30px;
        height: 30px;
    }

    .ae-s-content h3 {
        color: #fff;
        font-size: 1.3rem;
        font-weight: 800;
        margin-bottom: 15px;
    }

    .ae-s-content p {
        color: var(--ae-text-muted);
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 25px;
        flex-grow: 1; /* برای هم‌تراز شدن دکمه‌ها در پایین */
    }

    .ae-s-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: var(--ae-cyan);
        text-decoration: none;
        font-weight: 700;
        font-size: 0.95rem;
        transition: 0.3s ease;
        padding-bottom: 5px;
        border-bottom: 1px solid transparent;
    }

    .ae-s-btn svg {
        width: 18px;
        height: 18px;
        transition: transform 0.3s ease;
    }

    .ae-s-card:hover .ae-s-btn {
        color: var(--ae-accent);
        border-bottom-color: var(--ae-accent);
    }

    .ae-s-card:hover .ae-s-btn svg {
        transform: translateX(-5px); /* حرکت به سمت چپ در فارسی */
    }

    /* واکنش‌گرایی (Responsive) */
    @media (max-width: 1024px) {
        .ae-services-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 640px) {
        .ae-services-grid {
            grid-template-columns: 1fr;
        }
        .ae-services-header .ae-section-title {
            font-size: 1.8rem;
        }
        .ae-s-card {
            padding: 25px 20px;
        }
    }

/* اصلاح رنگ متون و آیکون‌ها برای هماهنگی با لایت/دارک مود */
.ae-card-title, .ae-f-info h5, .ae-about-closing, .ae-article-title, 
.ae-contact-title, .ae-detail-item, .ae-footer-logo, .ae-faq-question, 
.ae-panel-title, .ae-services-header .ae-section-title, .ae-s-content h3 {
    color: var(--ae-text-main);
}

.ae-f-icon, .ae-view-all-btn, .ae-neighborhood-grid li {
    color: var(--ae-text-main);
}
    /* =========================================================
   LIGHT MODE OVERRIDES FOR ALL NEW SECTIONS
   ========================================================= */

/* --- 1. Features (کارت‌های شیشه‌ای ویژگی‌ها) --- */
html[data-theme="light"] .ae-glass-card {
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(15, 23, 42, 0.08);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}
html[data-theme="light"] .ae-glass-card:hover {
    background: #ffffff;
    border-color: var(--ae-accent);
    box-shadow: 0 15px 35px rgba(255, 109, 0, 0.15);
}
html[data-theme="light"] .ae-icon-box {
    background: rgba(15, 23, 42, 0.05);
    border-color: rgba(15, 23, 42, 0.1);
}
html[data-theme="light"] .ae-icon-box svg {
    color: #0F172A;
}
html[data-theme="light"] .ae-cta-card {
    background: rgba(255, 109, 0, 0.05);
}

/* --- 2. About Us (درباره ما) --- */
html[data-theme="light"] .ae-about-text-box {
    background: rgba(15, 23, 42, 0.03);
}
html[data-theme="light"] .ae-f-item {
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(15, 23, 42, 0.08);
}
html[data-theme="light"] .ae-f-item:hover {
    background: #ffffff;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.06);
}
html[data-theme="light"] .ae-f-icon {
    background: rgba(15, 23, 42, 0.05);
    border-color: rgba(15, 23, 42, 0.15);
}
html[data-theme="light"] .ae-about-closing {
    background: linear-gradient(90deg, rgba(255, 109, 0, 0.15), transparent);
}
html[data-theme="light"] .ae-image-glass-frame {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(15, 23, 42, 0.1);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
}

/* --- 3. Articles Carousel (مقالات) --- */
html[data-theme="light"] .ae-view-all-btn {
    background: #ffffff;
    border-color: rgba(15, 23, 42, 0.15);
    color: #0F172A;
}
html[data-theme="light"] .ae-article-card {
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(15, 23, 42, 0.08);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
}
html[data-theme="light"] .ae-article-card:hover {
    background: #ffffff;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.1);
}
html[data-theme="light"] .swiper-button-next, 
html[data-theme="light"] .swiper-button-prev {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(15, 23, 42, 0.15);
    color: #0F172A;
    box-shadow: 0 5px 15px rgba(15, 23, 42, 0.1);
}

/* --- 4. Contact Form & Footer (تماس و فوتر) --- */
html[data-theme="light"] .ae-contact-form-box {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(15, 23, 42, 0.1);
    box-shadow: 0 25px 50px rgba(15, 23, 42, 0.08);
}
html[data-theme="light"] .ae-input-group input {
    background: rgba(15, 23, 42, 0.04);
    border-color: rgba(15, 23, 42, 0.1);
    color: var(--ae-text-main);
}
html[data-theme="light"] .ae-input-group input:focus {
    background: #ffffff;
    border-color: var(--ae-accent);
    box-shadow: 0 0 0 4px rgba(255, 109, 0, 0.1);
}
html[data-theme="light"] .ae-d-icon {
    background: rgba(15, 23, 42, 0.06);
}
html[data-theme="light"] .ae-copyright {
    background: rgba(15, 23, 42, 0.03);
    border-color: rgba(15, 23, 42, 0.08);
}

/* --- 5. FAQ (سوالات متداول) --- */
html[data-theme="light"] .ae-faq-item {
    background: rgba(255, 255, 255, 0.6);
    border-color: rgba(15, 23, 42, 0.08);
}
html[data-theme="light"] .ae-faq-item:hover {
    background: #ffffff;
    border-color: var(--ae-accent);
}

/* --- 6. Mobile Call Bar (نوار تماس موبایل) --- */
html[data-theme="light"] .ae-mobile-call-bar {
    background: linear-gradient(to top, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.8) 50%, transparent);
}
html[data-theme="light"] .ae-call-button {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 109, 0, 0.4);
    box-shadow: 0 -5px 20px rgba(15, 23, 42, 0.1), 0 0 20px rgba(255, 109, 0, 0.15);
}
html[data-theme="light"] .ae-call-text span {
    color: #4B5563; /* خاکستری تیره برای خوانایی بهتر در لایت مود */
}
html[data-theme="light"] .ae-call-text strong {
    color: #0F172A;
}

/* --- 7. Coverage Regions (مناطق تحت پوشش) --- */
html[data-theme="light"] .ae-panel-glass {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(15, 23, 42, 0.08);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.05);
}
html[data-theme="light"] .ae-neighborhood-grid li {
    background: rgba(15, 23, 42, 0.04);
    border-color: rgba(15, 23, 42, 0.08);
}
html[data-theme="light"] .ae-neighborhood-grid li:hover {
    background: rgba(255, 109, 0, 0.08);
    border-color: rgba(255, 109, 0, 0.4);
    color: #0F172A;
}

/* --- 8. Core Services (خدمات اصلی) --- */
html[data-theme="light"] .ae-s-card {
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(15, 23, 42, 0.08);
}
html[data-theme="light"] .ae-s-card:hover {
    background: #ffffff;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
}
html[data-theme="light"] .ae-s-icon-box {
    background: rgba(15, 23, 42, 0.06);
}


/* ==================== DESKTOP DROPDOWN ==================== */

/* استایل کلی آیتم دارای زیرمنو */
.ae-has-dropdown {
    position: relative;
}

.ae-has-dropdown > a {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* آیکون فلش کوچک کنار کلمه خدمات */
.ae-dropdown-icon {
    transition: transform 0.3s ease;
}

.ae-has-dropdown:hover .ae-dropdown-icon {
    transform: rotate(180deg);
}

/* ظرف اصلی زیرمنو */
.ae-dropdown-menu {
    position: absolute;
    top: 120%; /* کمی فاصله از منوی اصلی */
    right: 0;
    width: 240px;
    background: var(--ae-glass-bg); /* استفاده از متغیر شیشه‌ای خودتان */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--ae-glass-border);
    border-radius: 12px;
    padding: 10px 0;
    list-style: none;
    box-shadow: var(--ae-glass-shadow);
    
    /* تنظیمات انیمیشن */
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    pointer-events: none;
    z-index: 1000;
}

/* نمایش زیرمنو هنگام هاور */
.ae-has-dropdown:hover .ae-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: all;
    top: 100%; /* چسبیدن به منو هنگام نمایش */
}

/* استایل لینک‌های داخل زیرمنو */
.ae-dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    color: var(--ae-text-main);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-right: 3px solid transparent;
}

/* حالت هاور روی لینک‌های زیرمنو */
.ae-dropdown-menu li a:hover {
    background: rgba(255, 109, 0, 0.1);
    color: var(--ae-accent);
    border-right-color: var(--ae-accent);
    padding-right: 25px; /* حرکت ملایم متن به چپ (در راست‌چین) */
}

/* --- اصلاحات مخصوص لایت مود --- */
html[data-theme="light"] .ae-dropdown-menu {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(15, 23, 42, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

html[data-theme="light"] .ae-dropdown-menu li a:hover {
    background: rgba(255, 109, 0, 0.05);
}

/* جلوگیری از بریدگی در لبه‌های منو */
.ae-dropdown-menu li:first-child a { border-top-left-radius: 8px; border-top-right-radius: 8px; }
.ae-dropdown-menu li:last-child a { border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; }



.border-top-accent {
    border-top: 4px solid var(--ae-accent) !important;
    transition: 0.3s;
}

    .border-top-accent:hover {
        transform: translateY(-8px);
        background: rgba(255,109,0,0.05) !important;
    }

.border-right-cyan {
    border-right: 4px solid var(--ae-cyan) !important;
}

.text-cyan {
    color: var(--ae-cyan) !important;
}

.text-accent {
    color: var(--ae-accent) !important;
}


/* تنظیمات تایپوگرافی محتوا برای خوانایی بهتر */
.article-content {
    font-size: 1.15rem;
    line-height: 2.2;
    color: #334155;
}

    .article-content h2, .article-content h3 {
        color: #0f172a;
        font-weight: 800;
        margin-top: 2.5rem;
        margin-bottom: 1.2rem;
    }

    .article-content img {
        max-width: 100%;
        height: auto;
        border-radius: 12px;
        margin: 2rem 0;
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    }

/* Hero Section */
.article-hero {
    min-height: 60vh;
    padding: 100px 0;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
    transform: scale(1.05);
    transition: transform 0.5s ease;
}

.article-hero:hover .hero-bg-image {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.95));
    z-index: 1;
}

/* انیمیشن‌ها */
.animate-fade-up {
    animation: fadeUp 0.8s ease-out forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pulse-btn {
    animation: pulseWarning 2s infinite;
}

@keyframes pulseWarning {
    0% {
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(220, 53, 69, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0);
    }
}

.animate-pulse-border {
    border: 2px solid transparent;
    animation: borderPulse 3s infinite;
}

@keyframes borderPulse {
    0% {
        border-color: rgba(220, 53, 69, 0.1);
    }

    50% {
        border-color: rgba(220, 53, 69, 0.5);
    }

    100% {
        border-color: rgba(220, 53, 69, 0.1);
    }
}

.animate-bounce {
    animation: bounce 2s infinite;
    display: inline-block;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-15px);
    }

    60% {
        transform: translateY(-7px);
    }
}

.article-rel-item {
    transition: all 0.3s ease;
}

    .article-rel-item:hover {
        transform: translateX(-5px);
    }

        .article-rel-item:hover h6 {
            color: #0d6efd;
        }






.ae-faq-item {
    background: rgba(255, 255, 255, 0.03); /* حالت شیشه‌ای تیره */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* دکمه سوال */
.ae-faq-question {
    width: 100%;
    padding: 20px 25px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    font-weight: 600;
    text-align: right;
    font-size: 1.05rem;
    cursor: pointer;
    transition: 0.3s;
}

    .ae-faq-question:hover {
        background: rgba(0, 240, 255, 0.05);
    }

    .ae-faq-question i {
        color: var(--ae-cyan);
        transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

/* بخش پاسخ */
.ae-faq-answer {
    max-height: 0; /* بسته بودن در حالت پیش‌فرض */
    overflow: hidden;
    transition: max-height 0.4s ease-out, background 0.3s;
    background: rgba(0, 0, 0, 0.2);
}

.answer-content {
    padding: 20px 25px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.95rem;
}

/* استایل وضعیت فعال (Open) */
.ae-faq-item.active {
    border-color: var(--ae-cyan);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.1);
    background: rgba(255, 255, 255, 0.06);
}

    .ae-faq-item.active .ae-faq-question i {
        transform: rotate(135deg); /* تبدیل پلاس به ضربدر */
        color: #ff4d4d; /* تغییر رنگ آیکون هنگام باز شدن */
    }