/*
 * ============================================
 * DARK MODE ONLY - LIGHT MODE DISABLED
 * ============================================
 * 
 * This website is now configured to use DARK MODE ONLY.
 * Light mode styles are commented but preserved for future use.
 * 
 * To re-enable light mode:
 * 1. Uncomment light mode styles (body:not(.dark) selectors)
 * 2. Update script.js to restore theme toggle functionality
 * 3. Remove #themeToggle { display: none } from CSS
 * 
 * ============================================
 */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Professional Color Palette */
    --primary-blue: #0066FF;
    --primary-blue-dark: #0052CC;
    --primary-blue-light: #3385FF;
    --primary-purple: #7C3AED;
    --primary-purple-dark: #6D28D9;
    --primary-purple-light: #8B5CF6;
    
    /* Background Colors */
    --bg-light: #FAFBFC;
    --bg-light-secondary: #FFFFFF;
    --bg-dark: #0A0E27;
    --bg-dark-secondary: #141B2D;
    
    /* Text Colors */
    --text-light: #1A1F36;
    --text-light-secondary: #4A5568;
    --text-dark: #F7FAFC;
    --text-dark-secondary: #CBD5E0;
    
    /* Gray Scale */
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
    
    /* Accent Colors */
    --accent-gradient: linear-gradient(135deg, #0066FF 0%, #7C3AED 100%);
    --accent-gradient-hover: linear-gradient(135deg, #0052CC 0%, #6D28D9 100%);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;
}

[dir="rtl"] {
    font-family: 'IBM Plex Sans Arabic', 'Cairo', 'Tajawal', sans-serif;
}

[dir="ltr"] {
    font-family: 'IBM Plex Sans', 'Poppins', 'Inter', system-ui, sans-serif;
}

/* NOTE: Dark mode is now forced always. Light mode styles are commented but preserved. */
body {
    font-family: 'IBM Plex Sans Arabic', 'Cairo', 'Tajawal', sans-serif;
    /* LIGHT MODE BACKGROUND - COMMENTED BUT PRESERVED
    background-color: var(--bg-light);
    color: var(--text-light);
    */
    /* FORCED DARK MODE */
    background-color: var(--bg-dark);
    color: var(--text-dark);
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(0, 102, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(124, 58, 237, 0.08) 0%, transparent 50%);
    transition: background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1), color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    line-height: 1.75;
    font-size: 16px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-feature-settings: "kern" 1, "liga" 1;
    letter-spacing: -0.01em;
}

/* Improve font rendering for headings */
h1, h2, h3, h4, h5, h6 {
    font-feature-settings: "kern" 1, "liga" 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Dark mode styles - now always active */
body.dark {
    background-color: var(--bg-dark);
    color: var(--text-dark);
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(0, 102, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(124, 58, 237, 0.08) 0%, transparent 50%);
}

/* LIGHT MODE STYLES - COMMENTED BUT PRESERVED FOR FUTURE USE
body:not(.dark) {
    background-color: var(--bg-light);
    color: var(--text-light);
}
*/

html {
    scroll-behavior: smooth;
}

/* Professional Animations & Transitions */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* Smooth entrance animations - will be controlled by JavaScript for scroll animations */
.hero-card {
    animation: fadeInUp 0.8s ease-out;
}

/* Stagger animations for grid items */
.method-card:nth-child(1) { animation-delay: 0.1s; }
.method-card:nth-child(2) { animation-delay: 0.2s; }
.method-card:nth-child(3) { animation-delay: 0.3s; }
.method-card:nth-child(4) { animation-delay: 0.4s; }
.method-card:nth-child(5) { animation-delay: 0.5s; }

.sector-card:nth-child(1) { animation-delay: 0.1s; }
.sector-card:nth-child(2) { animation-delay: 0.2s; }
.sector-card:nth-child(3) { animation-delay: 0.3s; }
.sector-card:nth-child(4) { animation-delay: 0.4s; }
.sector-card:nth-child(5) { animation-delay: 0.5s; }
.sector-card:nth-child(6) { animation-delay: 0.6s; }

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(250, 251, 252, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(229, 231, 235, 0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeIn 0.5s ease-out;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-bottom-color: rgba(229, 231, 235, 0.9);
}

body.dark .navbar {
    background-color: rgba(10, 14, 39, 0.85);
    border-bottom-color: rgba(31, 41, 55, 0.8);
}

body.dark .navbar.scrolled {
    background-color: rgba(10, 14, 39, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    border-bottom-color: rgba(31, 41, 55, 0.9);
}

body.dark .navbar {
    background-color: rgba(17, 24, 39, 0.8);
    border-bottom-color: var(--gray-800);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
    padding: 0.5rem 0;
}

@media (min-width: 768px) {
    .nav-content {
        height: 70px;
    }
}

@media (min-width: 1024px) {
    .nav-content {
        height: 72px;
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: inherit;
}

.logo-image {
    height: 42px;
    width: auto;
    object-fit: contain;
    padding: 0;
    border-radius: 0;
    background-color: transparent;
    box-shadow: none;
    display: block;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: scaleIn 0.6s ease-out;
}

@media (min-width: 768px) {
    .logo-image {
        height: 48px;
    }
}

@media (min-width: 1024px) {
    .logo-image {
        height: 50px;
    }
}

.logo:hover .logo-image {
    transform: scale(1.05);
    opacity: 0.9;
}

body.dark .logo-image {
    background-color: transparent;
    box-shadow: none;
}

body.dark .logo:hover .logo-image {
    opacity: 0.9;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
}

.nav-links {
    display: none;
    gap: 1.5rem;
    align-items: center;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
}

.nav-link {
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.01em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-purple));
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

[dir="ltr"] .nav-link {
    letter-spacing: 0;
}

body.dark .nav-link {
    color: var(--gray-300);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-blue);
}

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

.nav-controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.control-btn {
    padding: 0.5rem;
    border-radius: 0.5rem;
    background-color: var(--gray-100);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--gray-700);
    position: relative;
    overflow: hidden;
}

.control-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.control-btn:hover::before {
    width: 300px;
    height: 300px;
}

.control-btn:hover {
    transform: scale(1.1);
    background-color: var(--gray-200);
}

.control-btn:active {
    transform: scale(0.95);
}

body.dark .control-btn {
    background-color: var(--gray-800);
    color: var(--gray-300);
}

.control-btn:hover {
    background-color: var(--gray-200);
}

body.dark .control-btn:hover {
    background-color: var(--gray-700);
}

.moon-icon {
    display: none;
}

/* Hide theme toggle button - Dark mode is now forced always */
#themeToggle {
    display: none !important;
}

/* LIGHT MODE CONTROL BUTTON STYLES - COMMENTED BUT PRESERVED FOR FUTURE USE
body:not(.dark) .control-btn {
    background-color: var(--gray-100);
    color: var(--gray-700);
}

body:not(.dark) .control-btn:hover {
    background-color: var(--gray-200);
}
*/

body.dark .sun-icon {
    display: none;
}

body.dark .moon-icon {
    display: block;
}

.mobile-menu-btn {
    display: block;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.menu-icon {
    display: block;
}

.close-icon {
    display: none;
}

.mobile-menu-btn.active .menu-icon {
    display: none;
}

.mobile-menu-btn.active .close-icon {
    display: block;
}

.mobile-menu {
    display: none;
    padding: 1rem 0;
    border-top: 1px solid var(--gray-200);
}

body.dark .mobile-menu {
    border-top-color: var(--gray-800);
}

.mobile-menu.active {
    display: block;
}

.mobile-nav-link {
    display: block;
    padding: 0.75rem 0;
    color: var(--gray-700);
    text-decoration: none;
    transition: color 0.3s ease;
}

body.dark .mobile-nav-link {
    color: var(--gray-300);
}

.mobile-nav-link:hover {
    color: var(--primary-blue);
}

body.dark .mobile-nav-link:hover {
    color: #60a5fa;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 64px;
    background: 
        linear-gradient(135deg, rgba(0, 102, 255, 0.04) 0%, rgba(255, 255, 255, 1) 50%, rgba(124, 58, 237, 0.04) 100%),
        radial-gradient(circle at 20% 30%, rgba(0, 102, 255, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(124, 58, 237, 0.06) 0%, transparent 50%);
    overflow: hidden;
}

@media (min-width: 768px) {
    .hero {
        padding-top: 70px;
    }
}

@media (min-width: 1024px) {
    .hero {
        padding-top: 72px;
    }
}

body.dark .hero {
    background: 
        var(--bg-dark),
        radial-gradient(circle at 20% 30%, rgba(0, 102, 255, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(124, 58, 237, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(0, 102, 255, 0.06) 0%, transparent 70%);
}

.hero-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

/* Animated dots pattern for dark mode */
body.dark .hero-background::before,
body.dark .hero-background::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background-image: 
        radial-gradient(circle, rgba(59, 130, 246, 0.4) 2px, transparent 2px);
    background-size: 30px 30px;
    animation: float 20s ease-in-out infinite;
    opacity: 0.6;
}

body.dark .hero-background::before {
    top: 10%;
    right: 5%;
    animation-delay: 0s;
}

body.dark .hero-background::after {
    bottom: 10%;
    left: 5%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(30px, -30px) scale(1.1);
        opacity: 0.8;
    }
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.2;
    animation: blob 7s infinite;
}

body.dark .blob {
    opacity: 0.1;
}

.blob-1 {
    width: 320px;
    height: 320px;
    background-color: #60a5fa;
    top: -160px;
    right: -160px;
}

.blob-2 {
    width: 320px;
    height: 320px;
    background-color: #a78bfa;
    bottom: -160px;
    left: -160px;
    animation-delay: 2s;
}

.blob-3 {
    width: 320px;
    height: 320px;
    background-color: #f472b6;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 4s;
}

@keyframes blob {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 72rem;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

@media (min-width: 768px) {
    .hero-content {
        padding: 5rem 1.5rem;
    }
}

.hero-card {
    width: 100%;
    max-width: 64rem;
    padding: 3.5rem 2.5rem;
    border-radius: 2rem;
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%),
        linear-gradient(135deg, rgba(0, 102, 255, 0.03) 0%, rgba(124, 58, 237, 0.03) 100%);
    border: 1px solid rgba(229, 231, 235, 0.6);
    box-shadow: 
        0 25px 70px rgba(0, 102, 255, 0.12),
        0 0 0 1px rgba(0, 102, 255, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        inset 0 -1px 0 rgba(0, 102, 255, 0.05);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .hero-card {
        padding: 4.5rem 3.5rem;
        gap: 3rem;
    }
    
    .hero-features {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        padding: 2.5rem;
    }
}

@media (max-width: 767px) {
    .hero-features {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .hero-feature-item {
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .hero-decoration-top {
        top: 1rem;
        left: 1rem;
    }
}

.hero-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(59, 130, 246, 0.05), transparent);
    transform: rotate(45deg);
    transition: all 0.6s;
    opacity: 0;
}

.hero-card:hover::before {
    animation: shimmer 2s infinite;
    opacity: 1;
}

.hero-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 32px 100px rgba(15, 23, 42, 0.25);
}

body.dark .hero-card {
    background: 
        linear-gradient(135deg, rgba(20, 27, 45, 0.95) 0%, rgba(15, 23, 42, 0.95) 100%),
        linear-gradient(135deg, rgba(0, 102, 255, 0.05) 0%, rgba(124, 58, 237, 0.05) 100%);
    border: 1px solid rgba(0, 102, 255, 0.25);
    box-shadow: 
        0 25px 70px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(0, 102, 255, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        inset 0 -1px 0 rgba(0, 102, 255, 0.1);
}

/* Hero Decorative Elements */
.hero-decoration-top {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    display: flex;
    gap: 0.5rem;
    z-index: 1;
}

.hero-decoration-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    opacity: 0.6;
    animation: pulseDot 2s ease-in-out infinite;
}

.hero-decoration-dot:nth-child(2) {
    animation-delay: 0.3s;
}

.hero-decoration-dot:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes pulseDot {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(124, 58, 237, 0.1));
    border: 1px solid rgba(0, 102, 255, 0.2);
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin: 0 auto 1rem;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

body.dark .hero-badge {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.15), rgba(124, 58, 237, 0.15));
    border-color: rgba(0, 102, 255, 0.3);
    color: var(--primary-blue-light);
}

.hero-badge svg {
    width: 14px;
    height: 14px;
}

.hero-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.2);
}

/* Hero Features Grid */
.hero-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 1rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.03), rgba(124, 58, 237, 0.03));
    border-radius: 1.25rem;
    border: 1px solid rgba(0, 102, 255, 0.1);
    position: relative;
}

body.dark .hero-features {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.08), rgba(124, 58, 237, 0.08));
    border-color: rgba(0, 102, 255, 0.2);
}

.hero-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    transition: all 0.3s ease;
}

.hero-feature-item:hover {
    transform: translateY(-4px);
}

.hero-feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(124, 58, 237, 0.1));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    border: 1px solid rgba(0, 102, 255, 0.2);
    transition: all 0.3s ease;
}

body.dark .hero-feature-icon {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.15), rgba(124, 58, 237, 0.15));
    border-color: rgba(0, 102, 255, 0.3);
    color: var(--primary-blue-light);
}

.hero-feature-item:hover .hero-feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.2), rgba(124, 58, 237, 0.2));
    box-shadow: 0 8px 20px rgba(0, 102, 255, 0.2);
}

.hero-feature-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-light);
    text-align: center;
}

body.dark .hero-feature-label {
    color: var(--text-dark);
}

/* Hero Decoration Bottom */
.hero-decoration-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    overflow: hidden;
}

.hero-decoration-line {
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--primary-blue) 20%, 
        var(--primary-purple) 50%, 
        var(--primary-blue) 80%, 
        transparent 100%);
    animation: shimmerLine 3s ease-in-out infinite;
}

@keyframes shimmerLine {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.hero-text-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--text-light);
    margin: 0;
    line-height: 1.15;
    letter-spacing: -0.03em;
    font-feature-settings: "kern" 1, "liga" 1;
    background: linear-gradient(135deg, var(--text-light) 0%, var(--text-light-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body.dark .hero-title {
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--text-dark-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

[dir="ltr"] .hero-title {
    letter-spacing: -0.03em;
}

body.dark .hero-title {
    color: var(--text-dark);
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 3rem;
    }
}

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

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light-secondary);
    margin: 0;
    max-width: 100%;
    line-height: 1.75;
    font-weight: 400;
    letter-spacing: -0.01em;
}

body.dark .hero-subtitle {
    color: var(--text-dark-secondary);
}

.hero-cta-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

[dir="ltr"] .hero-subtitle {
    letter-spacing: 0;
}

body.dark .hero-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

@media (min-width: 640px) {
    .hero-subtitle {
        font-size: 1.25rem;
    }
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.5rem;
    }
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.125rem 2.75rem;
    background: var(--accent-gradient);
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 0.875rem;
    text-decoration: none;
    box-shadow: 
        0 10px 30px -5px rgba(0, 102, 255, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    letter-spacing: -0.01em;
    line-height: 1.5;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

[dir="ltr"] .cta-button {
    letter-spacing: 0.01em;
}

body.dark .cta-button {
    box-shadow: 
        0 10px 30px -5px rgba(0, 102, 255, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

body.dark .cta-button:hover {
    box-shadow: 
        0 20px 50px -5px rgba(0, 102, 255, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

.cta-button:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
        0 20px 50px -5px rgba(0, 102, 255, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset;
    background: var(--accent-gradient-hover);
}

.cta-button:active {
    transform: translateY(-1px) scale(0.98);
}


.arrow-icon {
    transition: transform 0.3s ease;
}

[dir="rtl"] .cta-button:hover .arrow-icon {
    transform: translateX(4px);
}

[dir="ltr"] .cta-button:hover .arrow-icon {
    transform: translateX(-4px);
}

/* Section Styles */
section {
    padding: 6rem 0;
    position: relative;
}

@media (min-width: 768px) {
    section {
        padding: 7rem 0;
    }
}

@media (min-width: 1024px) {
    section {
        padding: 8rem 0;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .section-header {
        margin-bottom: 5rem;
    }
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin: 0 0 1.5rem 0;
    color: var(--text-light);
    letter-spacing: -0.03em;
    line-height: 1.2;
    font-feature-settings: "kern" 1, "liga" 1;
    background: linear-gradient(135deg, var(--text-light) 0%, var(--text-light-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body.dark .section-title {
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--text-dark-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

[dir="ltr"] .section-title {
    letter-spacing: -0.03em;
}

body.dark .section-title {
    color: var(--text-dark);
}

@media (min-width: 640px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-subtitle {
    font-size: 1.25rem;
    text-align: center;
    color: var(--gray-600);
    margin: 0;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    font-weight: 400;
    letter-spacing: 0.01em;
}

[dir="ltr"] .section-subtitle {
    letter-spacing: 0;
}

body.dark .section-subtitle {
    color: var(--gray-400);
}

/* About Section */
.about {
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-light-secondary) 100%);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 102, 255, 0.2), transparent);
}

body.dark .about {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-dark-secondary) 100%);
}

.about-content {
    max-width: 48rem;
    margin: 0 auto;
}

.about-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-content p {
    font-size: 1.125rem;
    color: var(--text-light-secondary);
    margin: 0;
    line-height: 1.85;
    font-weight: 400;
    letter-spacing: -0.01em;
}

body.dark .about-content p {
    color: var(--text-dark-secondary);
}

[dir="ltr"] .about-content p {
    letter-spacing: 0;
}

body.dark .about-content p {
    color: var(--gray-300);
}

/* How We Work Section */
.how-we-work {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.03) 0%, rgba(124, 58, 237, 0.03) 100%);
    position: relative;
    overflow: hidden;
}

.how-we-work::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 102, 255, 0.2), transparent);
}

body.dark .how-we-work {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.05) 0%, rgba(124, 58, 237, 0.05) 100%);
}

/* Roadmap Styles */
.roadmap-container {
    position: relative;
    max-width: 1000px;
    margin: 4rem auto;
    padding: 0 1rem;
}

.roadmap-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    pointer-events: none;
    transition: background 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    border-radius: 1rem;
}

.roadmap-container:hover::before {
    background: rgba(0, 0, 0, 0.3);
}

.roadmap-container:hover .roadmap-step:not(:hover) {
    opacity: 0.4;
    transform: scale(0.95);
    filter: blur(2px);
}

.roadmap-container:hover .roadmap-step:hover {
    z-index: 20;
    transform: scale(1.05);
}

.roadmap-line {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, 
        var(--primary-blue) 0%, 
        var(--primary-purple) 50%,
        var(--primary-blue) 100%);
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(0, 102, 255, 0.3);
    z-index: 0;
}

body.dark .roadmap-line {
    box-shadow: 0 0 30px rgba(0, 102, 255, 0.5);
}

.roadmap-steps {
    position: relative;
    z-index: 1;
}

.roadmap-step {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.roadmap-step.visible {
    opacity: 1;
    transform: translateY(0);
}

.roadmap-step:nth-child(even) {
    flex-direction: row-reverse;
}

.roadmap-step-number {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    box-shadow: 
        0 8px 20px rgba(0, 102, 255, 0.3),
        0 0 0 8px rgba(255, 255, 255, 1),
        0 0 0 10px rgba(0, 102, 255, 0.1);
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body.dark .roadmap-step-number {
    box-shadow: 
        0 8px 20px rgba(0, 102, 255, 0.5),
        0 0 0 8px rgba(20, 27, 45, 1),
        0 0 0 10px rgba(0, 102, 255, 0.2);
}

.roadmap-step:hover .roadmap-step-number {
    transform: translateX(-50%) scale(1.15);
    box-shadow: 
        0 12px 30px rgba(0, 102, 255, 0.4),
        0 0 0 8px rgba(255, 255, 255, 1),
        0 0 0 12px rgba(0, 102, 255, 0.2);
}

body.dark .roadmap-step:hover .roadmap-step-number {
    box-shadow: 
        0 12px 30px rgba(0, 102, 255, 0.6),
        0 0 0 8px rgba(20, 27, 45, 1),
        0 0 0 12px rgba(0, 102, 255, 0.3);
}

.roadmap-step-content {
    flex: 1;
    max-width: 45%;
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(0, 102, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

body.dark .roadmap-step-content {
    background: rgba(20, 27, 45, 0.8);
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(0, 102, 255, 0.2);
}

.roadmap-step-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-blue), var(--primary-purple));
    opacity: 0;
    transition: opacity 0.3s;
}

.roadmap-step:nth-child(odd) .roadmap-step-content::before {
    left: auto;
    right: 0;
}

.roadmap-step:hover .roadmap-step-content {
    transform: translateY(-8px);
    box-shadow: 
        0 16px 40px rgba(0, 102, 255, 0.2),
        0 0 0 1px rgba(0, 102, 255, 0.3);
}

.roadmap-step:hover .roadmap-step-content::before {
    opacity: 1;
}

body.dark .roadmap-step:hover .roadmap-step-content {
    box-shadow: 
        0 16px 40px rgba(0, 102, 255, 0.3),
        0 0 0 1px rgba(0, 102, 255, 0.4);
}

.roadmap-step-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(124, 58, 237, 0.1));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body.dark .roadmap-step-icon {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.2), rgba(124, 58, 237, 0.2));
    color: var(--primary-blue-light);
}

.roadmap-step:hover .roadmap-step-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.2), rgba(124, 58, 237, 0.2));
}

.roadmap-step-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-light);
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body.dark .roadmap-step-title {
    background: linear-gradient(135deg, var(--primary-blue-light), var(--primary-purple-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.roadmap-step-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light-secondary);
    margin: 0;
}

body.dark .roadmap-step-description {
    color: var(--text-dark-secondary);
}

/* Responsive Design */
@media (max-width: 768px) {
    .roadmap-line {
        left: 30px;
    }

    .roadmap-step {
        flex-direction: row !important;
        margin-bottom: 3rem;
    }

    .roadmap-step-content {
        max-width: calc(100% - 100px);
        margin-left: 80px;
    }

    .roadmap-step-number {
        left: 30px;
        transform: translateX(-50%);
        width: 50px;
        height: 50px;
        font-size: 1rem;
        box-shadow: 
            0 6px 16px rgba(0, 102, 255, 0.3),
            0 0 0 6px rgba(255, 255, 255, 1),
            0 0 0 8px rgba(0, 102, 255, 0.1);
    }

    body.dark .roadmap-step-number {
        box-shadow: 
            0 6px 16px rgba(0, 102, 255, 0.5),
            0 0 0 6px rgba(20, 27, 45, 1),
            0 0 0 8px rgba(0, 102, 255, 0.2);
    }

    .roadmap-step:hover .roadmap-step-number {
        transform: translateX(-50%) scale(1.1);
    }

    .roadmap-step-content::before {
        left: 0 !important;
        right: auto !important;
    }
}

.method-card {
    background: rgba(255, 255, 255, 0.8);
    padding: 2rem 1.75rem;
    border-radius: 1rem;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.05),
        0 0 0 1px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

body.dark .method-card {
    background: rgba(20, 27, 45, 0.6);
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(0, 102, 255, 0.1);
}

.method-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.1), transparent);
    transition: left 0.5s;
}

.method-card:hover::before {
    left: 100%;
}

body.dark .method-card {
    background-color: var(--gray-800);
}

.method-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 
        0 20px 40px -5px rgba(0, 102, 255, 0.15),
        0 0 0 1px rgba(0, 102, 255, 0.2);
    background: rgba(255, 255, 255, 0.95);
}

body.dark .method-card:hover {
    background: rgba(20, 27, 45, 0.8);
    box-shadow: 
        0 20px 40px -5px rgba(0, 102, 255, 0.2),
        0 0 0 1px rgba(0, 102, 255, 0.3);
}

.check-icon {
    color: var(--primary-blue);
    flex-shrink: 0;
    margin-top: 0.25rem;
    width: 28px;
    height: 28px;
    padding: 4px;
    background: rgba(0, 102, 255, 0.1);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.method-card:hover .check-icon {
    background: rgba(0, 102, 255, 0.15);
    transform: scale(1.1);
}

body.dark .check-icon {
    color: var(--primary-blue-light);
    background: rgba(0, 102, 255, 0.15);
}

.method-card p {
    color: var(--text-light-secondary);
    font-size: 1rem;
    line-height: 1.75;
    font-weight: 400;
    letter-spacing: -0.01em;
}

[dir="ltr"] .method-card p {
    letter-spacing: 0;
}

body.dark .method-card p {
    color: var(--text-dark-secondary);
}

/* Sectors Section */
.sectors {
    background: linear-gradient(180deg, var(--bg-light-secondary) 0%, var(--bg-light) 100%);
    position: relative;
}

.sectors::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 102, 255, 0.2), transparent);
}

body.dark .sectors {
    background: linear-gradient(180deg, var(--bg-dark-secondary) 0%, var(--bg-dark) 100%);
}

.sectors-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

@media (min-width: 768px) {
    .sectors-grid {
        gap: 2rem;
    }
}

@media (min-width: 640px) {
    .sectors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .sectors-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.sector-card {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.08) 0%, rgba(124, 58, 237, 0.08) 100%);
    padding: 2rem 1.75rem;
    border-radius: 1rem;
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--text-light);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 102, 255, 0.1);
    cursor: default;
    line-height: 1.6;
    position: relative;
    overflow: visible;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.05),
        0 0 0 1px rgba(0, 102, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
    transform-style: preserve-3d;
    perspective: 1000px;
}

body.dark .sector-card {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.12) 0%, rgba(124, 58, 237, 0.12) 100%);
    color: var(--text-dark);
    border-color: rgba(0, 102, 255, 0.2);
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(0, 102, 255, 0.15);
}

.sector-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.sector-card:hover::after {
    width: 300px;
    height: 300px;
}

[dir="ltr"] .sector-card {
    letter-spacing: 0;
}

/* Sector Card Hover Effect - Modern 3D Transform */
.sector-card:hover {
    transform: translateY(-12px) scale(1.08) rotateX(2deg);
    z-index: 10;
    box-shadow: 
        0 25px 50px -12px rgba(0, 102, 255, 0.3),
        0 0 0 2px rgba(0, 102, 255, 0.3),
        0 0 40px rgba(0, 102, 255, 0.2);
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.15) 0%, rgba(124, 58, 237, 0.15) 100%);
    border-color: rgba(0, 102, 255, 0.4);
}

body.dark .sector-card:hover {
    box-shadow: 
        0 25px 50px -12px rgba(0, 102, 255, 0.4),
        0 0 0 2px rgba(0, 102, 255, 0.4),
        0 0 50px rgba(0, 102, 255, 0.3);
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.2) 0%, rgba(124, 58, 237, 0.2) 100%);
    border-color: rgba(0, 102, 255, 0.5);
}

/* Glow effect on hover */
.sector-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    border-radius: 1rem;
    opacity: 0;
    z-index: -1;
    filter: blur(20px);
    transition: opacity 0.4s ease;
}

.sector-card:hover::before {
    opacity: 0.6;
}

/* Dim other cards when hovering */
.sectors-grid:hover .sector-card:not(:hover) {
    opacity: 0.4;
    transform: scale(0.95);
    filter: blur(2px);
}

/* Partners Section */
.partners {
    background: 
        linear-gradient(135deg, rgba(0, 102, 255, 0.03) 0%, rgba(124, 58, 237, 0.03) 100%),
        radial-gradient(circle at 30% 40%, rgba(0, 102, 255, 0.05) 0%, transparent 50%);
    position: relative;
}

.partners::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 102, 255, 0.2), transparent);
}

body.dark .partners {
    background: 
        var(--bg-dark),
        radial-gradient(circle at 30% 40%, rgba(0, 102, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(124, 58, 237, 0.08) 0%, transparent 50%);
}

/* Partners description now uses .section-subtitle */

.partners-carousel-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    margin: 2rem 0;
}

.partners-carousel {
    display: flex;
    gap: 2rem;
    width: fit-content;
}

/* Animation for RTL (Arabic) - moves from left to right */
[dir="rtl"] .partners-carousel {
    animation: scroll-left-to-right 30s linear infinite;
}

/* Animation for LTR (English) - moves from right to left */
[dir="ltr"] .partners-carousel {
    animation: scroll-right-to-left 30s linear infinite;
}

@keyframes scroll-left-to-right {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(50%);
    }
}

@keyframes scroll-right-to-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.partners-carousel:hover {
    animation-play-state: paused;
}

.partner-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 9rem;
    min-width: 14rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    border: 1px solid rgba(229, 231, 235, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

body.dark .partner-card {
    background: rgba(20, 27, 45, 0.7);
    border-color: rgba(0, 102, 255, 0.15);
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(0, 102, 255, 0.1);
}

.partner-card:hover {
    box-shadow: 
        0 12px 30px -5px rgba(0, 102, 255, 0.2),
        0 0 0 1px rgba(0, 102, 255, 0.25);
    transform: translateY(-6px) scale(1.02);
    border-color: rgba(0, 102, 255, 0.3);
    background: rgba(255, 255, 255, 0.95);
}

body.dark .partner-card:hover {
    box-shadow: 
        0 12px 30px -5px rgba(0, 102, 255, 0.3),
        0 0 0 1px rgba(0, 102, 255, 0.3);
    background: rgba(20, 27, 45, 0.85);
    border-color: rgba(0, 102, 255, 0.4);
}

.partner-logo {
    max-width: 90%;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(40%) opacity(0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.5rem;
}

body.dark .partner-logo {
    filter: grayscale(30%) opacity(0.7) brightness(1.1);
}

.partner-card:hover .partner-logo {
    filter: grayscale(0%) opacity(1) brightness(1);
    transform: scale(1.1);
}

.partner-placeholder {
    width: 6rem;
    height: 6rem;
    background-color: var(--gray-200);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    font-size: 0.875rem;
    font-weight: 600;
}

body.dark .partner-placeholder {
    background-color: var(--gray-700);
    color: var(--gray-500);
}

/* Solutions Page */
.solutions-page {
    padding-top: 5rem;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--gray-100) 0%, #dbeafe 100%);
}

body.dark .solutions-page {
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
}

/* New Solutions Page Design */
.solutions-page-new {
    padding-top: 5rem;
    padding-bottom: 5rem;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--gray-100) 0%, #dbeafe 100%);
    position: relative;
    overflow: hidden;
}

body.dark .solutions-page-new {
    background: #0a0a0a;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.08) 0%, transparent 50%);
}

/* Particle Background for Solutions Page */
.particles-container-solutions {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.particle-solution {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-blue);
    border-radius: 50%;
    opacity: 0.6;
    animation: particleFloatSolution 10s infinite;
    box-shadow: 0 0 6px rgba(0, 102, 255, 0.5);
}

body.dark .particle-solution {
    background: var(--primary-blue-light);
    box-shadow: 0 0 8px rgba(0, 102, 255, 0.8);
}

@keyframes particleFloatSolution {
    0% {
        transform: translateY(100vh) translateX(0) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
        transform: scale(1);
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100px) translateX(100px) scale(0);
        opacity: 0;
    }
}

.solutions-page-new .container {
    position: relative;
    z-index: 1;
}

.solutions-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .solutions-layout {
        grid-template-columns: 1fr 2fr;
        gap: 5rem;
        align-items: start;
    }
}

.solutions-header {
    position: sticky;
    top: 6rem;
}

.solutions-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
    font-feature-settings: "kern" 1, "liga" 1;
}

[dir="ltr"] .solutions-main-title {
    letter-spacing: -0.03em;
}

body.dark .solutions-main-title {
    color: white;
}

@media (min-width: 768px) {
    .solutions-main-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .solutions-main-title {
        font-size: 3.5rem;
    }
}

.solutions-subtitle {
    font-size: 1rem;
    color: var(--primary-blue);
    line-height: 1.6;
    font-weight: 500;
    letter-spacing: 0.01em;
    margin-bottom: 1rem;
    text-align: center;
    opacity: 0.9;
}

[dir="ltr"] .solutions-subtitle {
    letter-spacing: 0;
}

body.dark .solutions-subtitle {
    color: var(--primary-blue-light);
}

@media (min-width: 768px) {
    .solutions-subtitle {
        font-size: 1.125rem;
    }
}

.solutions-intro {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.8;
    font-weight: 400;
    letter-spacing: 0.01em;
}

[dir="ltr"] .solutions-intro {
    letter-spacing: 0;
}

body.dark .solutions-intro {
    color: rgba(255, 255, 255, 0.8);
}

.solutions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.solution-card-new {
    background-color: var(--bg-light);
    border: 1px solid var(--gray-200);
    border-radius: 0.75rem;
    padding: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    overflow: hidden;
}

.solution-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-purple));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body.dark .solution-card-new {
    background-color: rgba(31, 41, 55, 0.6);
    border-color: rgba(59, 130, 246, 0.2);
}

.solution-card-new:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 25px 40px -10px rgba(59, 130, 246, 0.4);
    border-color: rgba(59, 130, 246, 0.5);
    background-color: rgba(255, 255, 255, 0.98);
}

body.dark .solution-card-new:hover {
    background-color: rgba(31, 41, 55, 0.8);
    box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.4);
}

.solution-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

body.dark .solution-icon {
    color: #60a5fa;
}

.solution-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-light);
    margin: 0;
    line-height: 1.4;
    letter-spacing: -0.01em;
}

[dir="ltr"] .solution-card-title {
    letter-spacing: -0.02em;
}

body.dark .solution-card-title {
    color: white;
}

.solution-card-description {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.7;
    font-weight: 400;
    letter-spacing: 0.01em;
    margin: 0;
    flex-grow: 1;
}

[dir="ltr"] .solution-card-description {
    letter-spacing: 0;
}

body.dark .solution-card-description {
    color: rgba(255, 255, 255, 0.7);
}

.solution-card-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: auto;
    letter-spacing: 0.01em;
    position: relative;
}

.solution-card-link::after {
    content: '→';
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

[dir="rtl"] .solution-card-link::after {
    content: '←';
}

[dir="ltr"] .solution-card-link {
    letter-spacing: 0;
}

body.dark .solution-card-link {
    color: #60a5fa;
}

.solution-card-link:hover {
    color: var(--primary-purple);
    gap: 0.5rem;
    transform: translateX(4px);
}

[dir="rtl"] .solution-card-link:hover {
    transform: translateX(-4px);
}

.solution-card-link:hover::after {
    transform: translateX(4px);
}

[dir="rtl"] .solution-card-link:hover::after {
    transform: translateX(-4px);
}

body.dark .solution-card-link:hover {
    color: #a78bfa;
}

/* Solution Modal */
.solution-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.solution-modal.active {
    display: flex;
    opacity: 1;
}

.solution-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.solution-modal-content {
    position: relative;
    z-index: 2001;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 1.5rem;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(0, 102, 255, 0.1);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.solution-modal.active .solution-modal-content {
    transform: scale(1) translateY(0);
}

body.dark .solution-modal-content {
    background: rgba(20, 27, 45, 0.98);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(0, 102, 255, 0.2);
}

.solution-modal-close {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 0.5rem;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: all 0.3s ease;
    z-index: 10;
}

[dir="rtl"] .solution-modal-close {
    left: auto;
    right: 1.5rem;
}

body.dark .solution-modal-close {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-dark);
}

.solution-modal-close:hover {
    background: rgba(0, 102, 255, 0.1);
    transform: rotate(90deg);
}

body.dark .solution-modal-close:hover {
    background: rgba(0, 102, 255, 0.2);
}

.solution-modal-body {
    padding: 3rem 2.5rem;
}

@media (max-width: 768px) {
    .solution-modal-body {
        padding: 2.5rem 1.5rem;
    }
}

/* Solution Modal Content */
.solution-modal-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.3;
    padding-right: 3rem;
}

[dir="ltr"] .solution-modal-title {
    padding-right: 0;
    padding-left: 3rem;
}

body.dark .solution-modal-title {
    color: var(--text-dark);
}

.solution-modal-description {
    font-size: 1.125rem;
    color: var(--text-light-secondary);
    line-height: 1.8;
    margin-bottom: 3rem;
}

body.dark .solution-modal-description {
    color: var(--text-dark-secondary);
}

/* Roadmap Section in Modal */
.solution-roadmap {
    margin: 3rem 0;
}

.solution-roadmap-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 2rem;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body.dark .solution-roadmap-title {
    background: linear-gradient(135deg, var(--primary-blue-light), var(--primary-purple-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.solution-roadmap-container {
    position: relative;
    padding: 2rem 0;
}

.solution-roadmap-line {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, 
        var(--primary-blue) 0%, 
        var(--primary-purple) 50%,
        var(--primary-blue) 100%);
    right: 30px;
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(0, 102, 255, 0.3);
}

[dir="ltr"] .solution-roadmap-line {
    right: auto;
    left: 30px;
}

body.dark .solution-roadmap-line {
    box-shadow: 0 0 30px rgba(0, 102, 255, 0.5);
}

.solution-roadmap-steps {
    position: relative;
    z-index: 1;
}

.solution-roadmap-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 3rem;
    position: relative;
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

[dir="ltr"] .solution-roadmap-step {
    transform: translateX(30px);
}

.solution-roadmap-step.visible {
    opacity: 1;
    transform: translateX(0);
}

.solution-roadmap-step-number {
    position: absolute;
    right: 15px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    box-shadow: 
        0 6px 16px rgba(0, 102, 255, 0.3),
        0 0 0 6px rgba(255, 255, 255, 1),
        0 0 0 8px rgba(0, 102, 255, 0.1);
    z-index: 2;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

[dir="ltr"] .solution-roadmap-step-number {
    right: auto;
    left: 15px;
}

body.dark .solution-roadmap-step-number {
    box-shadow: 
        0 6px 16px rgba(0, 102, 255, 0.5),
        0 0 0 6px rgba(20, 27, 45, 1),
        0 0 0 8px rgba(0, 102, 255, 0.2);
}

.solution-roadmap-step:hover .solution-roadmap-step-number {
    transform: scale(1.15);
    box-shadow: 
        0 8px 20px rgba(0, 102, 255, 0.4),
        0 0 0 6px rgba(255, 255, 255, 1),
        0 0 0 10px rgba(0, 102, 255, 0.2);
}

body.dark .solution-roadmap-step:hover .solution-roadmap-step-number {
    box-shadow: 
        0 8px 20px rgba(0, 102, 255, 0.6),
        0 0 0 6px rgba(20, 27, 45, 1),
        0 0 0 10px rgba(0, 102, 255, 0.3);
}

.solution-roadmap-step-content {
    margin-right: 80px;
    background: rgba(255, 255, 255, 0.9);
    padding: 1.75rem;
    border-radius: 1rem;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(0, 102, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    flex: 1;
}

[dir="ltr"] .solution-roadmap-step-content {
    margin-right: 0;
    margin-left: 80px;
}

body.dark .solution-roadmap-step-content {
    background: rgba(20, 27, 45, 0.8);
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(0, 102, 255, 0.2);
}

.solution-roadmap-step:hover .solution-roadmap-step-content {
    transform: translateX(-8px);
    box-shadow: 
        0 12px 30px rgba(0, 102, 255, 0.15),
        0 0 0 1px rgba(0, 102, 255, 0.2);
}

[dir="ltr"] .solution-roadmap-step:hover .solution-roadmap-step-content {
    transform: translateX(8px);
}

body.dark .solution-roadmap-step:hover .solution-roadmap-step-content {
    box-shadow: 
        0 12px 30px rgba(0, 102, 255, 0.25),
        0 0 0 1px rgba(0, 102, 255, 0.3);
}

.solution-roadmap-step-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

body.dark .solution-roadmap-step-title {
    color: var(--text-dark);
}

.solution-roadmap-step-description {
    font-size: 1rem;
    color: var(--text-light-secondary);
    line-height: 1.7;
    margin: 0;
}

body.dark .solution-roadmap-step-description {
    color: var(--text-dark-secondary);
}

/* Expected Results Section */
.solution-expected-results {
    margin-top: 3rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.05), rgba(124, 58, 237, 0.05));
    border-radius: 1.25rem;
    border: 1px solid rgba(0, 102, 255, 0.1);
}

body.dark .solution-expected-results {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(124, 58, 237, 0.1));
    border-color: rgba(0, 102, 255, 0.2);
}

.solution-expected-results-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    text-align: center;
}

body.dark .solution-expected-results-title {
    color: var(--text-dark);
}

.solution-expected-results-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.solution-expected-results-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 0.75rem;
    border: 1px solid rgba(0, 102, 255, 0.1);
}

body.dark .solution-expected-results-item {
    background: rgba(20, 27, 45, 0.6);
    border-color: rgba(0, 102, 255, 0.2);
}

.solution-expected-results-icon {
    width: 24px;
    height: 24px;
    color: var(--primary-blue);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

body.dark .solution-expected-results-icon {
    color: var(--primary-blue-light);
}

.solution-expected-results-text {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

body.dark .solution-expected-results-text {
    color: var(--text-dark);
}

@media (max-width: 768px) {
    .solution-roadmap-line {
        right: 20px;
    }
    
    [dir="ltr"] .solution-roadmap-line {
        right: auto;
        left: 20px;
    }
    
    .solution-roadmap-step-number {
        right: 5px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    [dir="ltr"] .solution-roadmap-step-number {
        right: auto;
        left: 5px;
    }
    
    .solution-roadmap-step-content {
        margin-right: 60px;
        padding: 1.25rem;
    }
    
    [dir="ltr"] .solution-roadmap-step-content {
        margin-right: 0;
        margin-left: 60px;
    }
    
    .solution-expected-results-list {
        grid-template-columns: 1fr;
    }
    
    .solution-modal-title {
        padding-right: 0;
        font-size: 1.5rem;
    }
    
    [dir="ltr"] .solution-modal-title {
        padding-left: 0;
    }
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-light);
    letter-spacing: -0.02em;
    line-height: 1.3;
    font-feature-settings: "kern" 1, "liga" 1;
}

[dir="ltr"] .page-title {
    letter-spacing: -0.03em;
}

body.dark .page-title {
    color: var(--text-dark);
}

@media (min-width: 640px) {
    .page-title {
        font-size: 3rem;
    }
}

.solutions-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.solution-category {
    background-color: var(--bg-light);
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

body.dark .solution-category {
    background-color: var(--gray-800);
}

.category-header {
    width: 100%;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-align: right;
}

[dir="ltr"] .category-header {
    text-align: left;
}

.category-header:hover {
    background-color: var(--gray-50);
}

body.dark .category-header:hover {
    background-color: var(--gray-700);
}

.category-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
}

body.dark .category-header h2 {
    color: var(--text-dark);
}

.chevron {
    color: var(--gray-600);
    transition: transform 0.3s ease;
}

body.dark .chevron {
    color: var(--gray-400);
}

.category-header.active .chevron {
    transform: rotate(180deg);
}

.category-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.category-content.active {
    max-height: 5000px;
    transition: max-height 0.4s ease;
}

.solution-item {
    padding: 1.5rem;
    border-top: 1px solid var(--gray-200);
}

body.dark .solution-item {
    border-top-color: var(--gray-700);
}

.solution-item:last-child {
    border-bottom: none;
}

.solution-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

body.dark .solution-item h3 {
    color: var(--text-dark);
}

.solution-item p {
    color: var(--gray-600);
    margin-bottom: 1rem;
    line-height: 1.8;
    font-weight: 400;
    letter-spacing: 0.01em;
}

[dir="ltr"] .solution-item p {
    letter-spacing: 0;
}

body.dark .solution-item p {
    color: var(--gray-300);
}

.solution-values {
    list-style: none;
    padding: 0;
}

.solution-values li {
    color: var(--gray-700);
    margin-bottom: 0.5rem;
    padding-right: 1.5rem;
    position: relative;
}

[dir="ltr"] .solution-values li {
    padding-right: 0;
    padding-left: 1.5rem;
}

body.dark .solution-values li {
    color: var(--gray-300);
}

.solution-values li::before {
    content: '•';
    position: absolute;
    right: 0;
    color: var(--primary-blue);
    font-size: 1.5rem;
}

[dir="ltr"] .solution-values li::before {
    right: auto;
    left: 0;
}

body.dark .solution-values li::before {
    color: #60a5fa;
}

/* Contact Page */
.contact-page {
    padding-top: 5rem;
    padding-bottom: 5rem;
    min-height: 100vh;
    background: radial-gradient(circle at top, rgba(59, 130, 246, 0.18), transparent 55%),
                radial-gradient(circle at bottom, rgba(147, 51, 234, 0.16), transparent 55%),
                linear-gradient(135deg, var(--gray-100) 0%, #e5edff 40%, #eef2ff 100%);
}

body.dark .contact-page {
    background: radial-gradient(circle at top, rgba(37, 99, 235, 0.4), transparent 55%),
                radial-gradient(circle at bottom, rgba(147, 51, 234, 0.32), transparent 55%),
                linear-gradient(135deg, #020617 0%, #020617 35%, #020617 100%);
}

.contact-layout-new {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .contact-layout-new {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.contact-form-section {
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

body.dark .contact-form-section {
    background-color: var(--gray-800);
}

.contact-form-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary-blue);
}

.contact-form-subtitle {
    font-size: 1rem;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

body.dark .contact-form-subtitle {
    color: var(--gray-300);
}

/* Form Progress Bar */
.form-progress-container {
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(0, 102, 255, 0.05);
    border-radius: 0.75rem;
    border: 1px solid rgba(0, 102, 255, 0.1);
}

body.dark .form-progress-container {
    background: rgba(0, 102, 255, 0.1);
    border-color: rgba(0, 102, 255, 0.2);
}

.form-progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(0, 102, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
    position: relative;
}

body.dark .form-progress-bar {
    background: rgba(0, 102, 255, 0.15);
}

.form-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-purple));
    border-radius: 4px;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 0%;
    position: relative;
    overflow: hidden;
}

.form-progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmerProgress 2s infinite;
}

@keyframes shimmerProgress {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.form-progress-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary-blue);
    display: block;
    text-align: center;
}

body.dark .form-progress-text {
    color: var(--primary-blue-light);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
    letter-spacing: 0.01em;
    line-height: 1.5;
}

[dir="ltr"] .form-group label {
    letter-spacing: 0;
}

body.dark .form-group label {
    color: var(--gray-300);
}

.form-group input,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid var(--gray-300);
    border-radius: 0.5rem;
    font-size: 1rem;
    background-color: white;
    color: var(--gray-900);
    transition: border-color 0.3s ease;
    font-family: inherit;
    line-height: 1.6;
    letter-spacing: 0.01em;
}

[dir="ltr"] .form-group input,
[dir="ltr"] .form-group textarea {
    letter-spacing: 0;
}

body.dark .form-group input,
body.dark .form-group textarea {
    background-color: var(--gray-700);
    border-color: var(--gray-600);
    color: var(--gray-100);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.phone-input-wrapper {
    display: flex;
    gap: 0.5rem;
}

.phone-country-select {
    padding: 0.75rem 0.5rem;
    background-color: var(--primary-blue);
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-weight: 500;
    cursor: pointer;
    flex-shrink: 0;
    font-size: 0.9rem;
    min-width: 180px;
    font-family: inherit;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    padding-right: 2.5rem;
    padding-left: 0.75rem;
    transition: all 0.3s ease;
}

[dir="rtl"] .phone-country-select {
    background-position: left 0.75rem center;
    padding-right: 0.75rem;
    padding-left: 2.5rem;
}

body.dark .phone-country-select {
    background-color: var(--primary-blue);
}

.phone-country-select:hover {
    background-color: #1d4ed8;
}

body.dark .phone-country-select:hover {
    background-color: #2563eb;
}

.phone-country-select:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3);
}

.phone-country-select option {
    background-color: white;
    color: var(--gray-900);
    padding: 0.5rem;
}

body.dark .phone-country-select option {
    background-color: var(--gray-800);
    color: white;
}

.form-group input[type="tel"] {
    flex: 1;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: 1.25rem;
    height: 1.25rem;
    cursor: pointer;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    cursor: pointer;
}

.checkbox-group a {
    color: var(--primary-blue);
    text-decoration: underline;
}

.submit-btn {
    padding: 1rem 2.5rem;
    background: var(--accent-gradient);
    color: white;
    border: none;
    border-radius: 0.75rem;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 10px 30px -5px rgba(0, 102, 255, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    letter-spacing: 0.02em;
    line-height: 1.5;
    font-family: inherit;
}

[dir="ltr"] .submit-btn {
    letter-spacing: 0.01em;
}

.submit-btn:hover:not(:disabled) {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 20px 40px -5px rgba(0, 102, 255, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset;
    background: var(--accent-gradient-hover);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.submit-btn.loading {
    color: transparent;
}

.submit-btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

/* Form Messages */
.form-message {
    padding: 1rem 1.25rem;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.6;
    animation: fadeInUp 0.4s ease-out;
    transition: all 0.3s ease;
}

.form-message-success {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(34, 197, 94, 0.05) 100%);
    color: #16a34a;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

body.dark .form-message-success {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(34, 197, 94, 0.08) 100%);
    color: #4ade80;
    border-color: rgba(34, 197, 94, 0.3);
}

.form-message-error {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(239, 68, 68, 0.05) 100%);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

body.dark .form-message-error {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, rgba(239, 68, 68, 0.08) 100%);
    color: #f87171;
    border-color: rgba(239, 68, 68, 0.3);
}

.contact-location-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.location-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.location-address {
    color: var(--gray-600);
    font-size: 1rem;
}

body.dark .location-address {
    color: var(--gray-300);
}

.location-map {
    width: 100%;
    height: 400px;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-main {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.contact-lead {
    font-size: 1.05rem;
    color: var(--gray-600);
    max-width: 32rem;
    line-height: 1.7;
    font-weight: 400;
    letter-spacing: 0.01em;
}

[dir="ltr"] .contact-lead {
    letter-spacing: 0;
}

body.dark .contact-lead {
    color: var(--gray-300);
}

.contact-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.contact-card {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

body.dark .contact-card {
    background-color: var(--gray-800);
}

.contact-card:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
}

.contact-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1);
}

.contact-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

body.dark .contact-card h3 {
    color: var(--text-dark);
}

.contact-card p {
    color: var(--gray-600);
}

body.dark .contact-card p {
    color: var(--gray-400);
}

.contact-info {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    text-align: center;
}

body.dark .contact-info {
    background-color: var(--gray-800);
}

.contact-info h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 1rem;
}

body.dark .contact-info h2 {
    color: var(--text-dark);
}

.contact-info p {
    color: var(--gray-600);
}

body.dark .contact-info p {
    color: var(--gray-300);
}

.contact-details {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
}

.contact-detail-item {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    padding: 0.75rem 1.25rem;
    border-radius: 999px;
    background-color: var(--gray-100);
    color: var(--gray-800);
    transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

body.dark .contact-detail-item {
    background-color: var(--gray-800);
    color: var(--gray-100);
}

.contact-detail-item:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 18px rgba(15, 23, 42, 0.18);
}

.contact-label {
    font-weight: 600;
    opacity: 0.8;
}

.contact-value {
    font-family: 'Inter', system-ui, sans-serif;
    direction: ltr;
}

/* Chat panel */
.chat-panel {
    margin-top: 1.75rem;
    border-radius: 1.25rem;
    background-color: var(--bg-light);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
    border: 1px solid rgba(148, 163, 184, 0.35);
    padding: 1.5rem 1.25rem 1.25rem;
}

body.dark .chat-panel {
    background-color: rgba(15, 23, 42, 0.96);
    border-color: rgba(30, 64, 175, 0.7);
    box-shadow: 0 22px 55px rgba(15, 23, 42, 0.9);
}

.chat-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.chat-status-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, #22c55e, #4ade80);
    box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.18);
}

.chat-header-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.chat-title {
    font-weight: 600;
    color: var(--text-light);
}

body.dark .chat-title {
    color: var(--text-dark);
}

.chat-subtitle {
    font-size: 0.85rem;
    color: var(--gray-500);
}

body.dark .chat-subtitle {
    color: var(--gray-400);
}

.chat-messages {
    max-height: 220px;
    overflow-y: auto;
    padding: 0.5rem 0.25rem 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.chat-message {
    font-size: 0.95rem;
    line-height: 1.6;
    padding: 0.6rem 0.85rem;
    border-radius: 0.75rem;
    max-width: 100%;
}

.chat-message-system {
    background-color: rgba(59, 130, 246, 0.06);
    color: var(--gray-800);
}

body.dark .chat-message-system {
    background-color: rgba(37, 99, 235, 0.22);
    color: var(--gray-50);
}

.chat-message-user {
    align-self: flex-end;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    color: white;
}

.chat-input-row {
    margin-top: 0.5rem;
    display: flex;
    gap: 0.5rem;
}

.chat-input {
    flex: 1;
    border-radius: 999px;
    border: 1px solid var(--gray-300);
    padding: 0.6rem 0.9rem;
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
}

.chat-input:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.3);
}

body.dark .chat-input {
    background-color: var(--gray-900);
    border-color: var(--gray-700);
    color: var(--gray-100);
}

.chat-send-btn {
    border-radius: 999px;
    border: none;
    padding: 0.55rem 1.1rem;
    font-size: 0.9rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    color: white;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.chat-send-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(37, 99, 235, 0.35);
}

/* Footer */
.footer {
    background: linear-gradient(180deg, #0F172A 0%, #1E293B 100%);
    color: white;
    padding: 4rem 0 2rem;
    position: relative;
    border-top: 1px solid rgba(0, 102, 255, 0.2);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 102, 255, 0.3), transparent);
}

body.dark .footer {
    background: linear-gradient(180deg, #0A0E27 0%, #141B2D 100%);
    border-top-color: rgba(0, 102, 255, 0.3);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
    line-height: 1.4;
}

[dir="ltr"] .footer-title {
    letter-spacing: -0.02em;
}

.footer-text {
    color: #9ca3af;
    line-height: 1.7;
    font-weight: 400;
    letter-spacing: 0.01em;
    font-size: 0.95rem;
}

[dir="ltr"] .footer-text {
    letter-spacing: 0;
}

.footer-heading {
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
    letter-spacing: 0.01em;
    line-height: 1.5;
}

[dir="ltr"] .footer-heading {
    letter-spacing: 0;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
    line-height: 1.6;
    letter-spacing: 0.01em;
    font-weight: 400;
}

[dir="ltr"] .footer-links a {
    letter-spacing: 0;
}

.footer-links a:hover {
    color: white;
}

.footer-social {
    border-top: 1px solid var(--gray-800);
    padding-top: 2rem;
    margin-top: 2rem;
    text-align: center;
}

body.dark .footer-social {
    border-top-color: #1f2937;
}

.footer-social-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #9ca3af;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.footer-locations {
    border-top: 1px solid var(--gray-800);
    padding-top: 2rem;
    margin-top: 2rem;
}

body.dark .footer-locations {
    border-top-color: #1f2937;
}

.footer-locations-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
    text-align: center;
}

.footer-locations-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
}

@media (min-width: 768px) {
    .footer-locations-list {
        flex-direction: row;
        justify-content: center;
        gap: 2rem;
    }
}

.footer-location-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #9ca3af;
    font-size: 0.9rem;
}

.location-icon {
    color: var(--primary-blue);
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    text-align: center;
    color: #9ca3af;
}

body.dark .footer-bottom {
    border-top-color: #1f2937;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

body.dark ::-webkit-scrollbar-track {
    background: var(--gray-900);
}

::-webkit-scrollbar-thumb {
    background: var(--gray-400);
    border-radius: 5px;
}

body.dark ::-webkit-scrollbar-thumb {
    background: var(--gray-600);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gray-500);
}

body.dark ::-webkit-scrollbar-thumb:hover {
    background: var(--gray-500);
}

/* Additional Professional Enhancements */

/* Smooth page transitions */
* {
    -webkit-tap-highlight-color: transparent;
}

/* Enhanced focus states for accessibility */
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Loading state for buttons */
button.loading {
    position: relative;
    color: transparent;
    pointer-events: none;
}

button.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 16px;
    margin: -8px 0 0 -8px;
    border: 2px solid currentColor;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

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

/* Enhanced social links */
.social-link {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
}

.social-link:hover::before {
    width: 48px;
    height: 48px;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    color: var(--primary-blue);
}

/* Enhanced footer links */
.footer-links a {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: inline-block;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-links a:hover::after {
    width: 100%;
}

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

[dir="rtl"] .footer-links a:hover {
    transform: translateX(-4px);
}

/* Enhanced partner logos */
.partner-logo {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: grayscale(100%) opacity(0.7);
}

.partner-logo:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

/* Enhanced form inputs */
input, textarea, select {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

input:focus, textarea:focus, select:focus {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
}

/* Smooth section transitions */
section {
    position: relative;
    overflow: hidden;
}

/* Enhanced blob animations */
@keyframes blobEnhanced {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    33% {
        transform: translate(30px, -50px) scale(1.1) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9) rotate(240deg);
    }
}

.blob {
    animation: blobEnhanced 7s infinite;
}

/* Professional gradient overlays */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0.8) 100%
    );
    pointer-events: none;
}

body.dark .hero::after {
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
}
