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

:root {
    --primary: #1a73e8;
    --primary-light: #4285f4;
    --primary-dark: #0d47a1;
    --primary-glow: rgba(26, 115, 232, 0.25);

    --gold: #c9a84c;
    --gold-light: #dfc267;
    --gold-dark: #b8922e;
    --gold-glow: rgba(201, 168, 76, 0.3);

    --dark: #0a0a1a;
    --dark-secondary: #14142a;
    --light: #ffffff;
    --light-secondary: #f8f9fc;
    --gray-light: #eef0f5;
    --gray: #d1d5db;
    --text-dark: #1a1a2e;
    --text-gray: #6b7280;
    --text-light: #9ca3af;

    --glass-bg: rgba(255, 255, 255, 0.06);
    --glass-border: rgba(255, 255, 255, 0.08);

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.12);
    --shadow-gold: 0 8px 32px rgba(201, 168, 76, 0.25);

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;

    --font: 'Vazirmatn', system-ui, -apple-system, sans-serif;
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   BASE
   ======================================== */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background: var(--light);
    color: var(--text-dark);
    line-height: 1.8;
    direction: rtl;
    overflow-x: hidden;
}

body.dark {
    --light: #0a0a18;
    --light-secondary: #12122a;
    --gray-light: #1a1a32;
    --gray: #2a2a42;
    --text-dark: #e8e8f0;
    --text-gray: #9494aa;
    --text-light: #6a6a82;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.04);
    background: #060612;
}

::selection {
    background: var(--gold);
    color: var(--dark);
}

::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--gray-light);
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--primary), var(--gold));
    border-radius: var(--radius-full);
}

/* ========================================
   UTILITIES
   ======================================== */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(201, 168, 76, 0.08);
    padding: 6px 20px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(201, 168, 76, 0.15);
    margin-bottom: 16px;
}

.section-tag i {
    font-size: 0.9rem;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-desc {
    color: var(--text-gray);
    max-width: 640px;
    margin: 0 auto;
    font-size: 1.05rem;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    .section-desc {
        font-size: 0.95rem;
    }
}

/* ========================================
   GLASS CARD
   ======================================== */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    transition: all 0.4s var(--ease-spring);
}

.glass-card:hover {
    border-color: rgba(201, 168, 76, 0.2);
    box-shadow: var(--shadow-lg);
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border: none;
    border-radius: var(--radius-full);
    font-family: var(--font);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.4s var(--ease-spring);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--dark);
    box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(201, 168, 76, 0.35);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    box-shadow: 0 4px 16px rgba(26, 115, 232, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(26, 115, 232, 0.35);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    transform: translateY(-3px);
}

.btn-large {
    padding: 18px 48px;
    font-size: 1.05rem;
}

.btn .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: rippleAnim 0.6s linear forwards;
    pointer-events: none;
}

@keyframes rippleAnim {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* ========================================
   REVEAL
   ======================================== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s var(--ease-spring);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}
.reveal-delay-2 {
    transition-delay: 0.2s;
}
.reveal-delay-3 {
    transition-delay: 0.3s;
}
.reveal-delay-4 {
    transition-delay: 0.4s;
}

/* ========================================
   NAVBAR
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 14px 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.4s var(--ease-smooth);
}

body.dark .navbar {
    background: rgba(10, 10, 24, 0.85);
    border-bottom-color: rgba(255, 255, 255, 0.04);
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 900;
    text-decoration: none;
}

.logo-icon {
    font-size: 2rem;
    color: var(--gold);
}

.logo-text {
    color: var(--text-dark);
}

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

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    position: relative;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-gray);
    transition: color 0.2s var(--ease-smooth);
    padding: 4px 0;
    text-decoration: none;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    right: 0;
    width: 0;
    height: 2.5px;
    background: linear-gradient(90deg, var(--gold), var(--primary));
    transition: width 0.4s var(--ease-smooth);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-dark);
}
.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

body.dark .nav-link:hover,
body.dark .nav-link.active {
    color: #fff;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.theme-toggle {
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: var(--gray-light);
    color: var(--text-dark);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.4s var(--ease-spring);
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-toggle:hover {
    background: var(--primary);
    color: #fff;
    transform: rotate(20deg);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
    padding: 4px;
}

.mobile-menu {
    position: fixed;
    top: 70px;
    right: -320px;
    width: 280px;
    height: 100vh;
    background: var(--light);
    padding: 40px 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: right 0.4s var(--ease-spring);
    z-index: 999;
    box-shadow: var(--shadow-xl);
    overflow-y: auto;
}

body.dark .mobile-menu {
    background: var(--dark-secondary);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu a {
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--text-dark);
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-light);
    transition: all 0.2s var(--ease-smooth);
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.mobile-menu a:hover {
    color: var(--gold);
    padding-right: 8px;
}

.mobile-menu .mobile-cta {
    margin-top: 12px;
    border-bottom: none;
    justify-content: center;
}

@media (max-width: 992px) {
    .nav-links {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .nav-actions .btn-primary {
        display: none;
    }
    .mobile-toggle {
        display: block;
    }
    .logo-text {
        font-size: 1.2rem;
    }
}

/* ========================================
   PROGRESS BAR
   ======================================== */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    z-index: 1001;
    background: transparent;
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary), var(--gold), var(--primary));
    background-size: 200% 100%;
    animation: progressShine 2s linear infinite;
    transition: width 0.1s linear;
}

@keyframes progressShine {
    0%,
    100% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 100% 0%;
    }
}

/* ========================================
   HERO
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(160deg, #080820 0%, #0d1a3a 40%, #0a0a1a 100%);
    overflow: hidden;
    isolation: isolate;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(26, 115, 232, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 80%, rgba(201, 168, 76, 0.08) 0%, transparent 50%);
    z-index: 0;
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero .container {
    position: relative;
    z-index: 1;
}

/* ====== وضعیت دسکتاپ ====== */
@media (min-width: 993px) {
    .hero-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
    }
    
    .hero-content {
        order: 1;
        animation: fadeInUp 1s var(--ease-spring) forwards;
    }
    
    .hero-visual {
        order: 2;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .floating-cards {
        position: relative;
        width: 100%;
        max-width: 400px;
        min-height: 320px;
    }
    
    .floating-card {
        position: absolute;
        background: rgba(255, 255, 255, 0.04);
        backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.06);
        border-radius: var(--radius-md);
        padding: 20px 24px;
        color: #fff;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
        animation: floatCard 6s ease-in-out infinite;
    }
    .floating-card:nth-child(1) {
        top: 0;
        right: 0;
        animation-delay: 0s;
    }
    .floating-card:nth-child(2) {
        top: 45%;
        right: -20px;
        animation-delay: 2s;
    }
    .floating-card:nth-child(3) {
        bottom: 0;
        left: 0;
        animation-delay: 4s;
    }
    
    @keyframes floatCard {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-12px); }
    }
}

/* ====== وضعیت موبایل و تبلت ====== */
@media (max-width: 992px) {
    .hero-grid {
        display: flex;
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .hero-content {
        order: 1;
        text-align: center;
        width: 100%;
        animation: fadeInUp 1s var(--ease-spring) forwards;
    }
    
    .hero-visual {
        order: 2;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .floating-cards {
        display: flex;
        flex-direction: column;
        gap: 12px;
        max-width: 320px;
        width: 100%;
        min-height: auto;
    }
    
    .floating-card {
        position: relative !important;
        width: 100%;
        background: rgba(255, 255, 255, 0.04);
        backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.06);
        border-radius: var(--radius-md);
        padding: 20px 24px;
        color: #fff;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
        animation: none !important;
        top: auto !important;
        right: auto !important;
        bottom: auto !important;
        left: auto !important;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    .hero-desc {
        margin: 0 auto 32px;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-stats {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    .hero-desc {
        font-size: 0.95rem;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    .hero-stats {
        gap: 20px;
        flex-wrap: wrap;
    }
    .stat-divider {
        display: none;
    }
}

/* ====== المان‌های مشترک ====== */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(201, 168, 76, 0.12);
    backdrop-filter: blur(8px);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gold);
    border: 1px solid rgba(201, 168, 76, 0.2);
    margin-bottom: 24px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse-dot 1.8s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 0.3; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.2); }
}

.hero-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 520px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

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

.hero-stat-number {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--gold);
    display: block;
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.08);
}

.floating-card .fc-icon {
    font-size: 1.8rem;
    margin-bottom: 6px;
}
.floating-card .fc-title {
    font-weight: 700;
    font-size: 0.95rem;
}
.floating-card .fc-desc {
    font-size: 0.8rem;
    opacity: 0.6;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 2;
    animation: bounce 2s ease-in-out infinite;
}

.hero-scroll span {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.7rem;
    display: block;
    margin-bottom: 8px;
}

.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    position: relative;
    margin: 0 auto;
}

.scroll-mouse::before {
    content: '';
    width: 4px;
    height: 8px;
    background: var(--gold);
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scrollWheel 1.8s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    80% { opacity: 0; transform: translateX(-50%) translateY(12px); }
    100% { opacity: 0; transform: translateX(-50%) translateY(0); }
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-6px); }
}

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

/* ========================================
   SERVICES
   ======================================== */
.services {
    padding: 100px 0;
    background: var(--light-secondary);
}

body.dark .services {
    background: var(--dark-secondary);
}

.services-switch {
    display: flex;
    justify-content: center;
    margin-bottom: 56px;
}

.switch-group {
    display: flex;
    gap: 6px;
    background: var(--gray-light);
    padding: 6px;
    border-radius: var(--radius-full);
    border: 1px solid var(--glass-border);
}

body.dark .switch-group {
    background: rgba(255, 255, 255, 0.04);
}

.switch-btn {
    padding: 14px 36px;
    font-family: var(--font);
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    background: transparent;
    color: var(--text-gray);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.4s var(--ease-spring);
    display: flex;
    align-items: center;
    gap: 10px;
}

.switch-btn.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    box-shadow: 0 8px 24px rgba(26, 115, 232, 0.3);
}

.switch-btn:hover:not(.active) {
    color: var(--text-dark);
    background: rgba(26, 115, 232, 0.06);
}

@media (max-width: 480px) {
    .switch-group {
        flex-direction: column;
        border-radius: var(--radius-md);
        width: 100%;
        max-width: 300px;
    }
    .switch-btn {
        justify-content: center;
        padding: 12px 20px;
    }
}

.services-content {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s var(--ease-spring);
}

.services-content.active {
    display: block;
    animation: fadeInUp 0.4s var(--ease-spring) forwards;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.service-card {
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    transition: all 0.4s var(--ease-spring);
    position: relative;
    overflow: hidden;
    cursor: default;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--gold));
    transform: scaleX(0);
    transition: transform 0.4s var(--ease-smooth);
    transform-origin: right;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.service-icon-wrap {
    position: relative;
    width: 68px;
    height: 68px;
    margin-bottom: 20px;
}

.service-icon-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border-radius: var(--radius-md);
    opacity: 0.1;
    transition: all 0.4s var(--ease-spring);
}

.service-card:hover .service-icon-bg {
    opacity: 0.2;
    transform: rotate(8deg) scale(1.05);
}

.service-icon {
    position: relative;
    font-size: 2.4rem;
    color: var(--primary);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary);
}

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

/* ========================================
   ABOUT
   ======================================== */
.about {
    padding: 100px 0;
    background: var(--light);
}

body.dark .about {
    background: var(--dark);
}

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

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

.about-avatar {
    position: relative;
    display: inline-block;
}

.about-avatar-inner {
    width: 280px;
    height: 280px;
    background: linear-gradient(135deg, var(--primary), var(--gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.avatar-text {
    font-size: 5rem;
    font-weight: 900;
    color: #fff;
}

.about-ring {
    position: absolute;
    inset: -15px;
    border: 3px solid var(--gold);
    border-radius: 50%;
    animation: rotate 12s linear infinite;
    opacity: 0.4;
}

.about-ring-2 {
    position: absolute;
    inset: -28px;
    border: 1.5px dashed var(--primary);
    border-radius: 50%;
    animation: rotate-reverse 16s linear infinite;
    opacity: 0.25;
}

@keyframes rotate {
    from { transform: rotate(0); }
    to { transform: rotate(360deg); }
}

@keyframes rotate-reverse {
    from { transform: rotate(360deg); }
    to { transform: rotate(0); }
}

.about-social {
    margin-top: 28px;
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: var(--radius-full);
    background: var(--gray-light);
    color: var(--text-gray);
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.4s var(--ease-spring);
    border: 1px solid transparent;
    text-decoration: none;
}

.social-link:hover {
    color: var(--gold);
    background: rgba(201, 168, 76, 0.08);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.about-content h2 {
    font-size: 2.6rem;
    margin-bottom: 16px;
}

.about-bio {
    color: var(--text-gray);
    margin-bottom: 28px;
    line-height: 1.9;
    font-size: 1.05rem;
}

.about-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
}

.expertise-chip {
    padding: 8px 18px;
    border-radius: var(--radius-full);
    background: rgba(26, 115, 232, 0.06);
    border: 1px solid rgba(26, 115, 232, 0.1);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: all 0.2s var(--ease-smooth);
}

.expertise-chip:hover {
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.06);
    transform: translateY(-2px);
}

.about-stats {
    display: flex;
    gap: 48px;
    margin-bottom: 36px;
}

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

.about-stat strong {
    font-size: 1.8rem;
    color: var(--primary);
    display: block;
    line-height: 1.2;
}

.about-stat span {
    font-size: 0.8rem;
    color: var(--text-gray);
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-content {
        text-align: center;
    }
    .about-expertise {
        justify-content: center;
    }
    .about-stats {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .about-avatar-inner {
        width: 200px;
        height: 200px;
    }
    .avatar-text {
        font-size: 3.5rem;
    }
    .about-stats {
        flex-direction: column;
        gap: 12px;
    }
}

/* ========================================
   PROJECTS
   ======================================== */
.projects {
    padding: 100px 0;
    background: var(--light-secondary);
}

body.dark .projects {
    background: var(--dark-secondary);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 28px;
}

.project-card {
    padding: 32px 28px;
    border-radius: var(--radius-lg);
    transition: all 0.4s var(--ease-spring);
    border-bottom: 3px solid transparent;
}

.project-card:hover {
    transform: translateY(-8px);
    border-bottom-color: var(--gold);
    box-shadow: var(--shadow-xl);
}

.project-icon {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 16px;
    display: inline-block;
}

.project-card h3 {
    font-size: 1.2rem;
    margin-bottom: 16px;
    color: var(--primary);
}

.project-features {
    list-style: none;
    padding: 0;
}

.project-features li {
    font-size: 0.85rem;
    color: var(--text-gray);
    padding: 6px 0;
    border-bottom: 1px dashed var(--gray-light);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s var(--ease-smooth);
}

.project-features li:last-child {
    border-bottom: none;
}

.project-features li:hover {
    padding-right: 6px;
    color: var(--gold);
}

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

/* ========================================
   COURSES
   ======================================== */
.courses {
    padding: 100px 0;
    background: var(--light);
}

body.dark .courses {
    background: var(--dark);
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

.course-card {
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.4s var(--ease-spring);
    position: relative;
    overflow: hidden;
}

.course-card::after {
    content: '';
    position: absolute;
    inset: -50%;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.04), transparent);
    opacity: 0;
    transition: opacity 0.4s var(--ease-smooth);
}

.course-card:hover::after {
    opacity: 1;
}

.course-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.course-badge {
    position: absolute;
    top: -8px;
    right: 20px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--dark);
    padding: 4px 16px;
    border-radius: var(--radius-full);
    font-size: 0.65rem;
    font-weight: 700;
}

.course-icon {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 16px;
    display: inline-block;
}

.course-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.course-card p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 18px;
}

.course-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.course-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.soon-badge {
    display: inline-block;
    padding: 10px 24px;
    border-radius: var(--radius-full);
    background: rgba(26, 115, 232, 0.06);
    border: 1px solid var(--primary);
    color: var(--primary);
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.4s var(--ease-spring);
}

.soon-badge:hover {
    background: var(--primary);
    color: #fff;
    transform: scale(1.02);
}

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

/* ========================================
   MISSION
   ======================================== */
.mission {
    padding: 80px 0;
}

.mission-card {
    padding: 60px 48px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.mission-card::before {
    content: '';
    position: absolute;
    inset: -50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.04), transparent);
    animation: rotate 30s linear infinite;
}

.mission-icon {
    font-size: 3.5rem;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.mission-card h2 {
    font-size: 2rem;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.mission-card p {
    opacity: 0.85;
    max-width: 600px;
    margin: 0 auto 32px;
    position: relative;
    z-index: 2;
    font-size: 1.05rem;
}

.mission-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 36px;
    position: relative;
    z-index: 2;
}

.mission-stats div {
    text-align: center;
}

.mission-stats strong {
    font-size: 2rem;
    display: block;
}

.mission-stats span {
    font-size: 0.85rem;
    opacity: 0.7;
}

.mission-card .btn {
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .mission-card {
        padding: 40px 24px;
    }
    .mission-stats {
        flex-direction: column;
        gap: 16px;
    }
}

/* ========================================
   BLOG
   ======================================== */
.blog {
    padding: 100px 0;
    background: var(--light-secondary);
}

body.dark .blog {
    background: var(--dark-secondary);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

.blog-card {
    padding: 30px 28px;
    border-radius: var(--radius-lg);
    transition: all 0.4s var(--ease-spring);
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.blog-date {
    font-size: 0.75rem;
    color: var(--gold);
    background: rgba(201, 168, 76, 0.08);
    padding: 4px 14px;
    border-radius: var(--radius-full);
    display: inline-block;
    margin-bottom: 12px;
}

.blog-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    line-height: 1.5;
}

.blog-card p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 16px;
    line-height: 1.7;
}

.read-more {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s var(--ease-smooth);
    text-decoration: none;
}

.read-more:hover {
    gap: 14px;
    color: var(--gold);
}

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

/* ========================================
   CONSULTATION
   ======================================== */
.consultation {
    padding: 100px 0;
    background: var(--light);
}

body.dark .consultation {
    background: var(--dark);
}

.consultation-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.consultation-info {
    padding: 48px 44px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
}

.consultation-info .section-tag {
    background: rgba(201, 168, 76, 0.15);
    border-color: rgba(201, 168, 76, 0.2);
    color: var(--gold);
}

.consultation-info h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.consultation-info p {
    opacity: 0.85;
    margin-bottom: 32px;
    line-height: 1.8;
}

.info-lines {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.info-line {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    opacity: 0.85;
    transition: all 0.2s var(--ease-smooth);
}

.info-line:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(-4px);
}

.consultation-form {
    padding: 48px 44px;
    background: var(--light);
}

body.dark .consultation-form {
    background: var(--dark-secondary);
}

.form-group {
    margin-bottom: 18px;
}

.form-control {
    width: 100%;
    padding: 14px 20px;
    border: 2px solid var(--gray-light);
    border-radius: var(--radius-md);
    font-family: var(--font);
    font-size: 0.95rem;
    background: var(--light);
    color: var(--text-dark);
    transition: all 0.2s var(--ease-smooth);
}

.form-control:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.08);
}

body.dark .form-control {
    background: var(--dark-secondary);
    border-color: var(--gray);
}

.btn-submit {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.4s var(--ease-spring);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.form-note {
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-gray);
    margin-top: 16px;
}

.form-note i {
    margin-left: 6px;
}

@media (max-width: 992px) {
    .consultation-wrapper {
        grid-template-columns: 1fr;
    }
    .consultation-info {
        padding: 32px 24px;
    }
    .consultation-form {
        padding: 32px 24px;
    }
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--dark);
    color: var(--text-light);
    padding: 60px 0 28px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand h3 {
    color: #fff;
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.footer-brand p {
    opacity: 0.6;
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-links h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 16px;
}

.footer-links a {
    display: block;
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 8px;
    transition: all 0.2s var(--ease-smooth);
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--gold);
    transform: translateX(-4px);
}

.footer-newsletter h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 16px;
}

.newsletter-form {
    display: flex;
    gap: 8px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 18px;
    border: none;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    font-family: var(--font);
}

.newsletter-form input::placeholder {
    color: var(--text-light);
}

.newsletter-form button {
    padding: 0 20px;
    border: none;
    border-radius: var(--radius-full);
    background: var(--gold);
    color: var(--dark);
    cursor: pointer;
    transition: all 0.2s var(--ease-spring);
}

.newsletter-form button:hover {
    transform: scale(1.05);
    background: var(--gold-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 0.8rem;
    opacity: 0.5;
}

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

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-links a:hover {
        transform: none;
    }
    .newsletter-form {
        max-width: 320px;
        margin: 0 auto;
    }
}

/* ========================================
   BACK TO TOP
   ======================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: all 0.4s var(--ease-spring);
    z-index: 900;
    opacity: 0;
    transform: scale(0);
}

.back-to-top.visible {
    opacity: 1;
    transform: scale(1);
}

.back-to-top:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: var(--shadow-lg);
}

@media (max-width: 480px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }
}

/* ========================================
   HERO - کاملاً تمام صفحه
   ======================================== */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    min-height: 100dvh; /* برای موبایل‌های جدید */
    width: 100%;
    padding: 80px 0 30px;
    background: linear-gradient(160deg, #080820 0%, #0d1a3a 40%, #0a0a1a 100%);
    overflow: hidden;
    isolation: isolate;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(26, 115, 232, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 80%, rgba(201, 168, 76, 0.08) 0%, transparent 50%);
    z-index: 0;
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: calc(100vh - 120px);
    min-height: calc(100dvh - 120px);
}

.hero-content {
    order: 1;
    animation: fadeInUp 1s var(--ease-spring) forwards;
}

.hero-visual {
    order: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ========================================
   هیرو - دسکتاپ
   ======================================== */
@media (min-width: 993px) {
    .hero {
        min-height: 100vh;
        min-height: 100dvh;
        padding: 90px 0 30px;
    }
    .hero-grid {
        min-height: calc(100vh - 140px);
        min-height: calc(100dvh - 140px);
        gap: 60px;
    }
    .floating-cards {
        position: relative;
        width: 100%;
        max-width: 400px;
        min-height: 320px;
    }
    .floating-card {
        position: absolute;
        animation: floatCard 6s ease-in-out infinite;
    }
    .floating-card:nth-child(1) {
        top: 0;
        right: 0;
        animation-delay: 0s;
    }
    .floating-card:nth-child(2) {
        top: 45%;
        right: -20px;
        animation-delay: 2s;
    }
    .floating-card:nth-child(3) {
        bottom: 0;
        left: 0;
        animation-delay: 4s;
    }
}

/* ========================================
   هیرو - موبایل و تبلت (کاملاً تمام صفحه)
   ======================================== */
@media (max-width: 992px) {
    .hero {
        min-height: 100vh !important;
        min-height: 100dvh !important;
        padding: 70px 0 16px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .hero .container {
        padding: 0 16px !important;
        width: 100% !important;
    }

    .hero-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
        min-height: calc(100vh - 100px) !important;
        min-height: calc(100dvh - 100px) !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
    }

    .hero-content {
        order: 1 !important;
        text-align: center !important;
        width: 100% !important;
        flex: 0 0 auto !important;
    }

    .hero-visual {
        order: 2 !important;
        width: 100% !important;
        flex: 0 0 auto !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .hero-title {
        font-size: 2rem !important;
        margin-bottom: 10px !important;
        line-height: 1.2 !important;
    }

    .hero-desc {
        font-size: 0.9rem !important;
        margin: 0 auto 16px !important;
        max-width: 100% !important;
        line-height: 1.6 !important;
    }

    .hero-badge {
        font-size: 0.65rem !important;
        padding: 4px 14px !important;
        margin-bottom: 12px !important;
    }

    .hero-buttons {
        margin-bottom: 18px !important;
        gap: 8px !important;
        justify-content: center !important;
        flex-wrap: wrap !important;
    }
    .hero-buttons .btn {
        padding: 8px 18px !important;
        font-size: 0.8rem !important;
    }

    .hero-stats {
        gap: 12px !important;
        padding-top: 12px !important;
        justify-content: center !important;
        flex-wrap: wrap !important;
        border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
    }

    .hero-stat-number {
        font-size: 1.4rem !important;
    }
    .hero-stat-label {
        font-size: 0.65rem !important;
    }
    .stat-divider {
        display: none !important;
    }

    .floating-cards {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        gap: 6px !important;
        max-width: 280px !important;
        justify-content: center !important;
        min-height: auto !important;
        width: 100% !important;
    }
    .floating-card {
        position: relative !important;
        padding: 8px 14px !important;
        border-radius: var(--radius-sm) !important;
        flex: 0 0 auto !important;
        width: auto !important;
        min-width: 70px !important;
        animation: none !important;
        top: auto !important;
        right: auto !important;
        bottom: auto !important;
        left: auto !important;
    }
    .floating-card .fc-icon {
        font-size: 1rem !important;
        margin-bottom: 0 !important;
    }
    .floating-card .fc-title {
        font-size: 0.65rem !important;
    }
    .floating-card .fc-desc {
        display: none !important;
    }

    .hero-scroll {
        display: none !important;
    }
}

/* ========================================
   هیرو - موبایل خیلی کوچک
   ======================================== */
@media (max-width: 480px) {
    .hero {
        min-height: 100vh !important;
        min-height: 100dvh !important;
        padding: 60px 0 12px !important;
    }
    .hero-grid {
        min-height: calc(100vh - 80px) !important;
        min-height: calc(100dvh - 80px) !important;
        gap: 6px !important;
    }
    .hero-title {
        font-size: 1.6rem !important;
        margin-bottom: 6px !important;
    }
    .hero-desc {
        font-size: 0.8rem !important;
        margin-bottom: 12px !important;
        line-height: 1.5 !important;
    }
    .hero-buttons .btn {
        padding: 6px 14px !important;
        font-size: 0.7rem !important;
        min-width: 80px !important;
    }
    .hero-buttons {
        gap: 6px !important;
        margin-bottom: 12px !important;
    }
    .hero-stats {
        gap: 8px !important;
        padding-top: 8px !important;
    }
    .hero-stat-number {
        font-size: 1.2rem !important;
    }
    .hero-stat-label {
        font-size: 0.55rem !important;
    }

    .floating-cards {
        max-width: 220px !important;
        gap: 4px !important;
    }
    .floating-card {
        padding: 4px 10px !important;
        min-width: 55px !important;
    }
    .floating-card .fc-icon {
        font-size: 0.8rem !important;
    }
    .floating-card .fc-title {
        font-size: 0.5rem !important;
    }
}

/* ========================================
   کارت‌های شناور - انیمیشن (فقط دسکتاپ)
   ======================================== */
@keyframes floatCard {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

/* ========================================
   اسکرول ایندیکیتور (فقط دسکتاپ)
   ======================================== */
@media (min-width: 993px) {
    .hero-scroll {
        position: absolute;
        bottom: 24px;
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
        z-index: 2;
        animation: bounce 2s ease-in-out infinite;
    }

    .hero-scroll span {
        color: rgba(255, 255, 255, 0.3);
        font-size: 0.65rem;
        display: block;
        margin-bottom: 6px;
    }

    .scroll-mouse {
        width: 22px;
        height: 34px;
        border: 2px solid rgba(255, 255, 255, 0.15);
        border-radius: 20px;
        position: relative;
        margin: 0 auto;
    }

    .scroll-mouse::before {
        content: '';
        width: 3px;
        height: 7px;
        background: var(--gold);
        position: absolute;
        top: 7px;
        left: 50%;
        transform: translateX(-50%);
        border-radius: 2px;
        animation: scrollWheel 1.8s ease-in-out infinite;
    }

    @keyframes scrollWheel {
        0% {
            opacity: 1;
            transform: translateX(-50%) translateY(0);
        }
        80% {
            opacity: 0;
            transform: translateX(-50%) translateY(10px);
        }
        100% {
            opacity: 0;
            transform: translateX(-50%) translateY(0);
        }
    }

    @keyframes bounce {
        0%,
        100% {
            transform: translateX(-50%) translateY(0);
        }
        50% {
            transform: translateX(-50%) translateY(-6px);
        }
    }
}

/* ========================================
   انیمیشن‌های ورود
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   ریسپانسیو موبایل - با اسکرول افقی
   ======================================== */

/* ====== تبلت و موبایل ====== */
@media (max-width: 992px) {
    /* هدرها کوچک‌تر */
    .section-title {
        font-size: 1.6rem !important;
        margin-bottom: 8px !important;
    }
    .section-desc {
        font-size: 0.85rem !important;
        max-width: 100% !important;
    }
    .section-header {
        margin-bottom: 24px !important;
    }
    .section-tag {
        font-size: 0.6rem !important;
        padding: 3px 12px !important;
        margin-bottom: 8px !important;
    }

    /* بخش‌ها با فاصله کمتر */
    .services,
    .about,
    .projects,
    .courses,
    .blog,
    .consultation {
        padding: 40px 0 !important;
    }

    /* ====== هیرو ====== */
    .hero {
        padding: 80px 0 30px !important;
        min-height: auto !important;
    }
    .hero-title {
        font-size: 1.8rem !important;
        margin-bottom: 10px !important;
    }
    .hero-desc {
        font-size: 0.85rem !important;
        margin-bottom: 16px !important;
        max-width: 100% !important;
    }
    .hero-badge {
        font-size: 0.65rem !important;
        padding: 4px 12px !important;
        margin-bottom: 12px !important;
    }
    .hero-buttons {
        margin-bottom: 20px !important;
        gap: 8px !important;
        justify-content: center !important;
    }
    .hero-buttons .btn {
        padding: 8px 18px !important;
        font-size: 0.8rem !important;
    }
    .hero-stats {
        gap: 12px !important;
        padding-top: 12px !important;
        justify-content: center !important;
        flex-wrap: wrap !important;
    }
    .hero-stat-number {
        font-size: 1.4rem !important;
    }
    .hero-stat-label {
        font-size: 0.65rem !important;
    }
    .stat-divider {
        display: none !important;
    }

    .hero-scroll {
        display: none !important;
    }

    /* کارت‌های شناور هیرو - جمع‌وجور */
    .floating-cards {
        max-width: 260px !important;
        gap: 6px !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
    }
    .floating-card {
        padding: 8px 14px !important;
        border-radius: var(--radius-sm) !important;
        flex: 0 0 auto !important;
        width: auto !important;
        min-width: 80px !important;
    }
    .floating-card .fc-icon {
        font-size: 1rem !important;
        margin-bottom: 0 !important;
    }
    .floating-card .fc-title {
        font-size: 0.65rem !important;
    }
    .floating-card .fc-desc {
        display: none !important;
    }

    /* ====== سرویس‌ها - اسکرول افقی ====== */
    .services-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        gap: 14px !important;
        overflow-x: auto !important;
        padding: 4px 2px 12px 2px !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
    }
    .services-grid::-webkit-scrollbar {
        display: none !important;
    }
    .service-card {
        flex: 0 0 260px !important;
        min-width: 220px !important;
        padding: 18px 16px !important;
        border-radius: var(--radius-md) !important;
        scroll-snap-align: start !important;
    }
    .service-icon-wrap {
        width: 42px !important;
        height: 42px !important;
        margin-bottom: 10px !important;
    }
    .service-icon {
        font-size: 1.4rem !important;
    }
    .service-card h3 {
        font-size: 0.9rem !important;
        margin-bottom: 4px !important;
    }
    .service-card p {
        font-size: 0.75rem !important;
        line-height: 1.5 !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 3 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
    }

    /* ====== درباره ما ====== */
    .about-grid {
        gap: 20px !important;
    }
    .about-avatar-inner {
        width: 120px !important;
        height: 120px !important;
    }
    .avatar-text {
        font-size: 2.2rem !important;
    }
    .about-ring {
        inset: -8px !important;
        border-width: 2px !important;
    }
    .about-ring-2 {
        inset: -14px !important;
        border-width: 1px !important;
    }
    .about-social {
        margin-top: 12px !important;
        gap: 6px !important;
    }
    .social-link {
        padding: 4px 12px !important;
        font-size: 0.7rem !important;
    }
    .about-content h2 {
        font-size: 1.4rem !important;
        margin-bottom: 8px !important;
    }
    .about-bio {
        font-size: 0.85rem !important;
        margin-bottom: 14px !important;
        line-height: 1.6 !important;
    }
    .about-expertise {
        gap: 6px !important;
        margin-bottom: 14px !important;
        justify-content: center !important;
    }
    .expertise-chip {
        padding: 3px 10px !important;
        font-size: 0.65rem !important;
    }
    .about-stats {
        gap: 16px !important;
        margin-bottom: 16px !important;
        justify-content: center !important;
    }
    .about-stat strong {
        font-size: 1.2rem !important;
    }
    .about-stat span {
        font-size: 0.65rem !important;
    }
    .about-content .btn {
        padding: 8px 20px !important;
        font-size: 0.8rem !important;
    }

    /* ====== پروژه‌ها - اسکرول افقی ====== */
    .projects-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        gap: 14px !important;
        overflow-x: auto !important;
        padding: 4px 2px 12px 2px !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
    }
    .projects-grid::-webkit-scrollbar {
        display: none !important;
    }
    .project-card {
        flex: 0 0 280px !important;
        min-width: 240px !important;
        padding: 18px 16px !important;
        border-radius: var(--radius-md) !important;
        scroll-snap-align: start !important;
    }
    .project-icon {
        font-size: 1.8rem !important;
        margin-bottom: 8px !important;
    }
    .project-card h3 {
        font-size: 0.9rem !important;
        margin-bottom: 8px !important;
    }
    .project-features li {
        font-size: 0.7rem !important;
        padding: 3px 0 !important;
    }

    /* ====== دوره‌ها - اسکرول افقی ====== */
    .courses-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        gap: 14px !important;
        overflow-x: auto !important;
        padding: 4px 2px 12px 2px !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
    }
    .courses-grid::-webkit-scrollbar {
        display: none !important;
    }
    .course-card {
        flex: 0 0 250px !important;
        min-width: 210px !important;
        padding: 18px 16px !important;
        border-radius: var(--radius-md) !important;
        scroll-snap-align: start !important;
    }
    .course-badge {
        font-size: 0.5rem !important;
        padding: 2px 10px !important;
        top: -5px !important;
        right: 10px !important;
    }
    .course-icon {
        font-size: 1.8rem !important;
        margin-bottom: 8px !important;
    }
    .course-card h3 {
        font-size: 0.9rem !important;
        margin-bottom: 4px !important;
    }
    .course-card p {
        font-size: 0.75rem !important;
        margin-bottom: 10px !important;
    }
    .course-meta {
        font-size: 0.65rem !important;
        gap: 10px !important;
        margin-bottom: 10px !important;
    }
    .soon-badge {
        padding: 4px 12px !important;
        font-size: 0.65rem !important;
    }

    /* ====== وبلاگ - اسکرول افقی ====== */
    .blog-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        gap: 14px !important;
        overflow-x: auto !important;
        padding: 4px 2px 12px 2px !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
    }
    .blog-grid::-webkit-scrollbar {
        display: none !important;
    }
    .blog-card {
        flex: 0 0 250px !important;
        min-width: 210px !important;
        padding: 16px 14px !important;
        border-radius: var(--radius-md) !important;
        scroll-snap-align: start !important;
    }
    .blog-date {
        font-size: 0.6rem !important;
        padding: 2px 8px !important;
        margin-bottom: 6px !important;
    }
    .blog-card h3 {
        font-size: 0.85rem !important;
        margin-bottom: 4px !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
    }
    .blog-card p {
        font-size: 0.75rem !important;
        margin-bottom: 8px !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
    }
    .read-more {
        font-size: 0.7rem !important;
    }

    /* ====== ماموریت ====== */
    .mission {
        padding: 30px 0 !important;
    }
    .mission-card {
        padding: 24px 18px !important;
        border-radius: var(--radius-lg) !important;
    }
    .mission-icon {
        font-size: 2.2rem !important;
        margin-bottom: 8px !important;
    }
    .mission-card h2 {
        font-size: 1.3rem !important;
        margin-bottom: 8px !important;
    }
    .mission-card p {
        font-size: 0.85rem !important;
        margin-bottom: 16px !important;
    }
    .mission-stats {
        gap: 16px !important;
        margin-bottom: 16px !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
    }
    .mission-stats strong {
        font-size: 1.2rem !important;
    }
    .mission-stats span {
        font-size: 0.65rem !important;
    }
    .mission-card .btn {
        padding: 8px 20px !important;
        font-size: 0.8rem !important;
    }

    /* ====== تماس ====== */
    .consultation-wrapper {
        border-radius: var(--radius-lg) !important;
        grid-template-columns: 1fr !important;
    }
    .consultation-info {
        padding: 20px 16px !important;
    }
    .consultation-info h2 {
        font-size: 1.3rem !important;
        margin-bottom: 8px !important;
    }
    .consultation-info p {
        font-size: 0.8rem !important;
        margin-bottom: 16px !important;
    }
    .info-line {
        padding: 6px 12px !important;
        font-size: 0.75rem !important;
    }
    .consultation-form {
        padding: 20px 16px !important;
    }
    .form-control {
        padding: 8px 12px !important;
        font-size: 0.8rem !important;
    }
    .btn-submit {
        padding: 10px !important;
        font-size: 0.85rem !important;
    }
    .form-note {
        font-size: 0.6rem !important;
    }

    /* ====== فوتر ====== */
    .footer {
        padding: 30px 0 16px !important;
    }
    .footer-grid {
        gap: 16px !important;
        margin-bottom: 20px !important;
        grid-template-columns: 1fr !important;
        text-align: center !important;
    }
    .footer-brand h3 {
        font-size: 1.1rem !important;
    }
    .footer-brand p {
        font-size: 0.75rem !important;
    }
    .footer-links h4 {
        font-size: 0.8rem !important;
        margin-bottom: 6px !important;
    }
    .footer-links a {
        font-size: 0.7rem !important;
        margin-bottom: 3px !important;
    }
    .footer-newsletter h4 {
        font-size: 0.8rem !important;
        margin-bottom: 6px !important;
    }
    .newsletter-form {
        max-width: 240px !important;
        margin: 0 auto !important;
    }
    .newsletter-form input {
        padding: 6px 12px !important;
        font-size: 0.75rem !important;
    }
    .newsletter-form button {
        padding: 0 12px !important;
    }
    .footer-bottom {
        font-size: 0.65rem !important;
        padding-top: 12px !important;
    }

    /* ====== دکمه بازگشت ====== */
    .back-to-top {
        width: 36px !important;
        height: 36px !important;
        font-size: 0.8rem !important;
        bottom: 14px !important;
        right: 14px !important;
    }

    /* ====== سوییچ سرویس‌ها ====== */
    .switch-group {
        padding: 4px !important;
        gap: 4px !important;
        max-width: 240px !important;
        width: 100% !important;
    }
    .switch-btn {
        padding: 8px 14px !important;
        font-size: 0.7rem !important;
        gap: 4px !important;
        justify-content: center !important;
        width: 100% !important;
    }
    .switch-btn i {
        font-size: 0.8rem !important;
    }
    .services-switch {
        margin-bottom: 18px !important;
    }
}

/* ====== موبایل خیلی کوچک ====== */
@media (max-width: 400px) {
    .hero-title {
        font-size: 1.4rem !important;
    }
    .hero-buttons .btn {
        padding: 6px 14px !important;
        font-size: 0.7rem !important;
        min-width: 80px !important;
    }
    .service-card {
        flex: 0 0 200px !important;
        min-width: 180px !important;
        padding: 14px 12px !important;
    }
    .project-card {
        flex: 0 0 220px !important;
        min-width: 200px !important;
        padding: 14px 12px !important;
    }
    .course-card {
        flex: 0 0 200px !important;
        min-width: 180px !important;
        padding: 14px 12px !important;
    }
    .blog-card {
        flex: 0 0 200px !important;
        min-width: 180px !important;
        padding: 12px 12px !important;
    }
    .floating-card {
        padding: 6px 10px !important;
        min-width: 60px !important;
    }
    .floating-card .fc-icon {
        font-size: 0.8rem !important;
    }
    .floating-card .fc-title {
        font-size: 0.55rem !important;
    }
}

/* ========================================
   فوتر - ریسپانسیو حرفه‌ای
   ======================================== */

/* ====== فوتر دسکتاپ ====== */
.footer {
    background: var(--dark);
    color: var(--text-light);
    padding: 56px 0 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 36px;
}

.footer-brand h3 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-brand p {
    opacity: 0.5;
    font-size: 0.85rem;
    line-height: 1.7;
    max-width: 280px;
}

.footer-links h4 {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.footer-links a {
    display: block;
    color: var(--text-light);
    font-size: 0.8rem;
    margin-bottom: 6px;
    transition: all 0.2s var(--ease-smooth);
    text-decoration: none;
    opacity: 0.6;
}

.footer-links a:hover {
    color: var(--gold);
    opacity: 1;
    transform: translateX(-4px);
}

.footer-newsletter h4 {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.newsletter-form {
    display: flex;
    gap: 6px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    font-family: var(--font);
    font-size: 0.8rem;
    transition: all 0.2s var(--ease-smooth);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.06);
}

.newsletter-form input::placeholder {
    color: var(--text-light);
    opacity: 0.5;
}

.newsletter-form button {
    padding: 0 18px;
    border: none;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--dark);
    cursor: pointer;
    transition: all 0.2s var(--ease-spring);
    font-size: 0.9rem;
}

.newsletter-form button:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 0.75rem;
    opacity: 0.4;
    letter-spacing: 0.3px;
}

/* ====== فوتر موبایل - جمع‌وجور و چندستونی ====== */
@media (max-width: 768px) {
    .footer {
        padding: 32px 0 16px !important;
    }

    .footer-grid {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 16px 24px !important;
        margin-bottom: 20px !important;
        text-align: right !important;
    }

    /* ستون اول - برند */
    .footer-brand {
        grid-column: 1 / -1 !important;
        text-align: center !important;
        margin-bottom: 4px !important;
    }
    .footer-brand h3 {
        font-size: 1.2rem !important;
        justify-content: center !important;
        margin-bottom: 4px !important;
    }
    .footer-brand p {
        font-size: 0.75rem !important;
        max-width: 100% !important;
        text-align: center !important;
        opacity: 0.4 !important;
    }

    /* ستون‌های لینک */
    .footer-links {
        text-align: right !important;
    }
    .footer-links h4 {
        font-size: 0.7rem !important;
        margin-bottom: 6px !important;
        color: rgba(255, 255, 255, 0.7) !important;
        letter-spacing: 0.5px !important;
        text-transform: uppercase !important;
    }
    .footer-links a {
        font-size: 0.7rem !important;
        margin-bottom: 3px !important;
        opacity: 0.5 !important;
        padding: 2px 0 !important;
    }
    .footer-links a:hover {
        opacity: 1 !important;
        transform: none !important;
        color: var(--gold) !important;
    }

    /* خبرنامه - کل عرض */
    .footer-newsletter {
        grid-column: 1 / -1 !important;
        margin-top: 4px !important;
        text-align: center !important;
    }
    .footer-newsletter h4 {
        font-size: 0.7rem !important;
        margin-bottom: 6px !important;
        color: rgba(255, 255, 255, 0.7) !important;
        text-transform: uppercase !important;
        letter-spacing: 0.5px !important;
    }
    .newsletter-form {
        max-width: 260px !important;
        margin: 0 auto !important;
        gap: 4px !important;
    }
    .newsletter-form input {
        padding: 6px 12px !important;
        font-size: 0.7rem !important;
        border-radius: var(--radius-full) !important;
    }
    .newsletter-form button {
        padding: 0 14px !important;
        font-size: 0.75rem !important;
    }

    .footer-bottom {
        font-size: 0.6rem !important;
        padding-top: 12px !important;
        opacity: 0.3 !important;
    }
}

/* ====== موبایل خیلی کوچک ====== */
@media (max-width: 400px) {
    .footer-grid {
        gap: 12px 16px !important;
    }
    .footer-links h4 {
        font-size: 0.6rem !important;
    }
    .footer-links a {
        font-size: 0.6rem !important;
    }
    .footer-brand h3 {
        font-size: 1rem !important;
    }
    .footer-brand p {
        font-size: 0.65rem !important;
    }
    .footer-newsletter h4 {
        font-size: 0.6rem !important;
    }
    .newsletter-form {
        max-width: 200px !important;
    }
    .newsletter-form input {
        font-size: 0.6rem !important;
        padding: 4px 10px !important;
    }
    .newsletter-form button {
        font-size: 0.65rem !important;
        padding: 0 10px !important;
    }
    .footer-bottom {
        font-size: 0.5rem !important;
    }
}

/* ========================================
   تم لایت - خاص و لوکس
   ======================================== */

/* ====== پس‌زمینه لایت ====== */
body:not(.dark) {
    --light-bg-start: #f0f4ff;
    --light-bg-end: #fafbff;
    --light-card-bg: rgba(255, 255, 255, 0.7);
    --light-shadow: 0 8px 32px rgba(26, 115, 232, 0.06);
    --light-border: rgba(26, 115, 232, 0.06);
}

/* ====== هیرو در حالت لایت ====== */
body:not(.dark) .hero {
    background: linear-gradient(160deg, #e8eeff 0%, #f0f4ff 40%, #fafbff 100%) !important;
    position: relative;
}

/* افکت گرادینت طلایی روی هیرو لایت */
body:not(.dark) .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(201, 168, 76, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(26, 115, 232, 0.04) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 100%, rgba(201, 168, 76, 0.04) 0%, transparent 30%);
    z-index: 0;
}

/* ====== محتوای هیرو لایت ====== */
body:not(.dark) .hero-title {
    color: #0a0a1a !important;
}

body:not(.dark) .hero-desc {
    color: rgba(26, 26, 46, 0.7) !important;
}

body:not(.dark) .hero-badge {
    background: rgba(201, 168, 76, 0.12) !important;
    border-color: rgba(201, 168, 76, 0.2) !important;
    color: #b8922e !important;
}

body:not(.dark) .badge-dot {
    background: #b8922e !important;
}

/* ====== کارت‌های شناور لایت ====== */
body:not(.dark) .floating-card {
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border: 1px solid rgba(26, 115, 232, 0.08) !important;
    box-shadow: 0 8px 32px rgba(26, 115, 232, 0.06) !important;
    color: #0a0a1a !important;
}

body:not(.dark) .floating-card .fc-desc {
    color: rgba(26, 26, 46, 0.5) !important;
}

body:not(.dark) .floating-card .fc-icon {
    color: var(--primary) !important;
}

/* ====== آمار هیرو لایت ====== */
body:not(.dark) .hero-stat-number {
    color: var(--primary) !important;
}

body:not(.dark) .hero-stat-label {
    color: rgba(26, 26, 46, 0.5) !important;
}

body:not(.dark) .stat-divider {
    background: rgba(26, 26, 46, 0.08) !important;
}

body:not(.dark) .hero-stats {
    border-top-color: rgba(26, 26, 46, 0.06) !important;
}

/* ====== دکمه‌های لایت ====== */
body:not(.dark) .btn-outline {
    border-color: rgba(26, 26, 46, 0.15) !important;
    color: #0a0a1a !important;
}

body:not(.dark) .btn-outline:hover {
    background: rgba(26, 26, 46, 0.04) !important;
    border-color: var(--primary) !important;
    color: var(--primary) !important;
}

/* ====== اسکرول ایندیکیتور لایت ====== */
body:not(.dark) .hero-scroll span {
    color: rgba(26, 26, 46, 0.3) !important;
}

body:not(.dark) .scroll-mouse {
    border-color: rgba(26, 26, 46, 0.15) !important;
}

body:not(.dark) .scroll-mouse::before {
    background: var(--primary) !important;
}

/* ====== بخش‌های دیگر در لایت ====== */
body:not(.dark) .services {
    background: linear-gradient(180deg, #f5f7ff 0%, #fafbff 100%) !important;
}

body:not(.dark) .about {
    background: #ffffff !important;
}

body:not(.dark) .projects {
    background: #f5f7ff !important;
}

body:not(.dark) .courses {
    background: #ffffff !important;
}

body:not(.dark) .blog {
    background: #f5f7ff !important;
}

body:not(.dark) .consultation {
    background: #ffffff !important;
}

/* ====== گرادینت‌های لایت ====== */
body:not(.dark) .gradient-text {
    background: linear-gradient(135deg, var(--primary), #b8922e) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

body:not(.dark) .gradient-text-gold {
    background: linear-gradient(135deg, #b8922e, #dfc267) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

/* ====== کارت‌های لایت ====== */
body:not(.dark) .glass-card {
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border: 1px solid rgba(26, 115, 232, 0.06) !important;
    box-shadow: 0 4px 24px rgba(26, 115, 232, 0.04) !important;
}

body:not(.dark) .glass-card:hover {
    border-color: rgba(201, 168, 76, 0.2) !important;
    box-shadow: 0 8px 40px rgba(26, 115, 232, 0.08) !important;
}

/* ====== سرویس‌کارت‌های لایت ====== */
body:not(.dark) .service-card .service-icon {
    color: var(--primary) !important;
}

body:not(.dark) .service-card h3 {
    color: var(--primary) !important;
}

body:not(.dark) .service-card p {
    color: rgba(26, 26, 46, 0.6) !important;
}

body:not(.dark) .service-icon-bg {
    background: linear-gradient(135deg, var(--primary-light), var(--primary)) !important;
    opacity: 0.06 !important;
}

body:not(.dark) .service-card:hover .service-icon-bg {
    opacity: 0.12 !important;
}

/* ====== دوره‌ها لایت ====== */
body:not(.dark) .course-card .course-icon {
    color: var(--primary) !important;
}

body:not(.dark) .course-card .soon-badge {
    background: rgba(26, 115, 232, 0.04) !important;
    border-color: var(--primary) !important;
    color: var(--primary) !important;
}

body:not(.dark) .course-card .soon-badge:hover {
    background: var(--primary) !important;
    color: #fff !important;
}

/* ====== پروژه‌ها لایت ====== */
body:not(.dark) .project-card .project-icon {
    color: var(--primary) !important;
}

body:not(.dark) .project-card h3 {
    color: var(--primary) !important;
}

/* ====== بخش ماموریت لایت ====== */
body:not(.dark) .mission-card {
    background: linear-gradient(135deg, var(--primary), #0d47a1) !important;
}

/* ====== فرم تماس لایت ====== */
body:not(.dark) .consultation-wrapper {
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border: 1px solid rgba(26, 115, 232, 0.06) !important;
}

body:not(.dark) .consultation-info {
    background: linear-gradient(135deg, var(--primary), #0d47a1) !important;
}

body:not(.dark) .consultation-form {
    background: transparent !important;
}

/* ====== سوییچ لایت ====== */
body:not(.dark) .switch-group {
    background: rgba(26, 115, 232, 0.04) !important;
    border-color: rgba(26, 115, 232, 0.06) !important;
}

body:not(.dark) .switch-btn {
    color: rgba(26, 26, 46, 0.5) !important;
}

body:not(.dark) .switch-btn.active {
    background: linear-gradient(135deg, var(--primary), #0d47a1) !important;
    color: #fff !important;
}

body:not(.dark) .switch-btn:hover:not(.active) {
    color: var(--primary) !important;
    background: rgba(26, 115, 232, 0.04) !important;
}

/* ====== فوتر لایت ====== */
body:not(.dark) .footer {
    background: #0a0a1a !important;
}

/* ====== دکمه تم لایت ====== */
body:not(.dark) .theme-toggle {
    background: rgba(26, 115, 232, 0.06) !important;
    color: var(--primary) !important;
}

body:not(.dark) .theme-toggle:hover {
    background: var(--primary) !important;
    color: #fff !important;
}

/* ====== اسکرول بار لایت ====== */
body:not(.dark)::-webkit-scrollbar-track {
    background: #f0f4ff !important;
}

body:not(.dark)::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary), #b8922e) !important;
}

/* ========================================
   هیرو لایت - موبایل
   ======================================== */
@media (max-width: 992px) {
    body:not(.dark) .hero {
        background: linear-gradient(160deg, #e8eeff 0%, #f0f4ff 60%, #fafbff 100%) !important;
    }
    
    body:not(.dark) .floating-card {
        background: rgba(255, 255, 255, 0.9) !important;
        border: 1px solid rgba(26, 115, 232, 0.06) !important;
        box-shadow: 0 4px 16px rgba(26, 115, 232, 0.04) !important;
    }
}