/* ============================================
   CSS Variables - Brand Colors
   ============================================ */
:root {
    /* Brand Colors - Blue Primary, Orange Accent */
    --color-primary: #1e3a5f;              /* Dark Blue - Primary Color */
    --color-primary-light: #2d4f7a;       /* Medium Blue */
    --color-primary-dark: #0f2439;         /* Very Dark Blue */
    --color-accent: #ff8201;               /* Orange - Accent Color (CTAs only) */
    --color-accent-light: #ff911e;         /* Light Orange */
    --color-blue-light: #9fc5d2;           /* Light Blue - Secondary */
    --color-blue-medium: #7fb3c4;          /* Medium Blue */
    
    /* Light Theme */
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --bg-tertiary: #e9ecef;
    --text-primary: #1a1a1a;
    --text-secondary: #4a4a4a;
    --text-light: #6c757d;
    --border-color: #dee2e6;
    
    /* Dark Theme - Blue Based */
    --bg-primary-dark: #0f2439;            /* Very Dark Blue */
    --bg-secondary-dark: #1e3a5f;          /* Dark Blue */
    --bg-tertiary-dark: #2d4f7a;          /* Medium Blue */
    --text-primary-dark: #ffffff;
    --text-secondary-dark: #e0e0e0;
    --text-light-dark: #b0b0b0;
    --border-color-dark: #2d4f7a;         /* Blue borders */
    
    /* Gradients - Blue Primary, Orange Accent */
    --gradient-primary: linear-gradient(135deg, #1e3a5f 0%, #2d4f7a 50%, #0f2439 100%);
    --gradient-hero: linear-gradient(135deg, #0f2439 0%, #1e3a5f 50%, #2d4f7a 100%);
    --gradient-hero-overlay: linear-gradient(135deg, rgba(15, 36, 57, 0.85) 0%, rgba(30, 58, 95, 0.75) 50%, rgba(45, 79, 122, 0.85) 100%);
    --gradient-accent: linear-gradient(135deg, #ff8201 0%, #ff911e 100%);
    --gradient-section: linear-gradient(135deg, rgba(30, 58, 95, 0.05) 0%, rgba(45, 79, 122, 0.05) 100%);
    --gradient-blue: linear-gradient(135deg, #1e3a5f 0%, #2d4f7a 100%);
    
    /* Typography - Lalezar (Arabic) & Poppins (English) */
    --font-arabic: 'Lalezar', 'Tajawal', 'Cairo', 'Almarai', sans-serif;
    --font-english: 'Poppins', 'Inter', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* ============================================
   Dark Theme
   ============================================ */
[data-theme="dark"] {
    --bg-primary: var(--bg-primary-dark);
    --bg-secondary: var(--bg-secondary-dark);
    --bg-tertiary: var(--bg-tertiary-dark);
    --text-primary: var(--text-primary-dark);
    --text-secondary: var(--text-secondary-dark);
    --text-light: var(--text-light-dark);
    --border-color: var(--border-color-dark);
}

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

html {
    scroll-behavior: smooth;
}

/* ============================================
   Lalezar Font Face - Arabic Font
   ============================================ */
/* إذا كان لديك ملفات خط Lalezar، أضفها هنا:
@font-face {
    font-family: 'Lalezar';
    src: url('../fonts/Lalezar-Regular.woff2') format('woff2'),
         url('../fonts/Lalezar-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lalezar';
    src: url('../fonts/Lalezar-Bold.woff2') format('woff2'),
         url('../fonts/Lalezar-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
*/

/* Fallback: استخدام خط مشابه من Google Fonts */
@font-face {
    font-family: 'Lalezar';
    src: local('Lalezar'), 
         local('Lalezar-Regular'),
         local('Lalezar-Bold');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* ============================================
   Poppins Font Face - English Font
   ============================================ */
/* إذا كان لديك ملفات خط Poppins، أضفها هنا:
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Regular.woff2') format('woff2'),
         url('../fonts/Poppins-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

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

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-SemiBold.woff2') format('woff2'),
         url('../fonts/Poppins-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

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

/* Fallback: استخدام Inter كبديل لـ Poppins (خطوط متشابهة) */
@font-face {
    font-family: 'Poppins';
    src: local('Poppins'), 
         local('Poppins-Regular'),
         local('Poppins-Medium'),
         local('Poppins-SemiBold'),
         local('Poppins-Bold');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* استخدام Inter كبديل مباشر لـ Poppins حتى يتم إضافة ملفات Poppins */
@supports not (font-family: 'Poppins') {
    :root {
        --font-english: 'Inter', sans-serif;
    }
}

body {
    font-family: var(--font-arabic);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    transition: background-color var(--transition-normal), color var(--transition-normal);
    overflow-x: hidden;
}

[dir="ltr"] body {
    font-family: var(--font-english);
}

/* ============================================
   Header & Navigation
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all var(--transition-normal);
}

[data-theme="dark"] .header {
    background: rgba(26, 26, 26, 0.95);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar {
    padding: var(--spacing-sm) 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-lg);
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo .logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: transform var(--transition-normal);
}

.nav-logo .logo:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-md);
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: var(--spacing-xs) var(--spacing-md);
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all var(--transition-fast);
    border-radius: 8px;
    position: relative;
}

/* More dropdown */
.nav-more-btn {
    background: transparent;
    border: 0;
    cursor: pointer;
    font: inherit;
}

.nav-more-caret {
    font-size: 0.85rem;
    margin-inline-start: 8px;
    transition: transform var(--transition-normal);
}

.nav-more-menu {
    position: absolute;
    top: calc(100% + 10px);
    inset-inline-end: 0;
    min-width: 210px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 14px;
    box-shadow: var(--shadow-lg);
    padding: 8px;
    display: none;
    z-index: 1200;
}

[data-theme="dark"] .nav-more-menu {
    background: rgba(26, 26, 26, 0.98);
    border-color: rgba(255, 255, 255, 0.08);
}

.nav-more-link {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    border-radius: 10px;
    color: var(--text-primary);
    text-decoration: none;
    transition: background var(--transition-fast), color var(--transition-fast);
    white-space: nowrap;
}

[data-theme="dark"] .nav-more-link {
    color: var(--text-primary-dark);
}

.nav-more-link:hover {
    background: rgba(255, 130, 1, 0.12);
    color: var(--color-primary);
}

.nav-more.is-open .nav-more-menu {
    display: block;
}

.nav-more.is-open .nav-more-caret {
    transform: rotate(180deg);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-combined);
    transition: width var(--transition-normal);
}

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

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

.nav-link:nth-child(even):hover {
    color: var(--color-accent);
}

.nav-controls {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.theme-toggle,
.language-toggle {
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    color: var(--text-primary);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.theme-toggle::before,
.language-toggle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--gradient-primary);
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
    z-index: 0;
}

.theme-toggle i,
.language-toggle .lang-text {
    position: relative;
    z-index: 1;
    transition: transform 0.3s, color 0.3s;
}

.theme-toggle:hover,
.language-toggle:hover {
    border-color: var(--color-primary);
    transform: scale(1.15) translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 130, 1, 0.3);
}

.theme-toggle:hover::before,
.language-toggle:hover::before {
    width: 100%;
    height: 100%;
}

.theme-toggle:hover i,
.language-toggle:hover .lang-text {
    color: white;
    transform: rotate(360deg);
}

.language-toggle {
    width: auto;
    min-width: 45px;
    padding: 0 var(--spacing-md);
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
}

.language-toggle .lang-text {
    font-family: var(--font-english);
    letter-spacing: 1px;
}

[data-theme="dark"] .theme-toggle,
[data-theme="dark"] .language-toggle {
    background: var(--bg-secondary-dark);
    border-color: rgba(159, 197, 210, 0.2);
    color: var(--text-primary-dark);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .theme-toggle:hover,
[data-theme="dark"] .language-toggle:hover {
    border-color: var(--color-accent);
    box-shadow: 0 6px 20px rgba(159, 197, 210, 0.3);
}

[data-theme="dark"] .theme-toggle:hover::before,
[data-theme="dark"] .language-toggle:hover::before {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-light) 100%);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: var(--spacing-xs);
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 3px;
    transition: all var(--transition-normal);
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ============================================
   Hero Section - New Design
   ============================================ */
/* HERO SECTION */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px;
    overflow: hidden;
    background: linear-gradient(135deg, #0b1d3a, #060b16);
}

/* Overlay grid effect */
.hero-overlay {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 1;
}

/* CONTENT */
.hero-content {
    max-width: 50%;
    z-index: 2;
    position: relative;
}

[dir="rtl"] .hero-content {
    max-width: 50%;
    margin-right: 0;
    margin-left: auto;
}

[dir="ltr"] .hero-content {
    max-width: 50%;
    margin-left: 0;
    margin-right: auto;
}

.hero-content h1.hero-title {
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 900;
    font-family: var(--font-english);
}

[dir="rtl"] .hero-content h1.hero-title {
    font-family: var(--font-arabic);
}

.hero-content h1.hero-title .title-accent {
    color: #ff8c00;
}

.hero-content p.hero-description {
    font-size: 18px;
    opacity: 0.9;
    max-width: 520px;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* HERO VISUAL */
.hero-visual {
    position: absolute;
    right: 80px;
    display: flex;
    gap: 20px;
    z-index: 2;
}

[dir="rtl"] .hero-visual {
    right: auto;
    left: 80px;
}

.hero-visual img {
    width: 160px;
    height: auto;
    margin: 10px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hero-visual img:hover {
    transform: translateY(-10px) scale(1.05);
}

/* FILTERS SECTION */
.filters-section {
    padding: 40px 0;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
}

[data-theme="dark"] .filters-section {
    background: var(--bg-secondary-dark);
    border-bottom-color: var(--border-color-dark);
}

.filters {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-select {
    padding: 12px 24px;
    border-radius: 8px;
    border: 2px solid var(--border-color);
    background: var(--bg-primary);
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 200px;
    font-family: var(--font-arabic);
}

[data-theme="dark"] .filter-select {
    background: var(--bg-primary-dark);
    color: var(--text-primary-dark);
    border-color: var(--border-color-dark);
}

.filter-select:hover {
    border-color: var(--color-primary);
    box-shadow: 0 4px 12px rgba(30, 58, 95, 0.2);
}

.filter-select:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.1);
}

/* PRODUCTS SECTION */
.products-section {
    padding: 60px 0;
    background: var(--bg-primary);
}

[data-theme="dark"] .products-section {
    background: var(--bg-primary-dark);
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(24px, 4vw, 32px);
    margin-top: var(--spacing-lg);
}

.product-card {
    background: var(--bg-primary, linear-gradient(135deg, 
        rgba(255, 255, 255, 0.98) 0%,
        rgba(255, 255, 255, 0.95) 100%
    ));
    border-radius: 15px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    position: relative;
    border: 2px solid transparent;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    opacity: 1;
    transform: translateY(0);
    will-change: transform, opacity;
}

.product-card.hidden {
    display: none !important;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #00bfff 0%, #00d4ff 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    box-shadow: 0 0 12px rgba(0, 191, 255, 0.5);
}

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

.product-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 60px 60px;
    border-color: transparent transparent rgba(0, 191, 255, 0.2) transparent;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

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

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 191, 255, 0.25);
    border-color: #00bfff;
}

[data-theme="dark"] .product-card {
    background: var(--bg-secondary-dark, rgba(15, 36, 57, 0.85));
    border: 1px solid rgba(0, 191, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .product-card:hover {
    background: var(--bg-tertiary-dark, rgba(30, 58, 95, 0.8));
    border-color: rgba(0, 191, 255, 0.25);
    box-shadow: 0 8px 30px rgba(0, 191, 255, 0.2);
    transform: translateY(-8px);
}

[data-theme="dark"] .product-info {
    background: transparent;
}

[data-theme="dark"] .product-card::before {
    background: linear-gradient(90deg, rgba(0, 191, 255, 1) 0%, rgba(30, 58, 95, 1) 100%);
}

@media (max-width: 768px) {
    .product-card {
        border-radius: 12px;
    }
    
    .product-info {
        padding: 20px;
        gap: 10px;
    }
    
    .product-image-wrapper {
        height: 200px;
    }
    
    .product-label {
        font-size: 0.85rem;
        min-width: 60px;
    }
    
    .product-value {
        font-size: 0.9rem;
    }
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 191, 255, 0.25);
    border-color: #00bfff;
}

.product-card.hidden {
    display: none !important;
}

.product-card.hidden-by-load-more {
    display: none !important;
}

.product-card.show-more {
    display: flex !important;
    animation: fadeInUp 0.5s ease-out;
}

.product-image-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: var(--bg-secondary, #f5f5f5);
    margin: 0;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* تم إزالة overlay - الصور تظهر مباشرة */

[data-theme="dark"] .product-image-wrapper {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.product-info {
    padding: var(--spacing-lg, 24px);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm, 12px);
    flex: 1;
    text-align: right;
}

.product-info-item {
    display: flex;
    align-items: baseline;
    gap: var(--spacing-sm, 10px);
    padding-bottom: var(--spacing-xs, 8px);
    border-bottom: 1px solid rgba(0, 191, 255, 0.15);
}

.product-info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.product-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-secondary, #666);
    min-width: 70px;
    font-family: 'Cairo', var(--font-arabic);
    flex-shrink: 0;
}

.product-value {
    font-size: 0.95rem;
    color: var(--text-primary, #333);
    font-family: 'Cairo', var(--font-arabic);
    flex: 1;
    line-height: 1.55;
    font-weight: 400;
}

.product-brand {
    font-weight: 400;
    color: #00bfff;
}

.product-category {
    font-size: 0.95rem;
    font-weight: 400;
    color: #00bfff;
}

.product-name {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text-primary);
    margin: 0;
}

.product-description {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.55;
    margin: 0;
    font-weight: 400;
}

[data-theme="dark"] .product-label {
    color: var(--color-accent, rgba(0, 191, 255, 1));
}

[data-theme="dark"] .product-value {
    color: rgba(255, 255, 255, 0.9);
}

[data-theme="dark"] .product-name {
    color: rgba(255, 255, 255, 0.95);
}

[data-theme="dark"] .product-description {
    color: rgba(255, 255, 255, 0.8);
}

[data-theme="dark"] .product-category {
    color: var(--color-accent, rgba(0, 191, 255, 1));
    font-weight: 400;
}

[data-theme="dark"] .product-info-item {
    border-bottom-color: rgba(0, 191, 255, 0.2);
}

[dir="ltr"] .product-info {
    text-align: left;
}

[dir="ltr"] .product-badge {
    right: auto;
    left: var(--spacing-sm, 12px);
}

[data-theme="dark"] .product-category-tag {
    background: rgba(0, 191, 255, 0.1);
    border-color: rgba(0, 191, 255, 0.3);
    color: rgba(0, 191, 255, 1);
}

[data-theme="dark"] .product-card:hover .product-category-tag {
    background: rgba(0, 191, 255, 0.2);
    border-color: rgba(0, 191, 255, 0.5);
}

/* تم نقل product-description إلى product-value في product-info-item */

[data-theme="dark"] .product-description {
    color: rgba(255, 255, 255, 0.8);
}

[data-theme="dark"] .product-image-wrapper {
    background: var(--bg-primary-dark, rgba(15, 36, 57, 0.5));
}

[data-theme="dark"] .product-badge {
    background: linear-gradient(135deg, var(--color-accent, rgba(0, 191, 255, 0.9)) 0%, rgba(0, 191, 255, 0.7) 100%);
    box-shadow: 0 4px 15px rgba(0, 191, 255, 0.4);
}

.product-brand {
    color: #00bfff;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-block;
    padding: 4px 12px;
    background: rgba(0, 191, 255, 0.1);
    border-radius: 6px;
}

/* MISSION SECTION */
.mission-section {
    padding: 80px 0;
    background: #060b16;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.mission-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(11, 29, 58, 0.8) 0%, rgba(6, 11, 22, 0.9) 100%);
    z-index: 0;
}

.mission-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.mission-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    color: #ffffff;
    margin-bottom: var(--spacing-lg);
    font-family: var(--font-arabic);
}

.mission-text {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    opacity: 0.9;
    font-family: var(--font-arabic);
}

.title-line {
    display: block;
    color: white;
    letter-spacing: -1px;
    transition: transform var(--transition-normal);
}

.title-line:hover {
    transform: translateX(5px);
}

.title-line.highlight {
    background: linear-gradient(135deg, #ffffff 0%, #9fc5d2 40%, #7fb3c4 60%, #ffffff 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
    position: relative;
}

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


.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
    padding: var(--spacing-lg) 0;
    animation: fadeInUp 0.8s ease-out 1s both;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

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

.stat-item:hover::before {
    left: 100%;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--color-accent);
}

.stat-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 12px;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(255, 130, 1, 0.4);
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 900;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 2px;
    text-shadow: 0 2px 10px rgba(159, 197, 210, 0.3);
    display: block;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* BUTTONS */
.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 1rem;
    position: relative;
}

.btn-primary {
    background: #ff8c00;
    color: #000;
}

.btn-primary:hover {
    background: #ffa733;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
}

.btn-secondary {
    border: 2px solid #ffffff;
    color: #ffffff;
    background: transparent;
}

.btn-secondary:hover {
    background: #ffffff;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

/* Right Section: Visual Cards */
.hero-visual-section {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    position: relative;
    animation: fadeInRight 1s ease-out 0.4s both;
}

.hero-visual-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    width: 100%;
    max-width: 500px;
}

.visual-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: var(--spacing-xl);
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    color: white;
}

.visual-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.visual-card:hover::before {
    opacity: 1;
}

.visual-card:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--color-accent);
}

.visual-card .card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--spacing-md);
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 6px 20px rgba(255, 130, 1, 0.4);
    transition: all var(--transition-normal);
    position: relative;
    z-index: 1;
}

.visual-card:hover .card-icon {
    transform: scale(1.15) rotate(5deg);
    background: var(--gradient-accent);
    box-shadow: 0 8px 25px rgba(159, 197, 210, 0.5);
}

.visual-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.visual-card.card-1 {
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.visual-card.card-2 {
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.visual-card.card-3 {
    animation: fadeInUp 0.8s ease-out 1s both;
}

.visual-card.card-4 {
    animation: fadeInUp 0.8s ease-out 1.2s both;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    color: var(--bg-primary);
    overflow: hidden;
    z-index: 1;
    filter: drop-shadow(0 -5px 10px rgba(0, 0, 0, 0.1));
}

.hero-wave svg {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
}

/* Hero Stats Section (20% height) */
.hero-stats-section {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20vh;
    min-height: 20vh;
    max-height: 20vh;
    z-index: 3;
    display: flex !important;
    visibility: visible !important;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md) 0;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.stats-3d-swiper {
    width: 100%;
    height: 100%;
    padding: 0 var(--spacing-lg);
}

.stats-3d-swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.stat-card-3d {
    width: 100%;
    max-width: 250px;
    height: 100%;
    max-height: 120px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border-radius: 15px;
    padding: var(--spacing-md);
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-style: preserve-3d;
    position: relative;
    overflow: hidden;
}

.stats-3d-swiper .swiper-slide-active .stat-card-3d {
    transform: translateZ(20px) scale(1.05);
    background: rgba(255, 255, 255, 0.25);
    border-color: var(--color-accent);
    box-shadow: 0 15px 40px rgba(159, 197, 210, 0.4);
}

.stat-icon-3d {
    width: 50px;
    height: 50px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 12px;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(255, 130, 1, 0.4);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.stats-3d-swiper .swiper-slide-active .stat-icon-3d {
    transform: translateZ(15px) rotate(5deg) scale(1.1);
    background: var(--gradient-accent);
    box-shadow: 0 6px 20px rgba(159, 197, 210, 0.5);
}

.stat-content-3d {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stat-number-3d {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 900;
    color: var(--color-accent);
    line-height: 1;
    margin: 0;
    text-shadow: 0 2px 10px rgba(159, 197, 210, 0.3);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.stats-3d-swiper .swiper-slide-active .stat-number-3d {
    transform: translateZ(15px);
    color: var(--color-accent);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    text-shadow: 0 4px 15px rgba(159, 197, 210, 0.5);
}

.stat-label-3d {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
    transform-style: preserve-3d;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    line-height: 1.2;
}

.stats-3d-swiper .swiper-slide-active .stat-label-3d {
    transform: translateZ(15px);
    color: white;
    font-size: 1rem;
}

/* Stats Swiper Pagination - Hidden */
.stats-3d-swiper .swiper-pagination {
    display: none !important;
    visibility: hidden;
    opacity: 0;
}

.stats-3d-swiper .swiper-pagination-bullet {
    display: none !important;
}

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

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

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

/* ============================================
   Container
   ============================================ */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

/* ============================================
   Section Header
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xxl);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--color-primary);
    margin-bottom: var(--spacing-md);
    position: relative;
    display: inline-block;
}

[data-theme="dark"] .section-title {
    color: #ffffff;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* ============================================
   About Section - New Design
   ============================================ */
.about-section {
    padding: var(--spacing-xxl) 0;
    background: var(--bg-secondary);
}

/* Section Title at Top */
.section-header-about-new {
    text-align: center;
    margin-bottom: var(--spacing-xxl);
    position: relative;
    z-index: 1;
}

.section-title-about-new {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 900;
    color: var(--text-primary);
    opacity: 0.3;
    transition: all 0.8s ease-out;
    position: relative;
    display: inline-block;
    margin-bottom: var(--spacing-md);
    font-family: var(--font-arabic);
}

.section-title-about-new.in-view {
    opacity: 1;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title-underline-new {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: var(--gradient-combined);
    border-radius: 2px;
    transition: width 0.8s ease-out;
}

.section-title-underline-new.in-view {
    width: 80px;
}

.about-wrapper-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxl);
    align-items: center;
}

/* Left Column: Images Grid */
.about-images-col {
    width: 100%;
}

.about-images-grid-new {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    position: relative;
}

.about-image-item-new {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.about-image-item-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.about-image-item-new img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-slow);
}

.about-image-item-new:hover img {
    transform: scale(1.1);
}

.about-img-1 {
    grid-column: 1;
    grid-row: 1;
}

.about-img-2 {
    grid-column: 2;
    grid-row: 1;
    margin-top: 25%;
}

.about-img-3 {
    grid-column: 1;
    grid-row: 2;
}

.about-img-4 {
    grid-column: 2;
    grid-row: 2;
}

/* Right Column: Content */
.about-content-col {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.about-label-new {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-primary);
    font-family: var(--font-arabic);
    margin-bottom: var(--spacing-xs);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-title-new {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.3;
    margin: 0 0 var(--spacing-md) 0;
    font-family: var(--font-arabic);
}

.about-title-new i {
    color: var(--color-primary);
}

.about-text-new {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    text-align: right;
}

[dir="ltr"] .about-text-new {
    text-align: left;
}

/* Statistics */
.about-stats-new {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    margin: var(--spacing-lg) 0;
}

.about-stat-item-new {
    width: 100%;
}

.about-stat-item-new .d-flex {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    background: var(--bg-primary);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.stat-icon-wrapper {
    width: 50px;
    height: 50px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 12px;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(255, 130, 1, 0.4);
    transition: all var(--transition-normal);
}

.about-stat-item-new .d-flex:hover .stat-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    background: var(--gradient-accent);
    box-shadow: 0 6px 20px rgba(159, 197, 210, 0.5);
}

.about-stat-item-new .d-flex:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.border-start {
    border-right: 5px solid var(--color-primary) !important;
}

[dir="ltr"] .border-start {
    border-right: none !important;
    border-left: 5px solid var(--color-primary) !important;
}

.stat-number-new {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 900;
    color: var(--color-primary);
    line-height: 1;
    margin: 0;
}

.display-5 {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
}

.flex-shrink-0 {
    flex-shrink: 0;
}

.ps-4 {
    padding-right: var(--spacing-md);
}

[dir="ltr"] .ps-4 {
    padding-right: 0;
    padding-left: var(--spacing-md);
}

.about-stat-item-new .mb-0 {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.about-stat-item-new h6 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    margin: 0;
    font-family: var(--font-arabic);
}

/* Read More Button */
.btn-read-more-new {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: 1rem;
    font-weight: 700;
    border-radius: 8px;
    transition: all var(--transition-normal);
    margin-top: var(--spacing-md);
    text-decoration: none;
    width: fit-content;
    background: var(--gradient-primary);
    color: white;
    border: 2px solid transparent;
}

.btn-read-more-new:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(34, 139, 34, 0.3);
    background: linear-gradient(135deg, #ff911e 0%, #ff8201 100%);
}

.btn-read-more-new i {
    margin-right: var(--spacing-xs);
}

[dir="ltr"] .btn-read-more-new i {
    margin-right: 0;
    margin-left: var(--spacing-xs);
}

/* ============================================
   Mission & Vision Section - New Design
   ============================================ */
.mission-vision-section {
    padding: var(--spacing-xxl) 0;
    background: var(--bg-secondary);
}

.mission-vision-section-header {
    text-align: center;
    margin-bottom: var(--spacing-xxl);
    position: relative;
    z-index: 1;
}

.mission-vision-section-title-new {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 900;
    color: var(--text-primary);
    opacity: 0.3;
    transition: all 0.8s ease-out;
    position: relative;
    display: inline-block;
    margin-bottom: var(--spacing-md);
    font-family: var(--font-arabic);
}

[data-theme="dark"] .mission-vision-section-title-new {
    color: #ffffff;
    opacity: 0.85;
}

.mission-vision-section-title-new.in-view {
    opacity: 1;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

[data-theme="dark"] .mission-vision-section-title-new.in-view {
    opacity: 1;
    background: none;
    -webkit-text-fill-color: #ffffff;
    color: #ffffff;
}

.mission-vision-section-underline-new {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: 2px;
    transition: width 0.8s ease-out;
}

.mission-vision-section-underline-new.in-view {
    width: 80px;
}

.tt-mv-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxl);
    align-items: start;
    margin-top: var(--spacing-xxl);
}

.tt-mv-split--second {
    margin-top: calc(var(--spacing-xxl) + 40px);
}

.tt-mv-content {
    max-width: 680px;
    display: flex;
    flex-direction: column;
}

.tt-mv-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 130, 1, 0.12);
    color: var(--color-accent);
    font-weight: 800;
    font-size: 0.95rem;
    margin-bottom: 12px;
}

[data-theme="dark"] .tt-mv-badge {
    background: rgba(255, 130, 1, 0.14);
}

/* Vision badge: white text */
.tt-mv-badge--vision {
    color: #ffffff;
    background: var(--gradient-accent);
}

[data-theme="dark"] .tt-mv-badge--vision {
    color: #ffffff;
    background: var(--gradient-accent);
}

.tt-mv-thumb {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Make mission/vision headings closer to the provided "About Us" layout */
.tt-mv-content .mission-vision-heading-new {
    font-size: 2.2rem;
    margin-bottom: 12px;
}

@media (max-width: 992px) {
    .tt-mv-split {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

    .tt-mv-split--second .tt-mv-thumb {
        order: 2;
    }
}

.mission-vision-row-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
    align-items: start;
}

.mission-vision-col-new {
    padding: var(--spacing-lg) 0;
}

.mission-col-new {
    padding-right: var(--spacing-lg);
}

[dir="ltr"] .mission-col-new {
    padding-right: 0;
    padding-left: var(--spacing-lg);
}

.vision-col-new {
    padding-left: var(--spacing-lg);
}

[dir="ltr"] .vision-col-new {
    padding-left: 0;
    padding-right: var(--spacing-lg);
}

.image-col-new {
    min-height: 500px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.mission-vision-image-wrapper-new {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    background: transparent;
}

.mission-vision-image-new {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-slow);
}

.mission-vision-image-wrapper-new:hover .mission-vision-image-new {
    transform: scale(1.05);
}

/* Make the image look "standalone" (no visible wrapper) */
.mission-vision-section .mission-vision-image-wrapper-new {
    min-height: auto;
    height: auto;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mission-vision-section .mission-vision-image-new {
    position: static;
    width: min(560px, 96%);
    height: auto;
    object-fit: contain;
    transform: none !important;
    filter: drop-shadow(0 18px 45px rgba(0, 0, 0, 0.18));
}

[data-theme="dark"] .mission-vision-section .mission-vision-image-new {
    filter: drop-shadow(0 18px 55px rgba(0, 0, 0, 0.45));
}

.mission-vision-heading-new {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
    font-family: var(--font-arabic);
    line-height: 1.3;
}

[data-theme="dark"] .mission-vision-heading-new {
    color: #ffffff;
}

[dir="ltr"] .mission-vision-heading-new {
    font-family: var(--font-english);
}

.mission-vision-subheading-new {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
    font-family: var(--font-arabic);
}

[dir="ltr"] .mission-vision-subheading-new {
    font-family: var(--font-english);
}

.mission-vision-text-new {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #000000;
    margin-bottom: var(--spacing-lg);
    text-align: right;
    font-family: var(--font-arabic);
    font-weight: 500;
}

[data-theme="dark"] .mission-vision-text-new {
    color: var(--text-primary-dark);
}

[dir="ltr"] .mission-vision-text-new {
    text-align: left;
    font-family: var(--font-english);
}

[dir="ltr"] .mission-vision-heading-new,
[dir="ltr"] .mission-vision-subheading-new {
    font-family: var(--font-english);
}

.vision-list-new {
    margin-bottom: var(--spacing-lg);
}

.vision-item-new {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
    font-family: var(--font-arabic);
    line-height: 1.6;
}

.vision-item-new span {
    display: inline-block;
    flex: 1;
    font-family: var(--font-arabic);
    font-weight: 600;
}

[dir="ltr"] .vision-item-new span {
    font-family: var(--font-english);
}

.vision-item-new i {
    color: var(--color-primary);
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.3s ease;
}

[data-theme="dark"] .vision-item-new i {
    color: var(--color-accent);
    opacity: 1;
}

.vision-item-new:hover i {
    transform: scale(1.2) rotate(15deg);
    color: var(--color-accent);
}

[dir="ltr"] .vision-item-new {
    flex-direction: row;
}

.mission-vision-btn-new {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: 1rem;
    font-weight: 700;
    border-radius: 8px;
    transition: all var(--transition-normal);
    margin-top: var(--spacing-md);
    text-decoration: none;
    color: #000000;
    width: fit-content;
}

.mission-vision-btn-new span,
.mission-vision-btn-new i {
    color: #000000;
}

.mission-vision-btn-new:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(34, 139, 34, 0.3);
}

.mission-vision-btn-new:hover span,
.mission-vision-btn-new:hover i {
    color: #000000;
}

/* ============================================
   Gallery Section (Company Photos)
   ============================================ */
.gallery-section {
    padding: var(--spacing-xxl) 0;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

/* ============================================
   Activities & Services
   ============================================ */
/* ============================================
   Activities & Services Section - Modern Corporate-Tech Design
   ============================================ */
.tt-activities-services {
  padding: clamp(80px, 10vw, 120px) 0;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

[data-theme="dark"] .tt-activities-services {
  background: var(--bg-primary-dark);
}

/* Tech Background Pattern — أزرق مشع */
.tt-activities-services::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.05;
  background-image: 
    linear-gradient(rgba(0, 191, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 191, 255, 0.08) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

/* Section Header */
.tt-activities-services .section-header {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 60px);
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.tt-activities-services .section-title {
  width: 100%;
  margin-bottom: 20px;
}

.tt-activities-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(0, 191, 255, 0.12);
  border: 1px solid rgba(0, 191, 255, 0.4);
  border-radius: 50px;
  color: #00bfff;
  font-weight: 700;
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  width: fit-content;
  backdrop-filter: blur(10px);
  margin: 0 auto 24px;
  animation: fadeInUp 0.8s ease-out 0.1s both;
  box-shadow: 0 0 16px rgba(0, 191, 255, 0.25);
}

.tt-activities-badge span {
  display: inline-block;
}

[data-theme="dark"] .tt-activities-badge {
  background: rgba(0, 191, 255, 0.15);
  border-color: rgba(0, 191, 255, 0.45);
  color: var(--color-blue-light, #00bfff);
  box-shadow: 0 0 20px rgba(0, 191, 255, 0.3);
}

.tt-activities-badge i {
  font-size: 1.1rem;
  filter: drop-shadow(0 0 4px rgba(0, 191, 255, 0.5));
}

/* Filter Buttons */
.tt-activities-filters {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin: 0 auto clamp(40px, 5vw, 60px);
  position: relative;
  z-index: 1;
  padding: 0;
}

.tt-filter-btn {
  padding: 14px 28px;
  border-radius: 50px;
  border: 2px solid rgba(0, 191, 255, 0.25);
  background: var(--bg-primary);
  color: var(--text-primary);
  font-weight: 700;
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: var(--font-arabic);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  min-width: fit-content;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

[data-theme="dark"] .tt-filter-btn {
  background: var(--bg-secondary-dark);
  border-color: rgba(0, 191, 255, 0.3);
  color: rgba(255, 255, 255, 0.9);
}

.tt-filter-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 191, 255, 0.08), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tt-filter-btn:hover::before {
  opacity: 1;
}

.tt-filter-btn:hover {
  border-color: rgba(0, 191, 255, 0.6);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 191, 255, 0.3);
  background: rgba(0, 191, 255, 0.06);
}

[data-theme="dark"] .tt-filter-btn:hover {
  background: rgba(0, 191, 255, 0.1);
  border-color: rgba(0, 191, 255, 0.5);
  box-shadow: 0 6px 20px rgba(0, 191, 255, 0.25);
}

.tt-filter-btn.active {
  background: linear-gradient(135deg, #00a8e8 0%, #00bfff 50%, #5bcfff 100%);
  border-color: rgba(0, 191, 255, 0.6);
  color: #fff;
  box-shadow: 0 4px 20px rgba(0, 191, 255, 0.4), 0 0 20px rgba(0, 191, 255, 0.2);
  transform: translateY(-2px);
}

.tt-filter-btn.active::before {
  opacity: 0;
}

/* Activities Grid */
.tt-activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: clamp(24px, 3vw, 32px);
  position: relative;
  z-index: 1;
}

/* Activity Card */
.tt-activity-card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  display: block;
  visibility: visible;
  will-change: opacity, transform;
}

.tt-activity-card.visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.tt-activity-card.hidden {
  display: none !important;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.tt-activity-card-inner {
  position: relative;
  padding: 0;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.85);
  border: 2px solid rgba(0, 191, 255, 0.25);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08), 0 0 20px rgba(0, 191, 255, 0.08);
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

[data-theme="dark"] .tt-activity-card-inner {
  background: rgba(15, 36, 57, 0.75);
  border-color: rgba(0, 191, 255, 0.35);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3), 0 0 24px rgba(0, 191, 255, 0.1);
}

/* صورة معبرة في أعلى الكارد */
.tt-activity-card-image {
  position: relative;
  width: 100%;
  height: 140px;
  overflow: hidden;
  flex-shrink: 0;
  border-radius: 18px 18px 0 0;
}

.tt-activity-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 191, 255, 0.15) 100%);
  pointer-events: none;
}

.tt-activity-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.tt-activity-card:hover .tt-activity-card-image img {
  transform: scale(1.08);
}

.tt-activity-card-inner > .tt-activity-icon,
.tt-activity-card-inner > .tt-activity-title,
.tt-activity-card-inner > .tt-activity-description {
  padding-left: clamp(28px, 3.5vw, 36px);
  padding-right: clamp(28px, 3.5vw, 36px);
}

.tt-activity-card-inner > .tt-activity-icon {
  margin-top: -32px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.tt-activity-card-inner > .tt-activity-title {
  padding-top: 0;
}

.tt-activity-card-inner > .tt-activity-description {
  padding-bottom: clamp(28px, 3.5vw, 36px);
  margin-bottom: 0;
}

.tt-activity-card-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #00bfff 0%, #5bcfff 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.tt-activity-card:hover .tt-activity-card-inner {
  transform: translateY(-8px);
  border-color: rgba(0, 191, 255, 0.5);
  box-shadow: 0 20px 60px rgba(0, 191, 255, 0.25), 0 0 30px rgba(0, 191, 255, 0.15);
}

[data-theme="dark"] .tt-activity-card:hover .tt-activity-card-inner {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 35px rgba(0, 191, 255, 0.2);
}

.tt-activity-card:hover .tt-activity-card-inner::before {
  opacity: 1;
  box-shadow: 0 0 12px rgba(0, 191, 255, 0.6);
}

/* Activity Icon — توكيد على الأيقونات بأزرق مشع + مسافة يسار */
.tt-activity-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: linear-gradient(135deg, #00a8e8 0%, #00bfff 50%, #5bcfff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2rem;
  margin-bottom: 16px;
  margin-inline-start: 12px;
  box-shadow: 0 8px 24px rgba(0, 191, 255, 0.4),
              0 0 20px rgba(0, 191, 255, 0.25),
              inset 0 1px 0 rgba(255, 255, 255, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.5);
  transition: all 0.4s ease;
  flex-shrink: 0;
}

.tt-activity-icon i {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.tt-activity-card:hover .tt-activity-icon {
  transform: scale(1.12) rotate(4deg);
  box-shadow: 0 12px 32px rgba(0, 191, 255, 0.5),
              0 0 28px rgba(0, 191, 255, 0.35);
  border-color: rgba(255, 255, 255, 0.7);
}

/* Activity Title */
.tt-activity-title {
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  font-weight: 900;
  color: var(--text-primary);
  margin: 0 0 16px;
  font-family: var(--font-arabic);
  line-height: 1.3;
}

[data-theme="dark"] .tt-activity-title {
  color: rgba(255, 255, 255, 0.95);
}

/* Activity Description */
.tt-activity-description {
  font-size: clamp(0.95rem, 1.3vw, 1.05rem);
  line-height: 1.8;
  color: var(--text-secondary);
  margin: 0 0 20px;
  flex: 1;
}

.tt-activity-card-inner > .tt-activity-description {
  padding-bottom: clamp(24px, 3vw, 32px);
}

[data-theme="dark"] .tt-activity-description {
  color: rgba(255, 255, 255, 0.85);
}

/* Activity Overlay — أزرق مشع */
.tt-activity-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 45, 70, 0.95) 0%, rgba(0, 191, 255, 0.85) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
  border-radius: 20px;
  box-shadow: inset 0 0 60px rgba(0, 191, 255, 0.15);
}

.tt-activity-card:hover .tt-activity-overlay {
  opacity: 1;
}

.tt-activity-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: rgba(255, 255, 255, 0.95);
  color: #0088cc;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 800;
  font-size: 1rem;
  transition: all 0.3s ease;
  transform: translateY(10px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  font-family: var(--font-arabic);
  border: 2px solid rgba(0, 191, 255, 0.5);
}

.tt-activity-card:hover .tt-activity-link {
  transform: translateY(0);
}

.tt-activity-link:hover {
  background: #fff;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 32px rgba(0, 191, 255, 0.45), 0 0 20px rgba(0, 191, 255, 0.25);
  color: #00bfff;
  border-color: rgba(0, 191, 255, 0.8);
}

.tt-activity-link i {
  font-size: 1.1em;
  transition: transform 0.3s ease;
}

.tt-activity-link:hover i {
  transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .tt-activities-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }

  .tt-activity-card-image {
    height: 120px;
  }

  .tt-activity-icon {
    width: 64px;
    height: 64px;
    font-size: 1.75rem;
    margin-top: -28px;
    margin-inline-start: 12px;
  }
}

@media (max-width: 768px) {
  .tt-activities-services {
    padding: clamp(60px, 8vw, 90px) 0;
  }

  .tt-activities-grid {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
  }

  .tt-filter-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .tt-activity-card-image {
    height: 100px;
  }

  .tt-activity-card-inner > .tt-activity-icon {
    margin-top: -24px;
  }

  .tt-activity-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    margin-inline-start: 10px;
  }
}

@media (max-width: 480px) {
  .tt-activities-services {
    padding: clamp(50px, 6vw, 70px) 0;
  }

  .tt-activities-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .tt-activity-card-inner {
    padding: 24px;
  }

  .tt-filter-btn {
    padding: 8px 16px;
    font-size: 0.85rem;
  }
}

/* ============================================
   Old Services Slider (Removed - Replaced with Grid)
   ============================================ */
.tt-services .section_title h1 {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 8px;
  text-align: center;
}

[data-theme="dark"] .tt-services .section_title h1 {
  color: #fff;
}

.tt-services .section_title span {
  display: inline-block;
  color: var(--color-accent);
  font-weight: 800;
  text-align: center;
}

.tt-services-slider-container {
  padding: 28px 0 0;
}

.tt-services-slider-outer {
  position: relative;
  padding: 10px 0 24px;
}

.tt-services-swiper {
  padding: 12px 0 30px;
}

.tt-service-card {
  perspective: 1200px;
}

.tt-service-card-inner {
  position: relative;
  width: 100%;
  min-height: 260px;
  transform-style: preserve-3d;
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.tt-service-card:hover .tt-service-card-inner {
  transform: rotateY(180deg);
}

.tt-service-face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  border-radius: 16px;
  padding: 20px 18px;
  border: 1px solid rgba(30, 58, 95, 0.12);
  background: #ffffff;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.10);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

[data-theme="dark"] .tt-service-face {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 130, 1, 0.18);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.45);
}

.tt-service-front p,
.tt-service-back p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin: 12px 0 0;
}

[data-theme="dark"] .tt-service-front p,
[data-theme="dark"] .tt-service-back p {
  color: var(--text-secondary-dark);
}

.tt-service-back {
  transform: rotateY(180deg);
}

.tt-service-title {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tt-service-title h2 {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.2;
}

[data-theme="dark"] .tt-service-title h2 {
  color: #fff;
}

.tt-service-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255, 130, 1, 0.12);
  color: var(--color-accent);
  flex: 0 0 46px;
}

[data-theme="dark"] .tt-service-icon {
  background: rgba(255, 130, 1, 0.14);
  color: #ff911e;
}

.tt-service-hint {
  margin-top: 12px;
  font-size: 0.9rem;
  font-weight: 800;
  color: rgba(30, 58, 95, 0.8);
}

[data-theme="dark"] .tt-service-hint {
  color: rgba(255, 255, 255, 0.75);
}

.tt-service-btn {
  margin-top: 14px;
}

.tt-service-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 900;
  color: #fff;
  background: var(--gradient-accent);
}

.tt-service-link:hover {
  filter: brightness(1.03);
}

.tt-services-slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0,0,0,0.08);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform var(--transition-fast), background var(--transition-fast);
  z-index: 5;
}

[data-theme="dark"] .tt-services-slider-nav {
  background: rgba(26, 26, 26, 0.92);
  border-color: rgba(255,255,255,0.08);
  color: #fff;
}

.tt-services-slider-nav:hover {
  transform: translateY(-50%) scale(1.06);
  background: rgba(255, 130, 1, 0.12);
}

.tt-services-nav-left {
  left: 10px;
}

.tt-services-nav-right {
  right: 10px;
}

[dir="rtl"] .tt-services-nav-left {
  left: auto;
  right: 10px;
}

[dir="rtl"] .tt-services-nav-right {
  right: auto;
  left: 10px;
}

@media (max-width: 768px) {
  .tt-services-slider-nav {
    display: none;
  }
  .tt-service-card-inner {
    min-height: 240px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tt-service-card-inner {
    transition: none;
  }
  .tt-service-card:hover .tt-service-card-inner {
    transform: none;
  }
}

/* ============================================
   Our Companies Section - Enterprise Panel Design
   ============================================ */
.tt-companies-section {
  position: relative;
  padding: clamp(80px, 10vw, 120px) 0;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, rgba(248, 250, 252, 0.98) 100%);
  overflow: hidden;
}

[data-theme="dark"] .tt-companies-section {
  background: linear-gradient(180deg, var(--bg-secondary-dark) 0%, rgba(10, 25, 42, 0.98) 100%);
}

.tt-companies-tech-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.05;
  background-image: 
    linear-gradient(rgba(0, 191, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 191, 255, 0.1) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

[data-theme="dark"] .tt-companies-tech-bg {
  opacity: 0.06;
  background-image: 
    linear-gradient(rgba(0, 191, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 191, 255, 0.08) 1px, transparent 1px);
}

.tt-companies-grid {
  position: relative;
  z-index: 1;
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
}

/* عرض كامل للقسم */
.tt-companies-fullwidth {
  max-width: none;
  width: 100%;
  margin: 0;
}

.tt-companies-fullwidth .tt-company-panel {
  border-radius: 0;
}

/* لوحة مقسومة: لوغو على طرف يمين + محتوى يسار — حدود وظل أزرق مشع */
.tt-company-panel {
  display: grid;
  grid-template-columns: minmax(320px, 420px) 1fr;
  min-height: 420px;
  border-radius: 0;
  overflow: hidden;
  border: 3px solid #00bfff;
  box-shadow: 0 0 20px rgba(0, 191, 255, 0.6),
              0 0 40px rgba(0, 191, 255, 0.4),
              0 0 60px rgba(0, 191, 255, 0.2);
}

.tt-companies-fullwidth .tt-company-panel {
  border-radius: 0;
}

.tt-company-panel {
  transition: box-shadow 0.35s ease, border-color 0.35s ease;
}

.tt-company-panel:hover {
  box-shadow: 0 0 28px rgba(0, 191, 255, 0.7),
              0 0 50px rgba(0, 191, 255, 0.5),
              0 0 80px rgba(0, 191, 255, 0.25);
  border-color: rgba(0, 191, 255, 0.95);
}

/* لوغو على طرف يمين — خلفية + طبقة + إطار اللوغو */
.tt-company-panel-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  opacity: 0;
  transform: translateX(48px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

[dir="rtl"] .tt-company-panel-visual {
  transform: translateX(-48px);
}

.tt-companies-section.in-view .tt-company-panel-visual {
  opacity: 1;
  transform: translateX(0);
}

.tt-company-panel-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.tt-company-panel-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(0, 191, 255, 0.5) 0%, rgba(20, 50, 80, 0.85) 100%);
  mix-blend-mode: multiply;
}

[data-theme="dark"] .tt-company-panel-overlay {
  background: linear-gradient(135deg, rgba(0, 191, 255, 0.2) 0%, rgba(5, 15, 30, 0.9) 100%);
}

.tt-company-panel-logo {
  position: relative;
  z-index: 2;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid rgba(0, 191, 255, 0.5);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25),
              0 0 24px rgba(0, 191, 255, 0.35);
}

[data-theme="dark"] .tt-company-panel-logo {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 191, 255, 0.35);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
}

.tt-company-panel-visual .tt-company-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* محتوى على طرف يسار */
.tt-company-panel-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  padding: 48px clamp(40px, 5vw, 80px);
  background: #fff;
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.1s, transform 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

[dir="rtl"] .tt-company-panel-content {
  transform: translateX(40px);
}

.tt-companies-section.in-view .tt-company-panel-content {
  opacity: 1;
  transform: translateX(0);
}

[data-theme="dark"] .tt-company-panel-content {
  background: rgba(15, 36, 57, 0.95);
}

/* توزيع المحتوى على العرض الكامل */
.tt-companies-fullwidth .tt-company-panel-content {
  padding: 48px clamp(44px, 6vw, 96px);
  gap: clamp(18px, 2vw, 28px);
}

/* شارة "شركة تابعة" — أزرق مشع */
.tt-company-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, rgba(0, 191, 255, 0.15) 0%, rgba(0, 191, 255, 0.08) 100%);
  color: #0088cc;
  border: 1px solid rgba(0, 191, 255, 0.5);
  box-shadow: 0 0 12px rgba(0, 191, 255, 0.25);
}

[data-theme="dark"] .tt-company-badge {
  background: rgba(0, 191, 255, 0.12);
  color: var(--color-blue-light);
  border-color: rgba(0, 191, 255, 0.35);
}

/* فاصل زخرفي — أزرق مشع */
.tt-company-panel-content .tt-company-divider {
  width: 56px;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, #00bfff 0%, #5bcfff 100%);
  box-shadow: 0 0 10px rgba(0, 191, 255, 0.5);
}

[data-theme="dark"] .tt-company-panel-content .tt-company-divider {
  background: linear-gradient(90deg, var(--color-blue-light) 0%, rgba(0, 191, 255, 0.7) 100%);
}

.tt-company-panel-content .tt-company-name {
  font-size: clamp(1.85rem, 3vw, 2.35rem);
  font-weight: 900;
  margin: 0;
  font-family: var(--font-arabic);
  background: linear-gradient(135deg, #0088cc 0%, #00bfff 50%, #5bcfff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 8px rgba(0, 191, 255, 0.4));
}

[data-theme="dark"] .tt-company-panel-content .tt-company-name {
  background: linear-gradient(135deg, var(--color-blue-light) 0%, #5bcfff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tt-company-panel-content .tt-company-description {
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  line-height: 1.9;
  color: #374151;
  margin: 0;
  max-width: 520px;
}

[data-theme="dark"] .tt-company-panel-content .tt-company-description {
  color: rgba(255, 255, 255, 0.85);
}

/* حاوية قسمي النص: نصين قدّ بعض */
.tt-company-text-blocks {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 2vw, 2rem);
  width: 100%;
}

@media (min-width: 900px) {
  .tt-company-text-blocks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    align-items: start;
  }
}

/* قسم نص واحد */
.tt-company-text-section {
  padding: clamp(1rem, 1.5vw, 1.25rem) 0;
  border-bottom: 1px solid rgba(0, 191, 255, 0.25);
}

.tt-company-text-section:last-of-type {
  border-bottom: none;
}

[data-theme="dark"] .tt-company-text-section {
  border-bottom-color: rgba(0, 191, 255, 0.2);
}

.tt-company-text-section .tt-company-description {
  max-width: none;
}

/* توزيع النص على عرض القسم */
.tt-companies-fullwidth .tt-company-panel-content .tt-company-description {
  max-width: none;
}

@media (min-width: 1200px) {
  .tt-companies-fullwidth .tt-company-panel-content {
    padding-inline: clamp(56px, 7vw, 96px);
  }
}

/* زر CTA — أزرق مشع */
.tt-company-panel-content .tt-company-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 12px;
  background: linear-gradient(135deg, #00a8e8 0%, #00bfff 50%, #5bcfff 100%);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.35s ease;
  border: 2px solid rgba(0, 191, 255, 0.6);
  box-shadow: 0 4px 20px rgba(0, 191, 255, 0.4),
              0 0 20px rgba(0, 191, 255, 0.3);
  width: fit-content;
  margin-top: 8px;
}

.tt-company-panel-content .tt-company-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 191, 255, 0.5),
              0 0 30px rgba(0, 191, 255, 0.4);
  color: #fff;
}

[data-theme="dark"] .tt-company-panel-content .tt-company-btn {
  background: linear-gradient(135deg, var(--color-blue-light) 0%, #2aa5e0 100%);
  box-shadow: 0 4px 20px rgba(0, 191, 255, 0.35);
}

[data-theme="dark"] .tt-company-panel-content .tt-company-btn:hover {
  box-shadow: 0 8px 28px rgba(0, 191, 255, 0.5);
}

/* Responsive - قسم شركاتنا (لوغو يمين) */
@media (max-width: 992px) {
  .tt-company-panel {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .tt-company-panel-visual {
    min-height: 260px;
    order: 1;
    transform: translateY(32px);
  }

  [dir="rtl"] .tt-company-panel-visual {
    transform: translateY(32px);
  }

  .tt-companies-section.in-view .tt-company-panel-visual {
    transform: translateY(0);
  }

  .tt-company-panel-content {
    order: 2;
    padding: 36px 32px;
    align-items: center;
    text-align: center;
    transform: translateY(24px);
  }

  [dir="rtl"] .tt-company-panel-content {
    transform: translateY(24px);
  }

  .tt-companies-section.in-view .tt-company-panel-content {
    transform: translateY(0);
  }

  .tt-company-panel-logo {
    width: 180px;
    height: 180px;
    padding: 20px;
  }

  .tt-company-panel-content .tt-company-divider {
    margin: 0 auto;
  }

  .tt-company-panel-content .tt-company-description {
    max-width: none;
  }
}

@media (max-width: 768px) {
  .tt-companies-section {
    padding: clamp(60px, 8vw, 90px) 0;
  }

  .tt-company-panel-visual {
    min-height: 220px;
  }

  .tt-company-panel-logo {
    width: 160px;
    height: 160px;
    padding: 20px;
  }

  .tt-company-panel-content {
    padding: 28px 24px;
    gap: 24px;
  }

  .tt-company-panel-content .tt-company-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .tt-companies-section {
    padding: clamp(50px, 6vw, 70px) 0;
  }

  .tt-company-panel-logo {
    width: 140px;
    height: 140px;
    padding: 18px;
  }

  .tt-company-panel-content {
    padding: 24px 20px;
  }
}

/* ============================================
   Company Detail Page Styles
   ============================================ */
/* Company Logo Section - Full Width */
.tt-company-logo-section {
  position: relative;
  width: 100vw;
  height: 300px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tt-company-logo-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  filter: brightness(0.7) contrast(1.1);
  z-index: 0;
}

/* خلفية قسم شعار هاواي: he2.jpg لجميع الشاشات (موبايل وأكبر) */
.tt-company-logo-section .tt-company-logo-bg {
  background-image: url('../images/he2.jpg');
}

[data-theme="dark"] .tt-company-logo-bg {
  filter: brightness(0.6) contrast(1.15);
}

[data-theme="light"] .tt-company-logo-bg,
:root:not([data-theme="dark"]) .tt-company-logo-bg {
  filter: brightness(0.85) contrast(1.05);
}

.tt-company-logo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 22, 40, 0.7) 0%,
    rgba(0, 100, 150, 0.35) 50%,
    rgba(0, 0, 0, 0.45) 100%
  );
  z-index: 1;
  pointer-events: none;
  box-shadow: inset 0 0 100px 50px rgba(255, 140, 0, 0.035);
}

[data-theme="dark"] .tt-company-logo-overlay {
  background: linear-gradient(
    135deg,
    rgba(10, 22, 40, 0.75) 0%,
    rgba(0, 191, 255, 0.15) 50%,
    rgba(0, 0, 0, 0.5) 100%
  );
  box-shadow: inset 0 0 100px 50px rgba(255, 140, 0, 0.04);
}

[data-theme="light"] .tt-company-logo-overlay,
:root:not([data-theme="dark"]) .tt-company-logo-overlay {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.7) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0.5) 100%
  );
}

@media (max-width: 768px) {
  .tt-company-logo-section {
    height: 250px;
  }
}

@media (max-width: 480px) {
  .tt-company-logo-section {
    height: 200px;
  }
}

.tt-company-hero {
  position: relative;
  padding: clamp(60px, 8vh, 100px) 0 clamp(44px, 6vh, 72px);
  background: linear-gradient(180deg, #0a1628 0%, #0d2137 50%, #0f2847 100%);
  color: #fff;
  overflow: hidden;
  text-align: center;
  border-bottom: 1px solid rgba(0, 191, 255, 0.15);
  box-shadow: inset 0 -40px 80px -30px rgba(255, 140, 0, 0.03);
}

[data-theme="light"] .tt-company-hero,
:root:not([data-theme="dark"]) .tt-company-hero {
  background: linear-gradient(180deg, var(--bg-primary) 0%, rgba(0, 191, 255, 0.06) 45%, rgba(255, 160, 50, 0.025) 55%, var(--bg-primary) 100%);
  color: var(--text-primary);
  box-shadow: inset 0 -30px 60px -25px rgba(255, 140, 0, 0.025);
}

.tt-company-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.06;
  background-image: 
    linear-gradient(rgba(0, 191, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 191, 255, 0.12) 1px, transparent 1px);
  background-size: 40px 40px;
}

.tt-company-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.tt-company-hero-logo {
  width: 180px;
  height: 180px;
  margin: 0 auto 30px;
  padding: 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(0, 191, 255, 0.4);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 40px rgba(0, 191, 255, 0.25), 0 6px 20px rgba(255, 150, 50, 0.04);
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

[data-theme="light"] .tt-company-hero-logo,
:root:not([data-theme="dark"]) .tt-company-hero-logo {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(0, 191, 255, 0.35);
}

.tt-company-hero-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.tt-company-hero-title {
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 900;
  color: #00bfff;
  margin: 0 0 20px;
  text-shadow: 0 0 30px rgba(0, 191, 255, 0.5), 0 0 60px rgba(255, 150, 50, 0.04);
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

[data-theme="light"] .tt-company-hero-title,
:root:not([data-theme="dark"]) .tt-company-hero-title {
  color: #00bfff;
  text-shadow: 0 4px 16px rgba(0, 191, 255, 0.35), 0 2px 24px rgba(255, 150, 50, 0.04);
}

.tt-company-hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

[data-theme="light"] .tt-company-hero-subtitle,
:root:not([data-theme="dark"]) .tt-company-hero-subtitle {
  color: var(--text-secondary);
}

.tt-company-details {
  padding: clamp(60px, 8vw, 100px) clamp(20px, 4vw, 40px);
  background: linear-gradient(180deg, var(--bg-secondary) 0%, rgba(0, 191, 255, 0.03) 40%, rgba(255, 160, 50, 0.018) 60%, var(--bg-secondary) 100%);
}

[data-theme="dark"] .tt-company-details {
  background: linear-gradient(180deg, var(--bg-secondary-dark) 0%, rgba(0, 191, 255, 0.04) 40%, rgba(255, 150, 50, 0.022) 60%, var(--bg-secondary-dark) 100%);
}

.tt-company-details-wrapper {
  max-width: 920px;
  margin: 0 auto;
}

.tt-company-details-content {
  display: flex;
  flex-direction: column;
  gap: 44px;
}

.tt-company-details-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: linear-gradient(135deg, rgba(0, 191, 255, 0.12) 0%, rgba(255, 165, 50, 0.04) 100%);
  border: 1px solid rgba(0, 191, 255, 0.3);
  border-radius: 50px;
  color: #00bfff;
  font-weight: 700;
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  width: fit-content;
  backdrop-filter: blur(10px);
  animation: fadeInUp 0.8s ease-out 0.1s both;
}

[data-theme="dark"] .tt-company-details-badge {
  background: linear-gradient(135deg, rgba(0, 191, 255, 0.15) 0%, rgba(255, 150, 50, 0.05) 100%);
  border-color: rgba(0, 191, 255, 0.35);
}

.tt-company-details-title {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--text-primary);
  margin: 0 0 8px;
  font-family: var(--font-arabic);
  animation: fadeInUp 0.8s ease-out 0.2s both;
  line-height: 1.25;
}

[data-theme="dark"] .tt-company-details-title {
  color: rgba(255, 255, 255, 0.95);
}

.tt-company-details-text {
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.tt-company-details-text p {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.9;
  color: var(--text-secondary);
  margin: 0;
}

[data-theme="dark"] .tt-company-details-text p {
  color: rgba(255, 255, 255, 0.85);
}

/* Services Grid */
.tt-company-services {
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.tt-company-services-title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: #00bfff;
  margin: 0 0 28px;
  font-family: var(--font-arabic);
  text-shadow: 0 0 20px rgba(0, 191, 255, 0.25);
}

[data-theme="dark"] .tt-company-services-title {
  color: #00bfff;
}

.tt-company-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.tt-company-service-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(0, 191, 255, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  cursor: pointer;
}

[data-theme="dark"] .tt-company-service-item {
  background: rgba(15, 36, 57, 0.5);
  border-color: rgba(0, 191, 255, 0.25);
}

.tt-company-service-item:hover {
  transform: translateX(5px);
  border-color: rgba(0, 191, 255, 0.45);
  background: rgba(0, 191, 255, 0.08);
  box-shadow: 0 8px 24px rgba(0, 191, 255, 0.2), 0 2px 12px rgba(255, 150, 50, 0.03);
}

[data-theme="dark"] .tt-company-service-item:hover {
  background: rgba(0, 191, 255, 0.12);
}

.tt-company-service-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, #00bfff 0%, #00d4ff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.25rem;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(0, 191, 255, 0.35);
  transition: all 0.3s ease;
}

.tt-company-service-item:hover .tt-company-service-icon {
  transform: rotate(5deg) scale(1.08);
  box-shadow: 0 8px 24px rgba(0, 191, 255, 0.45);
}

.tt-company-service-item span {
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  font-weight: 700;
  color: var(--text-primary);
  font-family: var(--font-arabic);
}

[data-theme="dark"] .tt-company-service-item span {
  color: rgba(255, 255, 255, 0.9);
}

/* Highlights */
.tt-company-highlights {
  animation: fadeInUp 0.8s ease-out 0.5s both;
}

.tt-company-highlights-title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: #00bfff;
  margin: 0 0 28px;
  font-family: var(--font-arabic);
  text-shadow: 0 0 20px rgba(0, 191, 255, 0.25);
}

[data-theme="dark"] .tt-company-highlights-title {
  color: #00bfff;
}

.tt-company-highlights-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tt-company-highlight-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(0, 191, 255, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

[data-theme="dark"] .tt-company-highlight-item {
  background: rgba(15, 36, 57, 0.5);
  border-color: rgba(0, 191, 255, 0.25);
}

.tt-company-highlight-item:hover {
  transform: translateX(5px);
  border-color: rgba(0, 191, 255, 0.45);
  background: rgba(0, 191, 255, 0.06);
  box-shadow: 0 8px 24px rgba(0, 191, 255, 0.18), 0 2px 12px rgba(255, 150, 50, 0.03);
}

[data-theme="dark"] .tt-company-highlight-item:hover {
  background: rgba(0, 191, 255, 0.1);
}

.tt-company-highlight-item i {
  font-size: 1.3rem;
  color: #00bfff;
  flex-shrink: 0;
}

.tt-company-highlight-item span {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  font-weight: 700;
  color: var(--text-primary);
  font-family: var(--font-arabic);
  line-height: 1.6;
}

[data-theme="dark"] .tt-company-highlight-item span {
  color: rgba(255, 255, 255, 0.9);
}

/* CTA Button - أزرق مشع */
.tt-company-cta {
  margin-top: 16px;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.tt-company-cta .tt-btn-primary {
  background: linear-gradient(135deg, #00bfff 0%, #00d4ff 88%, rgba(255, 170, 60, 0.12) 100%);
  color: #fff;
  border: 2px solid rgba(0, 191, 255, 0.5);
  box-shadow: 0 8px 28px rgba(0, 191, 255, 0.35), 0 2px 12px rgba(255, 150, 50, 0.04);
}

.tt-company-cta .tt-btn-primary:hover {
  background: linear-gradient(135deg, #00d4ff 0%, #00bfff 88%, rgba(255, 170, 60, 0.1) 100%);
  border-color: #00bfff;
  box-shadow: 0 12px 36px rgba(0, 191, 255, 0.45), 0 4px 16px rgba(255, 150, 50, 0.05);
}

/* Responsive for Company Detail Page */
@media (max-width: 768px) {
  .tt-company-hero {
    padding: clamp(100px, 12vh, 140px) 0 clamp(50px, 6vh, 80px);
  }

  .tt-company-hero-logo {
    width: 150px;
    height: 150px;
  }

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

@media (max-width: 480px) {
  .tt-company-hero-logo {
    width: 120px;
    height: 120px;
  }

  .tt-company-details-content {
    gap: 30px;
  }
}
  color: var(--text-primary-dark);
}

.tt-subs-desc {
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 14px;
}

[data-theme="dark"] .tt-subs-desc {
  color: var(--text-secondary-dark);
}

.tt-subs-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 992px) {
  .tt-subs-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .tt-subs-actions {
    justify-content: center;
  }
}

.tt-as-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.tt-as-heading {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 14px;
}

[data-theme="dark"] .tt-as-heading {
  color: var(--text-primary-dark);
}

.tt-as-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.tt-as-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 16px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid rgba(30, 58, 95, 0.12);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

[data-theme="dark"] .tt-as-card {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 130, 1, 0.18);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
}

.tt-as-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 130, 1, 0.45);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
}

.tt-as-icon {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 130, 1, 0.12);
  color: var(--color-accent);
}

[data-theme="dark"] .tt-as-icon {
  background: rgba(255, 130, 1, 0.14);
  color: #ff911e;
}

.tt-as-card-title {
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--text-primary);
  margin-bottom: 6px;
}

[data-theme="dark"] .tt-as-card-title {
  color: var(--text-primary-dark);
}

.tt-as-card-text {
  font-size: 0.98rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

[data-theme="dark"] .tt-as-card-text {
  color: var(--text-secondary-dark);
}

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

.gallery-swiper {
    padding: 2rem 0 4rem;
    position: relative;
    width: 100%;
}

.gallery-swiper .swiper-wrapper {
    align-items: center;
    display: flex;
    transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-swiper .swiper-slide {
    width: 33.333% !important;
    height: auto;
    transition: all 0.6s ease;
    opacity: 0.6;
    flex-shrink: 0;
    filter: brightness(0.9);
}

.gallery-swiper .swiper-slide-active {
    opacity: 1;
    z-index: 10;
    filter: brightness(1);
    transform: scale(1.05);
}

.gallery-swiper .swiper-slide-prev,
.gallery-swiper .swiper-slide-next {
    opacity: 0.75;
    filter: brightness(0.95);
}

.gallery-swiper .swiper-slide:hover {
    filter: brightness(1);
    opacity: 0.9;
}

.gallery-card {
    position: relative;
    background: var(--bg-primary);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25);
    transition: all 0.4s ease;
    border: 4px solid var(--border-color);
    width: 100%;
    cursor: pointer;
}

.gallery-swiper .swiper-slide-active .gallery-card {
    border-color: var(--color-primary);
    box-shadow: 0 40px 100px rgba(255, 130, 1, 0.45);
    border-width: 5px;
}

.gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 35px 90px rgba(255, 130, 1, 0.5);
    border-color: var(--color-primary);
}

.gallery-image-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 75%;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px 20px 0 0;
    transition: all 0.4s ease;
}

.gallery-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.gallery-card:hover .gallery-image {
    transform: scale(1.1);
    filter: brightness(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 130, 1, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 2;
    pointer-events: auto;
    box-shadow: 0 8px 25px rgba(255, 130, 1, 0.4);
    opacity: 0;
    visibility: hidden;
}

.gallery-overlay i {
    font-size: 2rem;
    color: white;
    transition: transform 0.3s ease;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
    visibility: visible;
    background: rgba(255, 130, 1, 1);
    transform: translate(-50%, -50%) scale(1.15);
    box-shadow: 0 12px 35px rgba(255, 130, 1, 0.6);
}

.gallery-swiper .swiper-pagination {
    bottom: 0 !important;
    position: relative;
    margin-top: 2rem;
}

.gallery-swiper .swiper-pagination-bullet {
    background: var(--color-primary);
    opacity: 0.3;
    width: 12px;
    height: 12px;
    transition: var(--transition-normal);
}

.gallery-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    width: 30px;
    border-radius: 6px;
}

.gallery-swiper .swiper-button-next,
.gallery-swiper .swiper-button-prev {
    background: var(--bg-primary);
    border: 2px solid var(--border-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: var(--color-primary);
    transition: all var(--transition-normal);
}

.gallery-swiper .swiper-button-next::after,
.gallery-swiper .swiper-button-prev::after {
    font-size: 1.5rem;
    font-weight: bold;
}

.gallery-swiper .swiper-button-next:hover,
.gallery-swiper .swiper-button-prev:hover {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
    transform: scale(1.1);
}

/* ============================================
   Videos Section (Company Videos)
   ============================================ */
.videos-section {
    padding: var(--spacing-xxl) 0;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.videos-swiper {
    padding: 2rem 0 4rem;
    position: relative;
    width: 100%;
}

.videos-swiper .swiper-wrapper {
    align-items: center;
    display: flex;
    transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.videos-swiper .swiper-slide {
    width: 33.333% !important;
    height: auto;
    transition: all 0.6s ease;
    opacity: 0.6;
    flex-shrink: 0;
    filter: brightness(0.9);
}

.videos-swiper .swiper-slide-active {
    opacity: 1;
    z-index: 10;
    filter: brightness(1);
    transform: scale(1.05);
}

.videos-swiper .swiper-slide-prev,
.videos-swiper .swiper-slide-next {
    opacity: 0.75;
    filter: brightness(0.95);
}

.video-card {
    position: relative;
    background: var(--bg-primary);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25);
    transition: all 0.4s ease;
    border: 4px solid var(--border-color);
    width: 100%;
    cursor: pointer;
}

.videos-swiper .swiper-slide-active .video-card {
    border-color: var(--color-primary);
    box-shadow: 0 40px 100px rgba(255, 130, 1, 0.45);
    border-width: 5px;
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 35px 90px rgba(255, 130, 1, 0.5);
    border-color: var(--color-primary);
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 75%;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px 20px 0 0;
    transition: all 0.4s ease;
}

.video-element {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.video-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 130, 1, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 2;
    pointer-events: auto;
    box-shadow: 0 8px 25px rgba(255, 130, 1, 0.4);
    opacity: 0;
    visibility: hidden;
}

.video-overlay i {
    font-size: 2rem;
    color: white;
    transition: transform 0.3s ease;
}

.video-card:hover .video-overlay {
    opacity: 1;
    visibility: visible;
    background: rgba(255, 130, 1, 1);
    transform: translate(-50%, -50%) scale(1.15);
    box-shadow: 0 12px 35px rgba(255, 130, 1, 0.6);
}

.videos-swiper .swiper-pagination {
    bottom: 0 !important;
    position: relative;
    margin-top: 2rem;
}

.videos-swiper .swiper-pagination-bullet {
    background: var(--color-primary);
    opacity: 0.3;
    width: 12px;
    height: 12px;
    transition: var(--transition-normal);
}

.videos-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    width: 30px;
    border-radius: 6px;
}

.videos-swiper .swiper-button-next,
.videos-swiper .swiper-button-prev {
    background: var(--bg-primary);
    border: 2px solid var(--border-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: var(--color-primary);
    transition: all var(--transition-normal);
}

.videos-swiper .swiper-button-next::after,
.videos-swiper .swiper-button-prev::after {
    font-size: 1.5rem;
    font-weight: bold;
}

.videos-swiper .swiper-button-next:hover,
.videos-swiper .swiper-button-prev:hover {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
    transform: scale(1.1);
}


/* ============================================
   Features Section
   ============================================ */
.features-section {
    padding: var(--spacing-xxl) 0;
    background: var(--bg-primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--bg-secondary);
    padding: var(--spacing-xl);
    border-radius: 20px;
    text-align: center;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

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

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary);
    background: var(--bg-primary);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--spacing-md);
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    transition: all var(--transition-normal);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--gradient-accent);
    color: var(--color-primary);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
}

.feature-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* ============================================
   Products Section
   ============================================ */
/* ============================================
   Products Page Hero
   ============================================ */
.products-page-hero {
    padding: var(--spacing-xxl) 0 var(--spacing-xl);
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 80px; /* Account for fixed header */
}

.products-page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="50" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="30" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

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

.products-hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    font-family: var(--font-arabic);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.products-hero-subtitle {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
    line-height: 1.6;
    font-family: var(--font-arabic);
}

[data-theme="dark"] .products-page-hero {
    background: linear-gradient(135deg, #1a3d2e 0%, #2d5a47 100%);
}

/* ============================================
   Products Page Section
   ============================================ */
.products-page-section {
    padding: var(--spacing-xxl) 0;
    background: var(--bg-primary);
}

[data-theme="dark"] .products-page-section {
    background: var(--bg-primary-dark);
}

/* RESPONSIVE - Hero Section */
@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        padding: 60px 30px;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
        margin: 0 auto;
    }
    
    .hero-content h1.hero-title {
        font-size: clamp(2.5rem, 8vw, 4rem);
    }
    
    .hero-content p.hero-description {
        max-width: 100%;
        font-size: clamp(1rem, 3vw, 1.2rem);
    }
    
    .hero-visual {
        position: relative;
        right: 0;
        left: 0;
        margin-top: 40px;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    [dir="rtl"] .hero-visual {
        left: 0;
        right: 0;
    }
    
    .hero-visual img {
        width: 140px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
    
    /* Filters Responsive */
    .filters {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-select {
        width: 100%;
        min-width: auto;
    }
    
    /* Products Grid Responsive */
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Mission Responsive */
    .mission-section {
        padding: 60px 30px;
    }
}

/* Responsive - Products Page Hero */
@media (max-width: 768px) {
    .products-page-hero {
        padding: var(--spacing-xl) 0 var(--spacing-lg);
        margin-top: 78px;
    }
    
    .products-hero-title {
        font-size: 2rem;
    }
    
    .products-hero-subtitle {
        font-size: 1rem;
        padding: 0 var(--spacing-md);
    }
}

@media (max-width: 480px) {
    .products-page-hero {
        padding: var(--spacing-lg) 0;
    }
    
    .products-hero-title {
        font-size: 1.75rem;
    }
}

.products-section {
    padding: var(--spacing-xxl) 0;
    background: var(--bg-primary);
}

/* Modern Filter Design - Dropdown Style */
.products-filters-modern {
    margin-bottom: var(--spacing-xxl);
    display: flex;
    justify-content: center;
}

.filter-dropdown-wrapper {
    display: flex;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 800px;
}

.filter-dropdown {
    position: relative;
    flex: 1;
    min-width: 250px;
    max-width: 350px;
}

.filter-dropdown-btn {
    width: 100%;
    padding: var(--spacing-md) var(--spacing-lg);
    background: var(--bg-primary);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-sm);
    transition: all var(--transition-normal);
    font-family: var(--font-arabic);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    box-shadow: var(--shadow-sm);
}

.filter-dropdown-btn:hover {
    border-color: var(--color-primary);
    background: rgba(255, 130, 1, 0.05);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.filter-dropdown-btn.active {
    border-color: var(--color-primary);
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 130, 1, 0.3);
}

.filter-dropdown-btn.active .filter-arrow {
    transform: rotate(180deg);
}

.filter-dropdown-btn i:first-child {
    font-size: 1.1rem;
    color: var(--color-primary);
}

.filter-dropdown-btn.active i:first-child {
    color: white;
}

.filter-selected-text {
    flex: 1;
    text-align: right;
    font-family: var(--font-arabic);
}

[dir="ltr"] .filter-selected-text {
    text-align: left;
}

.filter-arrow {
    font-size: 0.85rem;
    transition: transform var(--transition-normal);
    color: var(--text-secondary);
}

.filter-dropdown-btn.active .filter-arrow {
    color: white;
}

.filter-dropdown-menu {
    position: absolute;
    top: calc(100% + var(--spacing-xs));
    left: 0;
    right: 0;
    background: var(--bg-primary);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-normal);
    max-height: 0;
    overflow: hidden;
}

.filter-dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    max-height: 400px;
    overflow-y: auto;
}

.filter-dropdown-item {
    width: 100%;
    padding: var(--spacing-md) var(--spacing-lg);
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    transition: all var(--transition-normal);
    font-family: var(--font-arabic);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
    text-align: right;
}

[dir="ltr"] .filter-dropdown-item {
    text-align: left;
}

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

.filter-dropdown-item:hover {
    background: rgba(255, 130, 1, 0.08);
    color: var(--color-primary);
    padding-right: var(--spacing-xl);
}

[dir="ltr"] .filter-dropdown-item:hover {
    padding-right: var(--spacing-lg);
    padding-left: var(--spacing-xl);
}

.filter-dropdown-item.active {
    background: var(--gradient-primary);
    color: white;
    font-weight: 700;
}

.filter-dropdown-item.active i {
    color: white;
}

.filter-dropdown-item i {
    font-size: 1rem;
    color: var(--color-primary);
    width: 20px;
    text-align: center;
}

.filter-dropdown-item.active i {
    color: white;
}

.filter-dropdown-item span {
    flex: 1;
}

/* Load More Button */
.products-load-more-wrapper {
    display: flex;
    justify-content: center;
    margin-top: var(--spacing-xxl);
    padding-top: var(--spacing-xl);
}

.products-load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md) var(--spacing-xxl);
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-normal);
    font-family: var(--font-arabic);
    box-shadow: 0 4px 15px rgba(255, 130, 1, 0.3);
    position: relative;
    overflow: hidden;
}

.products-load-more-btn::before {
    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;
}

.products-load-more-btn:hover::before {
    width: 300px;
    height: 300px;
}

.products-load-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 130, 1, 0.4);
    background: linear-gradient(135deg, #ff911e 0%, #ff8201 100%);
}

.products-load-more-btn:active {
    transform: translateY(-1px);
}

.load-more-text {
    position: relative;
    z-index: 1;
}

.load-more-icon {
    position: relative;
    z-index: 1;
    transition: transform var(--transition-normal);
}

.products-load-more-btn.show-less .load-more-icon {
    transform: rotate(180deg);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.product-card {
    background: var(--bg-primary);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    display: flex;
    flex-direction: column;
    opacity: 1;
    transform: translateY(0);
    will-change: transform, opacity;
}

/* Subtle glow layer (for nicer hover like ZMRD cards) */
.product-card::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(800px 260px at 50% 0%, rgba(0, 191, 255, 0.10), transparent 55%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card.hidden {
    display: none !important;
}

.product-card.hidden-by-load-more {
    display: none !important;
}

.product-card.show-more {
    display: flex !important;
    animation: fadeInUp 0.5s ease-out;
}

.product-card:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: 0 22px 55px rgba(0, 191, 255, 0.25);
    border-color: rgba(0, 191, 255, 0.55);
}

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

/* Dark Theme - Product Cards */
[data-theme="dark"] .product-card {
    background: var(--bg-secondary-dark);
    border: 1px solid rgba(159, 197, 210, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .product-card:hover {
    background: var(--bg-tertiary-dark);
    border-color: rgba(159, 197, 210, 0.25);
    box-shadow: 0 8px 30px rgba(159, 197, 210, 0.2);
    transform: translateY(-8px);
}

[data-theme="dark"] .product-info {
    background: transparent;
}

[data-theme="dark"] .product-label {
    color: var(--color-accent);
}

[data-theme="dark"] .product-value {
    color: #f5f0e8;
}

[data-theme="dark"] .product-name {
    color: #f5f0e8;
}

[data-theme="dark"] .product-description {
    color: #d4c5a8;
}

[data-theme="dark"] .product-category {
    color: var(--color-accent);
    font-weight: 400;
}

[data-theme="dark"] .product-info-item {
    border-bottom-color: rgba(159, 197, 210, 0.2);
}

[data-theme="dark"] .product-image-wrapper {
    background: var(--bg-primary-dark);
}

[data-theme="dark"] .product-badge {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-light) 100%);
    box-shadow: 0 4px 15px rgba(159, 197, 210, 0.4);
}

.product-image-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: var(--bg-secondary);
    border-radius: 15px 15px 0 0;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.product-card:hover .product-image {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: var(--spacing-sm, 12px);
    right: var(--spacing-sm, 12px);
    padding: var(--spacing-xs, 6px) var(--spacing-md, 16px);
    background: linear-gradient(135deg, #00bfff 0%, #00d4ff 100%);
    color: white;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 191, 255, 0.4);
    font-family: 'Cairo', var(--font-arabic);
    z-index: 3;
}

[dir="ltr"] .product-badge {
    right: auto;
    left: var(--spacing-sm);
}

/* Product Overlay — أزرق مشع */
.product-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 45, 70, 0.9) 0%, rgba(0, 191, 255, 0.75) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 3;
    border-radius: 0;
}

[data-theme="dark"] .product-overlay {
    background: linear-gradient(135deg, rgba(0, 191, 255, 0.85) 0%, rgba(30, 58, 95, 0.75) 100%);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.95);
    color: #00bfff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    transform: translateY(10px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    font-family: var(--font-arabic);
}

.product-card:hover .product-view-btn {
    transform: translateY(0);
}

.product-view-btn:hover {
    background: #fff;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 32px rgba(0, 191, 255, 0.4);
    color: #00bfff;
}

.product-view-btn i {
    font-size: 1.1em;
    transition: transform 0.3s ease;
}

.product-view-btn:hover i {
    transform: scale(1.2);
}

.product-info {
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    flex: 1;
}

.product-info .product-name {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text-primary);
    margin: 0;
    font-family: var(--font-arabic);
    line-height: 1.55;
}

.product-category-tag {
    display: inline-block;
    padding: 6px 14px;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.1) 0%, rgba(255, 130, 1, 0.1) 100%);
    color: var(--color-primary);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    font-family: var(--font-arabic);
    margin-bottom: var(--spacing-sm);
    border: 1px solid rgba(255, 130, 1, 0.2);
    width: fit-content;
}

.product-description {
    font-size: clamp(0.9rem, 1.2vw, 1rem);
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0 0 var(--spacing-md);
    font-weight: 400;
    font-family: var(--font-arabic);
    flex: 1;
}

.product-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    font-family: var(--font-arabic);
    width: fit-content;
    margin-top: auto;
}

.product-link-btn:hover {
    background: var(--gradient-primary);
    color: #fff;
    border-color: transparent;
    transform: translateX(-5px);
    box-shadow: 0 8px 20px rgba(255, 130, 1, 0.3);
}

.product-link-btn i {
    transition: transform 0.3s ease;
}

.product-link-btn:hover i {
    transform: translateX(-3px);
}

[dir="ltr"] .product-link-btn:hover {
    transform: translateX(5px);
}

[dir="ltr"] .product-link-btn:hover i {
    transform: translateX(3px);
}

/* ============================================
   Brands Section
   ============================================ */
.brands-section {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, rgba(255, 130, 1, 0.03) 100%);
    position: relative;
    overflow: hidden;
}

.brands-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 130, 1, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(255, 130, 1, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.section-header-brands {
    text-align: center;
    margin-bottom: var(--spacing-xxl);
    position: relative;
    z-index: 1;
}

.section-title-brands {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: var(--spacing-md);
    font-family: var(--font-arabic);
    position: relative;
    display: inline-block;
}

.section-title-brands::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
    border-radius: 2px;
}

.section-subtitle-brands {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-top: var(--spacing-lg);
    font-family: var(--font-arabic);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-xl);
    position: relative;
    z-index: 1;
}

.brand-card {
    position: relative;
    height: 100%;
    perspective: 1000px;
}

.brand-card-inner {
    position: relative;
    height: 100%;
    background: var(--bg-primary);
    border-radius: 20px;
    padding: var(--spacing-xl);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-normal);
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.brand-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-normal);
}

.brand-card:hover .brand-card-inner {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(255, 130, 1, 0.15);
    border-color: var(--color-primary);
}

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

.brand-logo-wrapper {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    position: relative;
}

.brand-logo-circle {
    width: 100px;
    height: 100px;
    margin: 0 auto var(--spacing-md);
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all var(--transition-normal);
    box-shadow: 0 8px 20px rgba(255, 130, 1, 0.2);
}

.brand-logo-circle::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: -1;
}

.brand-card:hover .brand-logo-circle {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(255, 130, 1, 0.3);
}

.brand-card:hover .brand-logo-circle::before {
    opacity: 0.3;
}

.brand-icon {
    font-size: 2.5rem;
    color: white;
    transition: all var(--transition-normal);
}

.brand-card:hover .brand-icon {
    transform: scale(1.2);
}

.brand-badge {
    display: inline-block;
    padding: var(--spacing-xs) var(--spacing-md);
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    color: white;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    font-family: var(--font-arabic);
    box-shadow: 0 4px 10px rgba(255, 130, 1, 0.2);
}

.brand-content {
    flex: 1;
    text-align: center;
}

.brand-name {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: var(--spacing-xs);
    font-family: var(--font-arabic);
}

.brand-tagline {
    font-size: 1rem;
    color: var(--color-accent);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    font-style: italic;
    font-family: var(--font-arabic);
}

.brand-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
    text-align: right;
    font-family: var(--font-arabic);
}

.brand-features {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
    text-align: right;
}

.brand-feature-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 0.9rem;
    color: var(--text-primary);
    font-family: var(--font-arabic);
}

.brand-feature-item i {
    color: var(--color-primary);
    font-size: 1rem;
    flex-shrink: 0;
}

.brand-footer {
    margin-top: auto;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 130, 1, 0.1);
}

.brand-link {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--color-primary);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all var(--transition-normal);
    font-family: var(--font-arabic);
    position: relative;
}

.brand-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width var(--transition-normal);
}

.brand-link:hover {
    color: var(--color-accent);
    gap: var(--spacing-md);
}

.brand-link:hover::after {
    width: 100%;
}

.brand-link i {
    transition: transform var(--transition-normal);
}

.brand-link:hover i {
    transform: translateX(-5px);
}

[dir="ltr"] .brand-link:hover i {
    transform: translateX(5px);
}

/* Dark Theme - Brands Section */
[data-theme="dark"] .brands-section {
    background: linear-gradient(180deg, var(--bg-primary-dark) 0%, rgba(255, 130, 1, 0.1) 100%);
}

[data-theme="dark"] .brand-card-inner {
    background: var(--bg-secondary-dark);
    border-color: rgba(159, 197, 210, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .brand-card:hover .brand-card-inner {
    border-color: rgba(159, 197, 210, 0.3);
    box-shadow: 0 12px 40px rgba(159, 197, 210, 0.2);
}

[data-theme="dark"] .brand-name {
    color: #f5f0e8;
}

[data-theme="dark"] .brand-description {
    color: #d4c5a8;
}

[data-theme="dark"] .brand-feature-item {
    color: #e8d9b0;
}

[data-theme="dark"] .brand-link {
    color: var(--color-accent);
}

[data-theme="dark"] .brand-link:hover {
    color: var(--color-accent-light);
}

[data-theme="dark"] .brand-footer {
    border-top-color: rgba(159, 197, 210, 0.1);
}

/* Responsive - Gallery & Videos Sections */
@media (max-width: 768px) {
    .gallery-swiper {
        padding: 2rem 0 4rem;
    }
    
    .gallery-swiper .swiper-slide {
        width: 100% !important;
        opacity: 1 !important;
        transform: scale(1) !important;
    }
    
    .gallery-swiper .swiper-slide-prev,
    .gallery-swiper .swiper-slide-next {
        display: none !important;
    }
    
    .gallery-swiper .swiper-pagination {
        display: flex !important;
        justify-content: center;
        margin-top: 1.5rem;
    }
    
    .gallery-swiper .swiper-button-next,
    .gallery-swiper .swiper-button-prev {
        width: 45px;
        height: 45px;
    }
    
    .gallery-swiper .swiper-button-next::after,
    .gallery-swiper .swiper-button-prev::after {
        font-size: 1.2rem;
    }
    
    .videos-swiper {
        padding: 2rem 0 4rem;
    }
    
    .videos-swiper .swiper-slide {
        width: 100% !important;
        opacity: 1 !important;
        transform: scale(1) !important;
    }
    
    .videos-swiper .swiper-slide-prev,
    .videos-swiper .swiper-slide-next {
        display: none !important;
    }
    
    .videos-swiper .swiper-pagination {
        display: flex !important;
        justify-content: center;
        margin-top: 1.5rem;
    }
    
    .videos-swiper .swiper-button-next,
    .videos-swiper .swiper-button-prev {
        width: 45px;
        height: 45px;
    }
    
    .videos-swiper .swiper-button-next::after,
    .videos-swiper .swiper-button-prev::after {
        font-size: 1.2rem;
    }
}

/* عرض صور الشركة على الموبايل كشبكة 2×2 (كتلة واحدة) */
@media (max-width: 768px) {
    .gallery-swiper.gallery-static-grid .swiper-wrapper {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
    }

    .gallery-swiper.gallery-static-grid .swiper-slide {
        width: 100% !important;
        opacity: 1 !important;
        transform: none !important;
    }

    .gallery-swiper.gallery-static-grid .swiper-pagination,
    .gallery-swiper.gallery-static-grid .swiper-button-next,
    .gallery-swiper.gallery-static-grid .swiper-button-prev {
        display: none !important;
    }
}

/* Responsive - Brands Section */
@media (max-width: 768px) {
    .section-title-brands {
        font-size: 2rem;
    }
    
    .section-subtitle-brands {
        font-size: 1rem;
    }
    
    .brands-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .brand-card-inner {
        padding: var(--spacing-lg);
    }
    
    .brand-logo-circle {
        width: 80px;
        height: 80px;
    }
    
    .brand-icon {
        font-size: 2rem;
    }
    
    .brand-name {
        font-size: 1.5rem;
    }
    
    .brand-description {
        font-size: 0.9rem;
        text-align: center;
    }
    
    .brand-features {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .gallery-section,
    .videos-section {
        padding: var(--spacing-xl) 0;
    }
    
    .gallery-overlay,
    .video-overlay {
        width: 60px;
        height: 60px;
    }
    
    .gallery-overlay i,
    .video-overlay i {
        font-size: 1.5rem;
    }
    
    .gallery-swiper .swiper-button-next,
    .gallery-swiper .swiper-button-prev,
    .videos-swiper .swiper-button-next,
    .videos-swiper .swiper-button-prev {
        width: 40px;
        height: 40px;
    }
    
    .gallery-swiper .swiper-button-next::after,
    .gallery-swiper .swiper-button-prev::after,
    .videos-swiper .swiper-button-next::after,
    .videos-swiper .swiper-button-prev::after {
        font-size: 1rem;
    }
    
    .brands-section {
        padding: var(--spacing-xl) 0;
    }
    
    .section-header-brands {
        margin-bottom: var(--spacing-xl);
    }
    
    .brand-card-inner {
        padding: var(--spacing-md);
    }
}

/* ============================================
   Activities Section
   ============================================ */
.activities-section {
    padding: var(--spacing-xxl) 0;
    background: var(--bg-secondary);
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    max-width: 1400px;
    margin: 0 auto;
}

.activity-card {
    background: var(--bg-primary);
    padding: var(--spacing-lg);
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all var(--transition-normal);
    border: 2px solid var(--border-color);
    position: relative;
}

.activity-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    border-radius: 15px;
    transition: opacity var(--transition-normal);
    z-index: 0;
}

.activity-card:hover::after {
    opacity: 0.05;
}

.activity-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary);
}

.activity-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--spacing-md);
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transition: all var(--transition-normal);
    position: relative;
    z-index: 1;
}

.activity-card:hover .activity-icon {
    transform: scale(1.1);
    background: var(--gradient-accent);
    color: var(--color-primary);
}

.activity-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
    position: relative;
    z-index: 1;
}

.activity-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
    position: relative;
    z-index: 1;
}

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

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

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes floatHorizontal {
    0%, 100% {
        transform: translateX(0px);
    }
    50% {
        transform: translateX(15px);
    }
}

@keyframes floatVertical {
    0%, 100% {
        transform: translate(-50%, -50%) translateY(0px);
    }
    50% {
        transform: translate(-50%, -50%) translateY(-15px);
    }
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
    .hero {
        height: 100vh;
        min-height: 100vh;
        max-height: 100vh;
    }
    
    .hero-container {
        height: 80vh;
        min-height: 80vh;
        max-height: 80vh;
        padding: var(--spacing-lg);
    }
    
    .hero-stats-section {
        height: 20vh;
        min-height: 20vh;
        max-height: 20vh;
        display: flex !important;
        visibility: visible !important;
    }
    
    .stat-card-3d {
        max-width: 200px;
        max-height: 100px;
        padding: var(--spacing-sm);
    }
    
    .stat-icon-3d {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .stat-number-3d {
        font-size: clamp(1.2rem, 2vw, 1.5rem);
    }
    
    .stat-label-3d {
        font-size: 0.75rem;
    }
    
    .hero-visual-section {
        order: -1;
    }
    
    .hero-visual-content {
        max-width: 100%;
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 6vw, 4rem);
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-sm);
    }
    
    .stat-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .stat-number {
        font-size: clamp(1.5rem, 3vw, 2rem);
    }
    
    .visual-card {
        padding: var(--spacing-md);
    }
    
    .visual-card .card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
    
    .visual-card h3 {
        font-size: 1rem;
    }
    
    .mission-vision-row-new {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .mission-col-new,
    .vision-col-new {
        padding: var(--spacing-lg) 0;
    }
    
    .image-col-new {
        order: 2;
        min-height: 400px;
    }
    
    .mission-col-new {
        order: 1;
    }
    
    .vision-col-new {
        order: 3;
    }
    
    .mission-vision-heading-new {
        font-size: 2rem;
    }
    
    .mission-vision-subheading-new {
        font-size: 1.1rem;
    }
    
    .mission-vision-text-new {
        font-size: 1rem;
    }
    
    .vision-item-new {
        font-size: 1rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .activities-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    /* About Section Responsive */
    .section-title-about-new {
        font-size: clamp(2rem, 5vw, 3rem);
    }
    
    .about-wrapper-new {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .about-images-col {
        order: -1;
    }
    
    .about-img-2 {
        margin-top: 15%;
    }
    
    .about-title-new {
        font-size: clamp(1.75rem, 4vw, 2.5rem);
    }
    
    .about-stats-new {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .stat-icon-wrapper {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 78px;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: calc(100vh - 78px);
        background: var(--bg-primary);
        flex-direction: column;
        padding: var(--spacing-xl);
        gap: var(--spacing-md);
        transition: right var(--transition-normal);
        box-shadow: var(--shadow-lg);
        align-items: flex-start;
        justify-content: flex-start;
    }
    
    .nav-menu.active {
        right: 0;
    }

    .nav-more-menu {
        position: static;
        width: 100%;
        min-width: 0;
        margin-top: 8px;
        box-shadow: none;
        border-radius: 12px;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero {
        height: 100vh;
        min-height: 100vh;
        max-height: 100vh;
        padding-top: 70px;
    }
    
    .hero-container {
        height: 80vh;
        min-height: 80vh;
        max-height: 80vh;
        padding: var(--spacing-lg) var(--spacing-md);
    }
    
    .hero-stats-section {
        height: 20vh;
        min-height: 20vh;
        max-height: 20vh;
        display: flex !important;
        visibility: visible !important;
        padding: var(--spacing-sm) 0;
    }
    
    .stat-card-3d {
        max-width: 150px;
        max-height: 80px;
        padding: var(--spacing-xs);
        gap: var(--spacing-xs);
    }
    
    .stat-icon-3d {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .stat-number-3d {
        font-size: clamp(1rem, 2vw, 1.3rem);
    }
    
    .stat-label-3d {
        font-size: 0.7rem;
    }
    
    .stats-3d-swiper {
        padding: 0 var(--spacing-sm);
    }
    
    .hero-visual-section {
        order: -1;
    }
    
    .hero-visual-content {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
    
    .hero-title {
        font-size: clamp(2rem, 5vw, 3rem);
    }
    
    .hero-subtitle {
        font-size: clamp(1.1rem, 2vw, 1.4rem);
    }
    
    .hero-description {
        font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
    .stat-item {
        flex-direction: row;
        text-align: right;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .stat-number {
        font-size: clamp(1.8rem, 4vw, 2.2rem);
    }
    
    .visual-card {
        padding: var(--spacing-md);
    }
    
    .visual-card .card-icon {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
        margin-bottom: var(--spacing-sm);
    }
    
    .visual-card h3 {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    /* About Section Responsive */
    .section-title-about-new {
        font-size: clamp(1.75rem, 4vw, 2.5rem);
    }
    
    .about-wrapper-new {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .about-images-col {
        order: -1;
    }
    
    .about-images-grid-new {
        gap: var(--spacing-sm);
    }
    
    .about-img-2 {
        margin-top: 10%;
    }
    
    .about-title-new {
        font-size: clamp(1.5rem, 4vw, 2rem);
    }
    
    .about-text-new {
        font-size: 1rem;
    }
    
    .about-stats-new {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
    .stat-number-new {
        font-size: clamp(1.5rem, 3vw, 2rem);
    }
    
    .stat-icon-wrapper {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .display-5 {
        font-size: 2rem;
    }
    
    /* Mission Vision Section Responsive */
    .mission-vision-section-title-new {
        font-size: clamp(1.75rem, 4vw, 2.5rem);
    }
    
    .mission-vision-row-new {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .mission-col-new,
    .vision-col-new {
        padding: var(--spacing-md) 0;
    }
    
    .image-col-new {
        order: 2;
        min-height: 300px;
    }
    
    .mission-col-new {
        order: 1;
    }
    
    .vision-col-new {
        order: 3;
    }
    
    .mission-vision-heading-new {
        font-size: clamp(1.5rem, 4vw, 2rem);
    }
    
    .mission-vision-subheading-new {
        font-size: 1rem;
    }
    
    .mission-vision-text-new {
        font-size: 0.95rem;
    }
    
    .vision-item-new {
        font-size: 0.95rem;
    }
    
    .mission-vision-btn-new {
        padding: var(--spacing-sm) var(--spacing-lg);
        font-size: 0.9rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .activities-grid {
        grid-template-columns: 1fr;
    }
    
    /* Products Section Tablet */
    .filter-dropdown-wrapper {
        flex-direction: row;
        gap: var(--spacing-md);
    }
    
    .filter-dropdown {
        min-width: 200px;
        max-width: 300px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
    }
    
    .product-image-wrapper {
        height: 220px;
    }
}

@media (max-width: 480px) {
    /* Navigation */
    .nav-container {
        padding: 0 var(--spacing-sm);
    }
    
    .nav-actions {
        display: flex;
        align-items: center;
        gap: var(--spacing-xs);
        flex-wrap: nowrap;
    }
    
    .theme-toggle,
    .language-toggle {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .nav-logo .logo {
        height: 45px;
    }
    
    /* Hero Section */
    .hero {
        flex-direction: column;
        padding: 60px 30px;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
        margin: 0 auto;
    }
    
    .hero-content h1.hero-title {
        font-size: clamp(2.5rem, 8vw, 4rem);
    }
    
    .hero-content p.hero-description {
        max-width: 100%;
        font-size: clamp(1rem, 3vw, 1.2rem);
    }
    
    .hero-products {
        position: relative;
        right: 0;
        left: 0;
        margin-top: 40px;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-products img {
        width: 140px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
    
    /* Hero Stats Section */
    .hero-stats-section {
        height: 20vh;
        min-height: 20vh;
        max-height: 20vh;
        display: flex !important;
        visibility: visible !important;
        padding: var(--spacing-xs) 0;
    }
    
    .stat-card-3d {
        max-width: 100px;
        max-height: 60px;
        padding: var(--spacing-xs);
        gap: 4px;
    }
    
    .stat-icon-3d {
        width: 28px;
        height: 28px;
        min-width: 28px;
        font-size: 0.85rem;
    }
    
    .stat-number-3d {
        font-size: clamp(0.85rem, 2.5vw, 1rem);
    }
    
    .stat-label-3d {
        font-size: 0.6rem;
    }
    
    .stats-3d-swiper {
        padding: 0 var(--spacing-xs);
    }
    
    /* About Section */
    .about-section {
        padding: var(--spacing-xl) 0;
    }
    
    .section-title-about-new {
        font-size: clamp(1.5rem, 5vw, 2rem);
        margin-bottom: var(--spacing-md);
    }
    
    .about-wrapper-new {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .about-images-col {
        order: -1;
    }
    
    .about-images-grid-new {
        gap: var(--spacing-xs);
    }
    
    .about-img-2 {
        margin-top: 5%;
    }
    
    .about-title-new {
        font-size: clamp(1.25rem, 4vw, 1.75rem);
        margin-bottom: var(--spacing-sm);
    }
    
    .about-text-new {
        font-size: clamp(0.9rem, 2.5vw, 0.95rem);
        line-height: 1.8;
        margin-bottom: var(--spacing-sm);
    }
    
    .about-stats-new {
        grid-template-columns: 1fr;
        gap: var(--spacing-xs);
        margin: var(--spacing-md) 0;
    }
    
    .about-stat-item-new .d-flex {
        padding: var(--spacing-sm);
        gap: var(--spacing-xs);
    }
    
    .stat-icon-wrapper {
        width: 35px;
        height: 35px;
        min-width: 35px;
        font-size: 1rem;
    }
    
    .stat-number-new {
        font-size: clamp(1.5rem, 4vw, 2rem);
    }
    
    .display-5 {
        font-size: 1.75rem;
    }
    
    .about-stat-item-new .mb-0 {
        font-size: 0.8rem;
    }
    
    .about-stat-item-new h6 {
        font-size: 0.85rem;
    }
    
    .btn-read-more-new {
        padding: var(--spacing-sm) var(--spacing-md);
        font-size: 0.9rem;
        width: 100%;
    }
    
    /* Mission Vision Section */
    .mission-vision-section {
        padding: var(--spacing-xl) 0;
    }
    
    .mission-vision-section-title-new {
        font-size: clamp(1.5rem, 5vw, 2rem);
        margin-bottom: var(--spacing-sm);
    }
    
    .mission-vision-row-new {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .mission-col-new,
    .vision-col-new {
        padding: var(--spacing-sm) 0;
    }
    
    .image-col-new {
        order: 2;
        min-height: 250px;
        margin: var(--spacing-md) 0;
    }
    
    .mission-vision-image-wrapper-new {
        min-height: 250px;
    }
    
    .mission-col-new {
        order: 1;
    }
    
    .vision-col-new {
        order: 3;
    }
    
    .mission-vision-heading-new {
        font-size: clamp(1.25rem, 4vw, 1.75rem);
        margin-bottom: var(--spacing-sm);
    }
    
    .mission-vision-subheading-new {
        font-size: clamp(0.95rem, 2.5vw, 1rem);
        margin-bottom: var(--spacing-sm);
        line-height: 1.5;
    }
    
    .mission-vision-text-new {
        font-size: clamp(0.85rem, 2.5vw, 0.9rem);
        line-height: 1.8;
        margin-bottom: var(--spacing-sm);
    }
    
    .vision-list-new {
        margin-bottom: var(--spacing-md);
    }
    
    .vision-item-new {
        font-size: clamp(0.85rem, 2.5vw, 0.9rem);
        margin-bottom: var(--spacing-sm);
        gap: var(--spacing-xs);
    }
    
    .vision-item-new i {
        font-size: 1rem;
        margin-left: var(--spacing-xs);
    }
    
    .mission-vision-btn-new {
        padding: var(--spacing-sm) var(--spacing-md);
        font-size: 0.85rem;
        width: 100%;
        margin-top: var(--spacing-sm);
    }
    
    /* Section Titles */
    .section-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }
    
    .section-subtitle {
        font-size: clamp(0.9rem, 2.5vw, 1rem);
    }
    
    /* Features & Activities */
    .features-section,
    .activities-section {
        padding: var(--spacing-xl) 0;
    }
    
    .features-grid,
    .activities-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .feature-card,
    .activity-card {
        padding: var(--spacing-md);
    }
    
    .feature-title,
    .activity-title {
        font-size: clamp(1rem, 3vw, 1.2rem);
    }
    
    .feature-description,
    .activity-description {
        font-size: clamp(0.85rem, 2.5vw, 0.9rem);
    }
    
    /* Products Section Responsive */
    .products-section {
        padding: var(--spacing-xl) 0;
    }
    
    .products-filters-modern {
        margin-bottom: var(--spacing-xl);
    }
    
    .filter-dropdown-wrapper {
        flex-direction: column;
        gap: var(--spacing-md);
        width: 100%;
    }
    
    .filter-dropdown {
        min-width: 100%;
        max-width: 100%;
    }
    
    .filter-dropdown-btn {
        padding: var(--spacing-sm) var(--spacing-md);
        font-size: 0.9rem;
    }
    
    .filter-dropdown-item {
        padding: var(--spacing-sm) var(--spacing-md);
        font-size: 0.9rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .product-image-wrapper {
        height: 200px;
    }
    
    .product-info {
        padding: var(--spacing-md);
    }
    
    .product-name {
        font-size: 1.1rem;
    }
    
    .product-description {
        font-size: 0.85rem;
    }
    
    .product-badge {
        font-size: 0.75rem;
        padding: 4px var(--spacing-sm);
    }
    
    /* Load More Button Responsive */
    .products-load-more-btn {
        padding: var(--spacing-sm) var(--spacing-xl);
        font-size: 1rem;
    }
    
    .load-more-icon {
        font-size: 0.9rem;
    }
    
    /* Container */
    .container {
        padding: 0 var(--spacing-sm);
    }
}

/* ============================================
   Language Direction Support
   ============================================ */
[dir="ltr"] .hero-container {
    direction: ltr;
}

[dir="ltr"] .nav-menu {
    left: -100%;
}

[dir="ltr"] .nav-menu.active {
    left: 0;
    right: auto;
}

[dir="ltr"] .nav-link::after {
    left: auto;
    right: 50%;
    transform: translateX(50%);
}

[dir="ltr"] .hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(-8px, 8px);
}

[dir="ltr"] .hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(-7px, -7px);
}

/* ============================================
   Footer Styles - أزرق مشع #00bfff
   ============================================ */
.footer {
    background: linear-gradient(180deg, #0a1628 0%, #0d2137 50%, #0f2847 100%);
    padding: var(--spacing-xxl) 0 var(--spacing-lg);
    margin-top: var(--spacing-xxl);
    border-top: 2px solid rgba(0, 191, 255, 0.4);
    position: relative;
    overflow: hidden;
    box-shadow: 0 -4px 30px rgba(0, 191, 255, 0.08);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00bfff 0%, #00d4ff 50%, #00bfff 100%);
    box-shadow: 0 0 20px rgba(0, 191, 255, 0.5);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo-wrapper {
    margin-bottom: var(--spacing-md);
}

.footer-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: brightness(0.9);
    transition: filter var(--transition-normal);
}

.footer-logo:hover {
    filter: brightness(1);
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--spacing-md);
    font-family: var(--font-arabic);
    font-weight: 500;
}

.footer-social {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-sm);
}

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 191, 255, 0.15);
    color: #00bfff;
    border: 1px solid rgba(0, 191, 255, 0.3);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, #00bfff 0%, #00d4ff 100%);
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
    z-index: 0;
}

.social-link i {
    position: relative;
    z-index: 1;
    transition: transform 0.4s;
}

.social-link:hover {
    color: white;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 191, 255, 0.4);
}

.social-link:hover::before {
    width: 100%;
    height: 100%;
}

.social-link:hover i {
    transform: rotate(360deg);
}

.footer-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: #00bfff;
    margin-bottom: var(--spacing-md);
    font-family: var(--font-arabic);
    position: relative;
    padding-bottom: var(--spacing-sm);
    letter-spacing: 0.5px;
    text-align: center;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 0 20px rgba(0, 191, 255, 0.3);
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #00bfff, #00d4ff);
    border-radius: 2px;
    animation: slideInRight 0.6s ease-out;
    display: block;
    box-shadow: 0 0 10px rgba(0, 191, 255, 0.5);
}

[dir="rtl"] .footer-title {
    text-align: center;
}

[dir="rtl"] .footer-title::after {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
}

[dir="ltr"] .footer-title {
    text-align: center;
}

[dir="ltr"] .footer-title::after {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
}

@keyframes slideInRight {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 60px;
        opacity: 1;
    }
}

.footer-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    align-items: center;
    text-align: center;
    padding: 0;
    margin: 0;
    width: 100%;
}

.footer-menu li {
    position: relative;
    padding-right: 0;
    padding-left: 0;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
    text-align: center;
    width: 100%;
}

.footer-menu li:nth-child(1) { animation-delay: 0.1s; }
.footer-menu li:nth-child(2) { animation-delay: 0.2s; }
.footer-menu li:nth-child(3) { animation-delay: 0.3s; }
.footer-menu li:nth-child(4) { animation-delay: 0.4s; }
.footer-menu li:nth-child(5) { animation-delay: 0.5s; }
.footer-menu li:nth-child(6) { animation-delay: 0.6s; }
.footer-menu li:nth-child(7) { animation-delay: 0.7s; }

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

.footer-menu li::before {
    display: none;
}

.footer-menu li:hover::before {
    opacity: 1;
    transform: translateX(-8px);
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: var(--font-arabic);
    display: inline-block;
    position: relative;
}

.footer-menu a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: 0;
    width: 0;
    height: 2px;
    background: #00bfff;
    transition: width 0.3s ease;
}

.footer-menu a:hover {
    color: #00bfff;
    transform: scale(1.05);
    text-shadow: 0 0 15px rgba(0, 191, 255, 0.4);
}

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

.footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    align-items: center;
    text-align: center;
    padding: 0;
    margin: 0;
    width: 100%;
}

.footer-contact-list li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    text-align: center;
    width: 100%;
    font-family: var(--font-arabic);
    font-weight: 600;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.footer-contact-list li:nth-child(1) { animation-delay: 0.1s; }
.footer-contact-list li:nth-child(2) { animation-delay: 0.2s; }
.footer-contact-list li:nth-child(3) { animation-delay: 0.3s; }
.footer-contact-list li:nth-child(4) { animation-delay: 0.4s; }

.footer-contact-list i {
    color: #00bfff;
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
    width: 22px;
    transition: all 0.3s ease;
}

.footer-contact-list li:hover i {
    transform: scale(1.2) rotate(5deg);
    color: #00d4ff;
    text-shadow: 0 0 12px rgba(0, 191, 255, 0.6);
}

.footer-contact-list a,
.footer-contact-list span {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.footer-contact-list a:hover {
    color: #00bfff;
    transform: scale(1.05);
    text-shadow: 0 0 15px rgba(0, 191, 255, 0.4);
}

.footer-bottom {
    border-top: 1px solid rgba(0, 191, 255, 0.3);
    padding-top: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.footer-bottom-content {
    display: flex;
    justify-content: center; /* توسيط الكوبي رايت */
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    font-family: var(--font-arabic);
    font-weight: 600;
    margin: 0;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 0.95rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: var(--font-arabic);
    font-weight: 600;
    position: relative;
}

.footer-legal a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: 0;
    width: 0;
    height: 2px;
    background: #00bfff;
    transition: width 0.3s ease;
}

.footer-legal a:hover {
    color: #00bfff;
    text-shadow: 0 0 12px rgba(0, 191, 255, 0.4);
}

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

.footer-legal .separator {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
}

/* Dark Theme - Footer (أزرق مشع) */
[data-theme="dark"] .footer {
    background: linear-gradient(180deg, #0a1628 0%, #0d2137 100%);
    border-top-color: rgba(0, 191, 255, 0.4);
}

[data-theme="dark"] .footer-bottom {
    border-top-color: rgba(0, 191, 255, 0.3);
}

[data-theme="dark"] .social-link {
    background: rgba(0, 191, 255, 0.15);
    color: #00bfff;
}

[data-theme="dark"] .social-link:hover {
    color: white;
    box-shadow: 0 8px 20px rgba(0, 191, 255, 0.4);
}

[data-theme="dark"] .footer-title {
    color: #00bfff;
}

[data-theme="dark"] .footer-menu a {
    color: rgba(255, 255, 255, 0.9);
}

[data-theme="dark"] .footer-menu a:hover {
    color: #00bfff;
}

[data-theme="dark"] .footer-contact-list li {
    color: rgba(255, 255, 255, 0.9);
}

[data-theme="dark"] .footer-contact-list a {
    color: rgba(255, 255, 255, 0.9);
}

[data-theme="dark"] .footer-contact-list a:hover {
    color: #00bfff;
}

[data-theme="dark"] .footer-copyright {
    color: rgba(255, 255, 255, 0.8);
}

[data-theme="dark"] .footer-legal a {
    color: rgba(255, 255, 255, 0.85);
}

[data-theme="dark"] .footer-legal a:hover {
    color: #00bfff;
}

/* Responsive - Footer (موبايل) */
@media (max-width: 768px) {
    .footer {
        padding: var(--spacing-xl) var(--spacing-md) var(--spacing-md);
        margin-top: var(--spacing-xl);
    }
    
    .footer .container {
        padding-left: var(--spacing-md);
        padding-right: var(--spacing-md);
        max-width: 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
        text-align: center;
        margin-bottom: var(--spacing-lg);
    }
    
    .footer-section {
        align-items: center;
        text-align: center;
        width: 100%;
    }
    
    .footer-logo-wrapper {
        display: flex;
        justify-content: center;
    }
    
    .footer-logo {
        height: 52px;
        max-width: 100%;
    }
    
    .footer-description {
        text-align: center;
        font-size: 0.9rem;
        padding: 0 0.5rem;
    }
    
    .footer-social {
        justify-content: center;
        flex-wrap: wrap;
        gap: var(--spacing-sm);
    }
    
    .social-link {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }
    
    .footer-title {
        text-align: center;
        display: inline-block;
        width: 100%;
        font-size: 1.15rem;
    }
    
    .footer-title::after {
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) !important;
    }
    
    [dir="rtl"] .footer-title::after {
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) !important;
    }
    
    [dir="ltr"] .footer-title::after {
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) !important;
    }
    
    .footer-menu {
        align-items: center;
        gap: var(--spacing-xs);
    }
    
    .footer-menu li {
        padding-right: 0;
        text-align: center;
    }
    
    .footer-menu a {
        font-size: 0.95rem;
        padding: 0.25rem 0;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    .footer-contact-list {
        align-items: center;
        gap: var(--spacing-sm);
    }
    
    .footer-contact-list li {
        justify-content: center;
        text-align: center;
        font-size: 0.9rem;
        flex-wrap: wrap;
    }
    
    .footer-contact-list a,
    .footer-contact-list span {
        word-break: break-word;
    }
    
    .footer-bottom {
        padding-top: var(--spacing-md);
        margin-top: var(--spacing-md);
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-sm);
    }
    
    .footer-copyright {
        font-size: 0.85rem;
        text-align: center;
        line-height: 1.5;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: var(--spacing-xs);
        align-items: center;
    }
    
    .footer-legal a {
        font-size: 0.9rem;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    .footer-legal .separator {
        display: none;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: var(--spacing-lg) var(--spacing-sm) var(--spacing-md);
    }
    
    .footer-content {
        gap: var(--spacing-lg);
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .social-link {
        width: 42px;
        height: 42px;
    }
    
    .footer-title {
        font-size: 1.05rem;
    }
    
    .footer-menu li::before {
        display: none;
    }
    
    .footer-menu a {
        font-size: 0.9rem;
    }
    
    .footer-menu a:hover {
        padding-right: 0;
    }
    
    .footer-section {
        align-items: center;
        text-align: center;
    }
    
    .footer-logo-wrapper {
        display: flex;
        justify-content: center;
    }
    
    .footer-logo {
        height: 48px;
    }
    
    .footer-copyright {
        font-size: 0.8rem;
    }
    
    .footer-description {
        text-align: center;
    }
    
    .footer-title {
        text-align: center;
        display: inline-block;
        width: 100%;
    }
    
    .footer-title::after {
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) !important;
    }
    
    [dir="rtl"] .footer-title::after {
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) !important;
    }
    
    [dir="ltr"] .footer-title::after {
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) !important;
    }
    
    .footer-menu {
        align-items: center;
    }
    
    .footer-menu li {
        padding-right: 0;
        text-align: center;
    }
    
    .footer-contact-list {
        align-items: center;
    }
    
    .footer-contact-list li {
        justify-content: center;
        text-align: center;
    }
}

/* ============================================
   Hero Section - New Design
   ============================================ */
.tt-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--gradient-hero);
    isolation: isolate;
}

.tt-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(900px 450px at 20% 30%, rgba(127, 179, 196, 0.18), transparent 60%),
        radial-gradient(800px 400px at 85% 55%, rgba(255, 130, 1, 0.10), transparent 60%);
    z-index: 0;
}

.tt-hero-container {
    position: relative;
    z-index: 2;
    padding-top: 110px; /* account for fixed header */
    padding-bottom: 80px;
}

.tt-hero-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(24px, 4vw, 64px);
    align-items: center;
}

.tt-hero-left {
    animation: ttHeroEnterUp 0.9s ease-out both;
}

.tt-hero-right {
    animation: ttHeroEnterUp 0.9s ease-out both;
    animation-delay: 0.12s;
}

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

.tt-hero-tech {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.tt-hero-grid {
    position: absolute;
    inset: -2px;
    background-image:
        linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
    background-size: 70px 70px;
    opacity: 0.35;
    mask-image: radial-gradient(circle at 40% 35%, #000 0%, transparent 70%);
}

.tt-hero-lines {
    position: absolute;
    inset: 0;
    opacity: 0.35;
}

.tt-hero-line {
    position: absolute;
    height: 1px;
    width: 55%;
    background: linear-gradient(90deg, transparent, rgba(127, 179, 196, 0.75), transparent);
    filter: drop-shadow(0 0 10px rgba(127, 179, 196, 0.35));
    animation: ttLineMove 8s ease-in-out infinite;
}

.tt-hero-line:nth-child(1) { top: 22%; left: -10%; animation-delay: 0s; }
.tt-hero-line:nth-child(2) { top: 52%; right: -10%; width: 65%; animation-delay: 1.6s; }
.tt-hero-line:nth-child(3) { top: 78%; left: 5%; width: 60%; animation-delay: 3.2s; }

@keyframes ttLineMove {
    0%, 100% { transform: translateX(-30px); opacity: 0.25; }
    50% { transform: translateX(30px); opacity: 0.6; }
}

.tt-hero-particles {
    position: absolute;
    inset: 0;
}

.tt-hero-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: rgba(127, 179, 196, 0.7);
    box-shadow: 0 0 18px rgba(127, 179, 196, 0.6);
    animation: ttFloat 7s ease-in-out infinite;
}

.tt-hero-particle:nth-child(1) { top: 18%; left: 12%; animation-delay: 0s; }
.tt-hero-particle:nth-child(2) { top: 28%; right: 18%; animation-delay: 1.2s; width: 5px; height: 5px; }
.tt-hero-particle:nth-child(3) { top: 64%; left: 24%; animation-delay: 2.4s; width: 4px; height: 4px; }
.tt-hero-particle:nth-child(4) { top: 72%; right: 22%; animation-delay: 3.1s; width: 6px; height: 6px; }
.tt-hero-particle:nth-child(5) { top: 48%; left: 52%; animation-delay: 1.8s; width: 4px; height: 4px; }

@keyframes ttFloat {
    0%, 100% { transform: translate3d(0, 0, 0); opacity: 0.35; }
    50% { transform: translate3d(16px, -22px, 0); opacity: 0.85; }
}

.tt-hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    font-weight: 500;
    margin-bottom: 18px;
}

.tt-hero-kicker i {
    color: var(--color-accent);
}

.tt-hero-title {
    font-family: var(--font-english);
    font-size: clamp(2.6rem, 4.6vw, 4.2rem);
    font-weight: 600;
    line-height: 1.05;
    margin: 0 0 14px;
    letter-spacing: -0.8px;
    color: #fff;
}

[dir="rtl"] .tt-hero-title {
    font-family: 'Cairo', var(--font-arabic);
}

.tt-hero-title-blue {
    color: #ffffff;
}

.tt-hero-title-accent {
    color: var(--color-accent);
    text-shadow: 0 0 28px rgba(255, 130, 1, 0.35);
}

.tt-hero-headline {
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.96);
    margin: 0 0 14px;
    line-height: 1.4;
}

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

.tt-hero-desc {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.9;
    margin: 0 0 28px;
    max-width: 54ch;
}

.tt-hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.tt-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
    border: 1px solid transparent;
}

.tt-btn-primary {
    background: var(--gradient-accent);
    color: #0b0f16;
    box-shadow: 0 14px 34px rgba(255, 130, 1, 0.22);
}

.tt-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 44px rgba(255, 130, 1, 0.30);
}

.tt-btn-secondary {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    border-color: rgba(127, 179, 196, 0.35);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(10px);
}

.tt-btn-secondary:hover {
    transform: translateY(-3px);
    border-color: rgba(127, 179, 196, 0.6);
}

.tt-hero-visual {
    position: relative;
    width: min(460px, 100%);
    height: 520px;
    margin-inline: auto;
}

.tt-hero-card {
    position: absolute;
    inset: auto;
    width: 68%;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    transform: translateZ(0);
}

.tt-hero-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(1.05) contrast(1.05);
}

.tt-hero-card-label {
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(15, 36, 57, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.92);
    font-weight: 700;
    backdrop-filter: blur(10px);
}

.tt-hero-card--1 { top: 0; right: 0; height: 62%; animation: ttCardFloat 8s ease-in-out infinite; }
.tt-hero-card--2 { top: 18%; left: 0; width: 62%; height: 58%; animation: ttCardFloat 9s ease-in-out infinite; animation-delay: 0.7s; }
.tt-hero-card--3 { bottom: 0; right: 10%; width: 58%; height: 46%; animation: ttCardFloat 10s ease-in-out infinite; animation-delay: 1.1s; }

@keyframes ttCardFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}

@media (max-width: 980px) {
    .tt-hero-layout {
        grid-template-columns: 1fr;
    }
    .tt-hero-visual {
        height: 460px;
        margin-top: 26px;
    }
}

@media (max-width: 520px) {
    .tt-hero-container {
        padding-top: 96px;
        padding-bottom: 64px;
    }
    .tt-hero-actions {
        flex-direction: column;
    }
    .tt-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   Products (lightweight)
   ============================================ */
.tt-products {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, rgba(0, 191, 255, 0.04) 50%, var(--bg-primary) 100%);
}

[data-theme="dark"] .tt-products {
    background: var(--bg-primary-dark);
}

.tt-section-head {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.tt-section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--color-primary);
    font-family: var(--font-arabic);
    margin-bottom: var(--spacing-sm);
}

[data-theme="dark"] .tt-section-title {
    color: var(--color-blue-light);
}

.tt-section-subtitle {
    color: var(--text-secondary);
}

[data-theme="dark"] .tt-section-subtitle {
    color: var(--text-secondary-dark);
}

.tt-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--spacing-lg);
}

.tt-product-tile {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: var(--spacing-xl);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

[data-theme="dark"] .tt-product-tile {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.12);
}

.tt-product-tile:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 191, 255, 0.5);
    box-shadow: 0 18px 50px rgba(0, 191, 255, 0.2);
}

.tt-product-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(127, 179, 196, 0.18);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--spacing-md);
}

[data-theme="light"] .tt-product-icon {
    color: var(--color-primary);
}

.tt-product-tile h3 {
    font-weight: 800;
    margin-bottom: 8px;
}

.tt-product-tile p {
    color: var(--text-secondary);
}

[data-theme="dark"] .tt-product-tile p {
    color: var(--text-secondary-dark);
}

/* ============================================
   About Us Section
   ============================================ */
.about-us-section {
    padding: var(--spacing-xxl) 0;
    background: var(--bg-primary);
    position: relative;
}

[data-theme="dark"] .about-us-section {
    background: var(--bg-primary-dark);
}

.about-header {
    position: relative;
    text-align: center;
    margin-bottom: var(--spacing-xxl);
}

.about-tech-image {
    position: relative;
    width: 100%;
    max-width: 900px;
    height: 400px;
    margin: 0 auto var(--spacing-lg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.about-tech-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tech-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.4) 0%, rgba(255, 130, 1, 0.2) 100%);
}

.about-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    font-family: var(--font-arabic);
    z-index: 2;
    letter-spacing: 2px;
}

.about-content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

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

.about-description {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    line-height: 1.9;
    color: var(--text-primary);
    font-family: var(--font-arabic);
}

[data-theme="dark"] .about-description {
    color: var(--text-primary-dark);
}

/* ============================================
   Services Section
   ============================================ */
.services-section {
    padding: var(--spacing-xxl) 0;
    background: var(--bg-secondary);
    position: relative;
}

[data-theme="dark"] .services-section {
    background: var(--bg-secondary-dark);
}

.services-header {
    text-align: center;
    margin-bottom: var(--spacing-xxl);
}

.services-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--color-primary);
    margin-bottom: var(--spacing-md);
    font-family: var(--font-arabic);
}

[data-theme="dark"] .services-title {
    color: var(--color-blue-light);
}

.services-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--text-secondary);
    font-family: var(--font-arabic);
}

[data-theme="dark"] .services-subtitle {
    color: var(--text-secondary-dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: var(--bg-primary);
    border-radius: 20px;
    padding: var(--spacing-xl);
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .service-card {
    background: var(--bg-primary-dark);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.05) 0%, rgba(255, 130, 1, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-accent);
    box-shadow: 0 20px 50px rgba(255, 130, 1, 0.2);
}

.service-icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto var(--spacing-lg);
    background: var(--gradient-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(30, 58, 95, 0.3);
}

.service-card:hover .service-icon-wrapper {
    background: var(--gradient-accent);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(255, 130, 1, 0.4);
}

.service-icon {
    font-size: 2.5rem;
    color: #ffffff;
    z-index: 2;
}

.service-name {
    font-size: clamp(1.3rem, 2.5vw, 1.6rem);
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: var(--spacing-md);
    font-family: var(--font-arabic);
    position: relative;
    z-index: 1;
}

[data-theme="dark"] .service-name {
    color: var(--color-blue-light);
}

.service-description {
    font-size: clamp(1rem, 1.8vw, 1.1rem);
    line-height: 1.7;
    color: var(--text-secondary);
    font-family: var(--font-arabic);
    position: relative;
    z-index: 1;
}

[data-theme="dark"] .service-description {
    color: var(--text-secondary-dark);
}

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

/* Responsive */
@media (max-width: 768px) {
    .about-tech-image {
        height: 300px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .service-card {
        padding: var(--spacing-lg);
    }
}

/* ============================================
   Tiger Hero (single-file) + changing background
   Uses only style.css
   ============================================ */

/* ============================================
   Premium Hero Section - Tiger Technology
   ============================================ */
.tt-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: clamp(100px, 12vh, 140px) 0 clamp(60px, 8vh, 100px);
  background: var(--bg-primary-dark);
  color: #fff;
  overflow: hidden;
}

/* Tech-Style Hero */
.tt-hero-tech {
  position: relative;
}

/* Tech Background Layers */
.tt-hero-tech-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

/* Tech Grid Pattern */
.tt-hero-tech-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 130, 1, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 130, 1, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.4;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50px, 50px);
  }
}

/* Tech Circuits Pattern */
.tt-hero-tech-circuits {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(255, 130, 1, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 130, 1, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(255, 130, 1, 0.08) 0%, transparent 70%);
  opacity: 0.6;
  animation: circuitPulse 8s ease-in-out infinite;
}

@keyframes circuitPulse {
  0%, 100% {
    opacity: 0.4;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.05);
  }
}

/* Tech Glow Effects */
.tt-hero-tech-glow {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 0% 0%, rgba(255, 130, 1, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 100%, rgba(255, 130, 1, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(255, 130, 1, 0.1) 0%, transparent 60%);
  animation: glowPulse 6s ease-in-out infinite;
  filter: blur(60px);
}

@keyframes glowPulse {
  0%, 100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}

/* Tech Overlay */
.tt-hero-overlay-tech {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    135deg, 
    rgba(15, 36, 57, 0.65) 0%, 
    rgba(30, 58, 95, 0.55) 30%,
    rgba(0, 0, 0, 0.5) 70%,
    rgba(15, 36, 57, 0.6) 100%
  );
  transition: background 0.3s ease;
  pointer-events: none;
}

[data-theme="dark"] .tt-hero-overlay-tech {
  background: linear-gradient(
    135deg, 
    rgba(15, 36, 57, 0.75) 0%, 
    rgba(30, 58, 95, 0.65) 30%,
    rgba(0, 0, 0, 0.6) 70%,
    rgba(15, 36, 57, 0.7) 100%
  );
}

[data-theme="light"] .tt-hero-overlay-tech,
:root:not([data-theme="dark"]) .tt-hero-overlay-tech {
  background: linear-gradient(
    135deg, 
    rgba(255, 255, 255, 0.35) 0%, 
    rgba(255, 255, 255, 0.25) 30%,
    rgba(255, 255, 255, 0.2) 70%,
    rgba(255, 255, 255, 0.25) 100%
  );
}

/* Hero Rotating Image Slider */
.tt-hero-bg-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.tt-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.1);
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), transform 8s ease-out;
  will-change: opacity, transform;
}

.tt-hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.tt-hero-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.85) contrast(1.05);
  transition: filter 0.3s ease;
}

[data-theme="dark"] .tt-hero-slide-img {
  filter: brightness(0.7) contrast(1.1);
}

[data-theme="light"] .tt-hero-slide-img,
:root:not([data-theme="dark"]) .tt-hero-slide-img {
  filter: brightness(0.9) contrast(1.05);
}

/* Slider Controls */
.tt-hero-slider-controls {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.tt-hero-slider-prev,
.tt-hero-slider-next {
  display: none;
}

.tt-hero-slider-dots {
  display: flex;
  gap: 10px;
  align-items: center;
}

.tt-hero-slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid rgba(255, 130, 1, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
  backdrop-filter: blur(5px);
}

.tt-hero-slider-dot.active {
  background: #ff8201;
  border-color: #ff8201;
  width: 32px;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(255, 130, 1, 0.4);
}

.tt-hero-slider-dot:hover {
  background: rgba(255, 130, 1, 0.6);
  transform: scale(1.2);
}

.tt-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    135deg, 
    rgba(15, 36, 57, 0.5) 0%, 
    rgba(30, 58, 95, 0.4) 30%,
    rgba(0, 0, 0, 0.3) 70%,
    rgba(15, 36, 57, 0.4) 100%
  );
  transition: background 0.3s ease;
  pointer-events: none;
}

/* Dark Mode - Semi-transparent overlay for better readability */
[data-theme="dark"] .tt-hero-overlay {
  background: linear-gradient(
    135deg, 
    rgba(15, 36, 57, 0.6) 0%, 
    rgba(30, 58, 95, 0.5) 30%,
    rgba(0, 0, 0, 0.4) 70%,
    rgba(15, 36, 57, 0.5) 100%
  );
}

/* Light Mode - Lighter overlay */
[data-theme="light"] .tt-hero-overlay,
:root:not([data-theme="dark"]) .tt-hero-overlay {
  background: linear-gradient(
    135deg, 
    rgba(255, 255, 255, 0.7) 0%, 
    rgba(255, 255, 255, 0.6) 30%,
    rgba(255, 255, 255, 0.5) 70%,
    rgba(255, 255, 255, 0.6) 100%
  );
}

.tt-hero-pattern {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(255, 130, 1, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(127, 179, 196, 0.06) 0%, transparent 50%);
  opacity: 0.6;
  pointer-events: none;
}

.tt-hero-content-wrapper {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
  width: 100%;
  box-sizing: border-box;
}

/* Content-Only Layout */
.tt-hero-content-only {
  grid-template-columns: 1fr;
  max-width: 900px;
  text-align: center;
  justify-items: center;
}

/* Ensure proper centering on all screens */
.tt-hero-content-wrapper > * {
  position: relative;
}

.tt-hero-content {
  position: relative;
  z-index: 2;
  font-family: "Cairo", var(--font-arabic);
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.tt-hero-content-only .tt-hero-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tt-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(255, 130, 1, 0.15);
  margin-bottom: 20px;
  border: 2px solid rgba(255, 130, 1, 0.3);
  border-radius: 50px;
  margin-bottom: 24px;
  font-weight: 700;
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  animation: fadeInDown 0.8s ease-out;
}

.tt-hero-badge i {
  color: #ff8201;
  font-size: 1.1em;
}

.tt-hero-title {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  animation: fadeInUp 0.9s ease-out 0.1s both;
}

.tt-hero-title-main {
  font-size: clamp(3.5rem, 8vw, 6rem);
  color: #ff8201;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -1px;
  text-shadow: 
    0 0 20px rgba(255, 130, 1, 0.6),
    0 0 40px rgba(255, 130, 1, 0.4),
    0 8px 32px rgba(255, 130, 1, 0.4), 
    0 4px 16px rgba(0, 0, 0, 0.3);
  display: block;
  position: relative;
  animation: titleGlow 3s ease-in-out infinite;
  background: linear-gradient(135deg, #ff8201 0%, #ff9a33 50%, #ffb366 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 100%;
  animation: titleShimmer 4s ease-in-out infinite, titleGlow 3s ease-in-out infinite;
}

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

@keyframes titleGlow {
  0%, 100% {
    filter: drop-shadow(0 0 10px rgba(255, 130, 1, 0.5));
  }
  50% {
    filter: drop-shadow(0 0 20px rgba(255, 130, 1, 0.8));
  }
}

[data-theme="dark"] .tt-hero-title-main {
  text-shadow: 
    0 0 25px rgba(255, 130, 1, 0.7),
    0 0 50px rgba(255, 130, 1, 0.5),
    0 8px 32px rgba(255, 130, 1, 0.5), 
    0 4px 16px rgba(0, 0, 0, 0.5);
}

[data-theme="light"] .tt-hero-title-main,
:root:not([data-theme="dark"]) .tt-hero-title-main {
  text-shadow: 
    0 0 15px rgba(255, 130, 1, 0.4),
    0 4px 16px rgba(255, 130, 1, 0.3), 
    0 2px 8px rgba(30, 58, 95, 0.2);
}

.tt-hero-title-sub {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: rgba(255, 255, 255, 0.95);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 2px;
  display: block;
}

.tt-hero-headline {
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  margin: 0 0 25px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.98);
  line-height: 1.4;
  animation: fadeInUp 0.9s ease-out 0.2s both;
  text-shadow: 
    0 0 15px rgba(255, 255, 255, 0.3),
    0 4px 20px rgba(0, 0, 0, 0.4), 
    0 2px 8px rgba(0, 0, 0, 0.3);
  position: relative;
  letter-spacing: 0.5px;
  max-width: 800px;
}

.tt-hero-content-only .tt-hero-headline {
  margin: 0 auto 25px;
}

[data-theme="dark"] .tt-hero-headline {
  text-shadow: 
    0 0 20px rgba(255, 255, 255, 0.2),
    0 4px 20px rgba(0, 0, 0, 0.6), 
    0 2px 8px rgba(0, 0, 0, 0.4);
}

[data-theme="light"] .tt-hero-headline,
:root:not([data-theme="dark"]) .tt-hero-headline {
  text-shadow: 
    0 0 10px rgba(255, 255, 255, 0.5),
    0 2px 12px rgba(255, 255, 255, 0.8), 
    0 1px 4px rgba(30, 58, 95, 0.2);
}

.tt-hero-desc {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 40px;
  max-width: 700px;
  animation: fadeInUp 0.9s ease-out 0.3s both;
}

.tt-hero-content-only .tt-hero-desc {
  margin: 0 auto 40px;
  max-width: 800px;
}

.tt-hero-buttons {
  margin-top: 40px;
  margin-bottom: 50px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  animation: fadeInUp 0.9s ease-out 0.4s both;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.tt-hero-content-only .tt-hero-buttons {
  justify-content: center;
  margin: 40px auto 50px;
  max-width: 100%;
}

.tt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 800;
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  margin: 0;
  min-width: fit-content;
  white-space: nowrap;
}

.tt-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tt-btn:hover::before {
  opacity: 1;
}

.tt-btn-primary {
  background: linear-gradient(135deg, #ff8201 0%, #ff9a33 100%);
  color: #0b0b0b;
  box-shadow: 
    0 0 20px rgba(255, 130, 1, 0.5),
    0 12px 40px rgba(255, 130, 1, 0.35);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tt-btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tt-btn-primary::after {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, rgba(255, 130, 1, 0.8), rgba(255, 154, 51, 0.6));
  border-radius: inherit;
  opacity: 0;
  z-index: -1;
  filter: blur(10px);
  transition: opacity 0.3s ease;
}

.tt-btn-primary:hover::before {
  opacity: 1;
}

.tt-btn-primary:hover::after {
  opacity: 1;
}

.tt-btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 
    0 0 30px rgba(255, 130, 1, 0.7),
    0 16px 50px rgba(255, 130, 1, 0.45);
}

.tt-btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 130, 1, 0.5);
  color: #ff8201;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 15px rgba(255, 130, 1, 0.2);
}

.tt-btn-secondary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 130, 1, 0.1) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tt-btn-secondary:hover::before {
  opacity: 1;
}

.tt-btn-secondary:hover {
  background: rgba(255, 130, 1, 0.15);
  border-color: #ff8201;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 
    0 0 25px rgba(255, 130, 1, 0.4),
    0 12px 40px rgba(255, 130, 1, 0.25);
}

.tt-hero-features {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  animation: fadeInUp 0.9s ease-out 0.5s both;
  max-width: 600px;
  width: 100%;
}

.tt-hero-content-only .tt-hero-features {
  margin: 0 auto;
  max-width: 700px;
}

.tt-hero-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 130, 1, 0.2);
  border-radius: 12px;
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.tt-hero-feature-item:hover {
  background: rgba(255, 130, 1, 0.12);
  border-color: rgba(255, 130, 1, 0.4);
  transform: translateX(4px);
}

.tt-hero-feature-item i {
  color: #ff8201;
  font-size: 1.1em;
}

/* Hero Visual - Products Showcase - Redesigned */
.tt-hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 500px;
  animation: fadeInUp 0.9s ease-out 0.3s both;
  transform: translateZ(0);
  perspective: 1200px;
}

.tt-hero-products-showcase {
  position: relative;
  width: 100%;
  max-width: 550px;
  height: 550px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
  align-items: center;
  justify-items: center;
  transform: translateZ(0);
}

/* Product Showcase Cards with Real Images - Tech Style */
.tt-hero-product-showcase-card {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
  animation: floatCard 8s ease-in-out infinite;
  box-shadow: 
    0 0 20px rgba(255, 130, 1, 0.2),
    0 16px 48px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 130, 1, 0.2);
}

.tt-hero-product-showcase-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 130, 1, 0.1) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
  pointer-events: none;
}

.tt-hero-product-showcase-card:hover {
  transform: translateY(-12px) scale(1.03) rotateY(2deg);
  box-shadow: 
    0 0 40px rgba(255, 130, 1, 0.5),
    0 24px 64px rgba(255, 130, 1, 0.35);
  border-color: rgba(255, 130, 1, 0.6);
  z-index: 10;
}

.tt-hero-product-showcase-card:hover::before {
  opacity: 1;
}

.tt-hero-product-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 24px;
}

.tt-hero-product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s ease;
  filter: brightness(0.85) contrast(1.1) saturate(1.1);
}

[data-theme="dark"] .tt-hero-product-image {
  filter: brightness(0.75) contrast(1.15) saturate(1.15);
}

[data-theme="light"] .tt-hero-product-image,
:root:not([data-theme="dark"]) .tt-hero-product-image {
  filter: brightness(0.9) contrast(1.05) saturate(1.05);
}

.tt-hero-product-showcase-card:hover .tt-hero-product-image {
  transform: scale(1.15);
  filter: brightness(0.95) contrast(1.2) saturate(1.2);
}

[data-theme="dark"] .tt-hero-product-showcase-card:hover .tt-hero-product-image {
  filter: brightness(0.85) contrast(1.25) saturate(1.25);
}

/* Overlay Card on Image */
.tt-hero-product-overlay-card {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(
    to top,
    rgba(15, 36, 57, 0.95) 0%,
    rgba(15, 36, 57, 0.85) 50%,
    rgba(15, 36, 57, 0.7) 80%,
    transparent 100%
  );
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transform: translateY(0);
  transition: all 0.4s ease;
}

[data-theme="dark"] .tt-hero-product-overlay-card {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.75) 50%,
    rgba(0, 0, 0, 0.6) 80%,
    transparent 100%
  );
}

[data-theme="light"] .tt-hero-product-overlay-card,
:root:not([data-theme="dark"]) .tt-hero-product-overlay-card {
  background: linear-gradient(
    to top,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 255, 255, 0.85) 50%,
    rgba(255, 255, 255, 0.7) 80%,
    transparent 100%
  );
}

.tt-hero-product-showcase-card:hover .tt-hero-product-overlay-card {
  transform: translateY(-5px);
  padding-bottom: 24px;
}

.tt-hero-product-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, #ff8201 0%, #ff9a33 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #0b0b0b;
  box-shadow: 
    0 0 20px rgba(255, 130, 1, 0.6),
    0 8px 24px rgba(255, 130, 1, 0.5);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateZ(0);
  position: relative;
}

.tt-hero-product-icon::after {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, rgba(255, 130, 1, 0.8), rgba(255, 154, 51, 0.6));
  border-radius: inherit;
  opacity: 0;
  z-index: -1;
  filter: blur(8px);
  transition: opacity 0.3s ease;
}

.tt-hero-product-showcase-card:hover .tt-hero-product-icon {
  transform: rotate(8deg) scale(1.15);
  box-shadow: 
    0 0 30px rgba(255, 130, 1, 0.8),
    0 12px 32px rgba(255, 130, 1, 0.6);
}

.tt-hero-product-showcase-card:hover .tt-hero-product-icon::after {
  opacity: 1;
}

.tt-hero-product-label {
  font-size: clamp(0.95rem, 1.3vw, 1.15rem);
  font-weight: 800;
  color: rgba(255, 255, 255, 0.98);
  text-align: center;
  font-family: var(--font-arabic);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

[data-theme="dark"] .tt-hero-product-label {
  color: rgba(255, 255, 255, 0.98);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

[data-theme="light"] .tt-hero-product-label,
:root:not([data-theme="dark"]) .tt-hero-product-label {
  color: var(--text-primary);
  text-shadow: 0 2px 8px rgba(255, 255, 255, 0.8);
}

.tt-hero-product-showcase-card:hover .tt-hero-product-label {
  color: #ff8201;
  transform: translateY(-2px);
}

/* Card Positions - Grid Layout */
.tt-hero-product-card-1 {
  grid-column: 1;
  grid-row: 1;
  animation: floatCard 6s ease-in-out infinite;
  animation-delay: 0s;
}

.tt-hero-product-card-2 {
  grid-column: 2;
  grid-row: 1;
  animation: floatCard 7s ease-in-out infinite;
  animation-delay: 0.5s;
}

.tt-hero-product-card-3 {
  grid-column: 1;
  grid-row: 2;
  animation: floatCard 6.5s ease-in-out infinite;
  animation-delay: 1s;
}

.tt-hero-product-card-4 {
  grid-column: 2;
  grid-row: 2;
  animation: floatCard 7.5s ease-in-out infinite;
  animation-delay: 1.5s;
}

@keyframes floatCard {
  0%, 100% { 
    transform: translateY(0) translateX(0) rotate(0deg) scale(1); 
  }
  33% { 
    transform: translateY(-10px) translateX(2px) rotate(1deg) scale(1.01); 
  }
  66% { 
    transform: translateY(-8px) translateX(-2px) rotate(-0.5deg) scale(1.01); 
  }
}

/* Parallax Effect on Scroll */
@media (prefers-reduced-motion: no-preference) {
  .tt-hero-product-showcase-card {
    will-change: transform;
  }
}

/* Scroll Indicator */
.tt-hero-scroll-indicator {
  display: none;
}

@media (max-width: 768px) {
  .tt-hero-scroll-indicator {
    bottom: 80px;
  }
}

.tt-scroll-mouse {
  width: 30px;
  height: 50px;
  border: 2px solid rgba(255, 130, 1, 0.5);
  border-radius: 20px;
  position: relative;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.tt-scroll-wheel {
  width: 4px;
  height: 10px;
  background: #ff8201;
  border-radius: 2px;
  animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(20px); opacity: 0; }
}

.tt-scroll-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 130, 1, 0.9);
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Light theme support */
[data-theme="light"] .tt-hero,
:root:not([data-theme="dark"]) .tt-hero {
  color: #0b0b0b;
  background: var(--bg-primary);
}

[data-theme="light"] .tt-hero-headline,
[data-theme="light"] .tt-hero-desc,
:root:not([data-theme="dark"]) .tt-hero-headline,
:root:not([data-theme="dark"]) .tt-hero-desc {
  color: rgba(10, 15, 28, 0.95);
  text-shadow: 0 2px 8px rgba(255, 255, 255, 0.8);
}

[data-theme="light"] .tt-hero-title-main,
:root:not([data-theme="dark"]) .tt-hero-title-main {
  color: #ff8201;
  text-shadow: 0 4px 16px rgba(255, 130, 1, 0.3);
}

[data-theme="light"] .tt-hero-title-sub,
:root:not([data-theme="dark"]) .tt-hero-title-sub {
  color: var(--color-primary);
  text-shadow: 0 2px 8px rgba(30, 58, 95, 0.2);
}

[data-theme="light"] .tt-hero-badge,
:root:not([data-theme="dark"]) .tt-hero-badge {
  background: rgba(255, 130, 1, 0.15);
  border-color: rgba(255, 130, 1, 0.3);
  color: var(--text-primary);
  backdrop-filter: blur(10px);
}

[data-theme="light"] .tt-hero-feature-item,
:root:not([data-theme="dark"]) .tt-hero-feature-item {
  background: rgba(30, 58, 95, 0.1);
  border-color: rgba(255, 130, 1, 0.25);
  color: var(--text-primary);
  backdrop-filter: blur(10px);
}

[data-theme="light"] .tt-hero-product-card,
:root:not([data-theme="dark"]) .tt-hero-product-card {
  background: rgba(30, 58, 95, 0.12);
  border-color: rgba(255, 130, 1, 0.3);
  color: var(--text-primary);
  backdrop-filter: blur(15px);
}

/* Dark Mode - Enhanced readability */
[data-theme="dark"] .tt-hero-headline,
[data-theme="dark"] .tt-hero-desc {
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

[data-theme="dark"] .tt-hero-title-main {
  color: #ff8201;
  text-shadow: 0 8px 32px rgba(255, 130, 1, 0.4);
}

[data-theme="dark"] .tt-hero-title-sub {
  color: rgba(255, 255, 255, 0.98);
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] .tt-hero-badge {
  background: rgba(255, 130, 1, 0.2);
  border-color: rgba(255, 130, 1, 0.4);
  color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
}

[data-theme="dark"] .tt-hero-feature-item {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 130, 1, 0.3);
  color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}

[data-theme="dark"] .tt-hero-product-card {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 130, 1, 0.35);
  color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(15px);
}

/* Responsive Design */
@media (max-width: 980px) {
  .tt-hero-content-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
    padding: 0 var(--spacing-md);
  }

  .tt-hero-content-only {
    max-width: 100%;
  }

  .tt-hero-content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .tt-hero-content-only .tt-hero-content {
    text-align: center;
  }

  .tt-hero-desc {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .tt-hero-buttons {
    justify-content: center;
    width: 100%;
    margin-top: 35px;
    margin-bottom: 45px;
    gap: 18px;
  }

  .tt-hero-features {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }

  .tt-hero-visual {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
  }

  .tt-hero-products-showcase {
    max-width: 400px;
    height: 400px;
    margin: 0 auto;
    gap: 16px;
  }

  .tt-hero-product-showcase-card {
    border-radius: 20px;
  }

  .tt-hero-product-overlay-card {
    padding: 16px;
  }

  .tt-hero-product-icon {
    width: 55px;
    height: 55px;
    font-size: 1.6rem;
  }

  .tt-hero-product-label {
    font-size: clamp(0.9rem, 2vw, 1rem);
  }
}

@media (max-width: 768px) {
  .tt-hero {
    padding: clamp(90px, 10vh, 120px) 0 clamp(50px, 6vh, 80px);
    min-height: 90vh;
  }

  .tt-hero-slider-controls {
    bottom: 20px;
    gap: 15px;
  }

  .tt-hero-slider-prev,
  .tt-hero-slider-next {
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }

  .tt-hero-slider-dot {
    width: 10px;
    height: 10px;
  }

  .tt-hero-slider-dot.active {
    width: 28px;
  }

  .tt-hero-content-wrapper {
    gap: 40px;
    padding: 0 var(--spacing-md);
    grid-template-columns: 1fr;
  }

  .tt-hero-visual {
    order: -1;
    margin-bottom: 20px;
  }

  .tt-hero-title-main {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }

  .tt-hero-title-sub {
    font-size: clamp(1.4rem, 5vw, 2rem);
  }

  .tt-hero-headline {
    font-size: clamp(1.2rem, 4vw, 1.6rem);
  }

  .tt-hero-desc {
    font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  }

  .tt-hero-buttons {
    flex-direction: column;
    gap: 14px;
    margin-top: 30px;
    margin-bottom: 40px;
    width: 100%;
  }

  .tt-btn {
    width: 100%;
    max-width: 100%;
    justify-content: center;
    padding: 14px 32px;
  }

  .tt-hero-visual {
    min-height: 350px;
    order: -1;
    margin-bottom: 30px;
  }

  .tt-hero-products-showcase {
    max-width: 350px;
    height: 350px;
    margin: 0 auto;
    gap: 14px;
  }

  .tt-hero-product-showcase-card {
    border-radius: 18px;
  }

  .tt-hero-product-overlay-card {
    padding: 14px;
  }

  .tt-hero-product-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .tt-hero-product-label {
    font-size: clamp(0.85rem, 2.5vw, 0.95rem);
  }
}

@media (max-width: 480px) {
  .tt-hero {
    min-height: 85vh;
    padding: clamp(80px, 8vh, 100px) 0 clamp(40px, 5vh, 60px);
  }

  .tt-hero-content-wrapper {
    gap: 30px;
    padding: 0 var(--spacing-sm);
  }

  .tt-hero-slider-controls {
    bottom: 15px;
    gap: 12px;
  }

  .tt-hero-slider-prev,
  .tt-hero-slider-next {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }

  .tt-hero-slider-dot {
    width: 8px;
    height: 8px;
  }

  .tt-hero-slider-dot.active {
    width: 24px;
  }

  .tt-hero-badge {
    padding: 8px 16px;
    font-size: 0.85rem;
  }

  .tt-hero-title-main {
    font-size: clamp(2rem, 12vw, 3rem);
  }

  .tt-hero-title-sub {
    font-size: clamp(1.2rem, 6vw, 1.6rem);
  }

  .tt-hero-headline {
    font-size: clamp(1.1rem, 5vw, 1.4rem);
    margin-bottom: 16px;
  }

  .tt-hero-desc {
    font-size: clamp(0.9rem, 3vw, 1rem);
    margin-bottom: 24px;
  }

  .tt-hero-buttons {
    margin-top: 28px;
    margin-bottom: 35px;
    gap: 12px;
  }

  .tt-btn {
    padding: 14px 28px;
    font-size: 0.95rem;
    width: 100%;
    max-width: 100%;
  }

  .tt-hero-features {
    margin-top: 30px;
    gap: 10px;
  }

  .tt-hero-feature-item {
    padding: 10px 14px;
    font-size: 0.9rem;
  }

  .tt-hero-products-showcase {
    max-width: 300px;
    height: 300px;
    margin: 0 auto;
    position: relative;
  }

  .tt-hero-product-card {
    padding: 14px;
    font-size: 0.85rem;
    position: absolute;
  }

  .tt-hero-product-card-1 {
    top: 2%;
    left: 2%;
    width: 46%;
    height: 46%;
  }

  .tt-hero-product-card-2 {
    top: 2%;
    right: 2%;
    width: 46%;
    height: 46%;
  }

  .tt-hero-product-card-3 {
    bottom: 2%;
    left: 2%;
    width: 46%;
    height: 46%;
  }

  .tt-hero-product-card-4 {
    bottom: 2%;
    right: 2%;
    width: 46%;
    height: 46%;
  }

  .tt-hero-product-icon {
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
  }

  .tt-hero-scroll-indicator {
    bottom: 20px;
  }

  .tt-scroll-mouse {
    width: 24px;
    height: 40px;
  }
}

/* ============================================
   About Section (current markup) - single-file override
   ============================================ */

/* ============================================
   About Section - Modern Corporate-Tech Design
   ============================================ */
.tt-about-section {
  position: relative;
  padding: clamp(80px, 10vw, 120px) 0;
  background: var(--bg-secondary);
  overflow: hidden;
}

[data-theme="dark"] .tt-about-section {
  background: var(--bg-secondary-dark);
}

/* Tech Background Pattern */
.tt-about-tech-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.03;
  background-image: 
    linear-gradient(rgba(255, 130, 1, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 130, 1, 0.1) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.tt-about-wrapper {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(50px, 6vw, 80px);
  align-items: start;
  max-width: 1400px;
  margin: 0 auto;
}

/* Left: Content */
.tt-about-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  animation: fadeInUp 0.8s ease-out 0.1s both;
}

.tt-about-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(255, 130, 1, 0.12);
  border: 1px solid rgba(255, 130, 1, 0.25);
  border-radius: 50px;
  color: #ff8201;
  font-weight: 700;
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  width: fit-content;
  backdrop-filter: blur(10px);
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

[data-theme="dark"] .tt-about-badge {
  background: rgba(255, 130, 1, 0.15);
  border-color: rgba(255, 130, 1, 0.3);
}

.tt-about-badge i {
  font-size: 1rem;
}

.tt-about-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1.2;
  margin: 0;
  animation: fadeInUp 0.8s ease-out 0.3s both;
  background: linear-gradient(135deg, var(--color-primary) 0%, #ff8201 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

[data-theme="dark"] .tt-about-title {
  background: linear-gradient(135deg, var(--color-blue-light) 0%, #ff8201 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tt-about-overview {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.9;
  color: var(--text-secondary);
  margin: 0;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

[data-theme="dark"] .tt-about-overview {
  color: rgba(255, 255, 255, 0.85);
}

/* Mission & Vision Cards */
.tt-about-mv-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 10px;
  animation: fadeInUp 0.8s ease-out 0.5s both;
}

.tt-about-mv-card {
  padding: 24px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 130, 1, 0.15);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

[data-theme="dark"] .tt-about-mv-card {
  background: rgba(15, 36, 57, 0.5);
  border-color: rgba(255, 130, 1, 0.2);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.tt-about-mv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #ff8201 0%, #ff9a33 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tt-about-mv-card:hover::before {
  opacity: 1;
}

.tt-about-mv-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 130, 1, 0.4);
  box-shadow: 0 16px 40px rgba(255, 130, 1, 0.15);
}

[data-theme="dark"] .tt-about-mv-card:hover {
  box-shadow: 0 16px 40px rgba(255, 130, 1, 0.2);
}

.tt-about-mv-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, #ff8201 0%, #ff9a33 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0b0b0b;
  font-size: 1.5rem;
  margin-bottom: 16px;
  box-shadow: 0 8px 20px rgba(255, 130, 1, 0.3);
  transition: all 0.3s ease;
}

.tt-about-mv-card:hover .tt-about-mv-icon {
  transform: rotate(5deg) scale(1.1);
  box-shadow: 0 12px 28px rgba(255, 130, 1, 0.4);
}

.tt-about-mv-title {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 800;
  color: var(--text-primary);
  margin: 0 0 12px 0;
  font-family: var(--font-arabic);
}

[data-theme="dark"] .tt-about-mv-title {
  color: rgba(255, 255, 255, 0.95);
}

.tt-about-mv-text {
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

[data-theme="dark"] .tt-about-mv-text {
  color: rgba(255, 255, 255, 0.8);
}

/* Expertise Section */
.tt-about-expertise {
  margin-top: 20px;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.tt-about-expertise-title {
  font-size: clamp(1.3rem, 2.2vw, 1.6rem);
  font-weight: 800;
  color: var(--text-primary);
  margin: 0 0 20px 0;
  font-family: var(--font-arabic);
}

[data-theme="dark"] .tt-about-expertise-title {
  color: rgba(255, 255, 255, 0.95);
}

.tt-about-expertise-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.tt-about-expertise-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 130, 1, 0.15);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  cursor: pointer;
}

[data-theme="dark"] .tt-about-expertise-item {
  background: rgba(15, 36, 57, 0.4);
  border-color: rgba(255, 130, 1, 0.2);
}

.tt-about-expertise-item:hover {
  transform: translateX(5px);
  border-color: rgba(255, 130, 1, 0.4);
  background: rgba(255, 130, 1, 0.08);
  box-shadow: 0 8px 20px rgba(255, 130, 1, 0.15);
}

[data-theme="dark"] .tt-about-expertise-item:hover {
  background: rgba(255, 130, 1, 0.12);
}

.tt-about-expertise-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, #ff8201 0%, #ff9a33 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0b0b0b;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(255, 130, 1, 0.3);
  transition: all 0.3s ease;
}

.tt-about-expertise-item:hover .tt-about-expertise-icon {
  transform: rotate(5deg) scale(1.1);
  box-shadow: 0 8px 20px rgba(255, 130, 1, 0.4);
}

.tt-about-expertise-item span {
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  font-weight: 700;
  color: var(--text-primary);
  font-family: var(--font-arabic);
}

[data-theme="dark"] .tt-about-expertise-item span {
  color: rgba(255, 255, 255, 0.9);
}

/* Right: Visuals */
.tt-about-visuals {
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.tt-about-visual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  height: 100%;
  min-height: 500px;
}

.tt-about-visual-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 130, 1, 0.15);
}

[data-theme="dark"] .tt-about-visual-card {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 130, 1, 0.2);
}

.tt-about-visual-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 48px rgba(255, 130, 1, 0.25);
  border-color: rgba(255, 130, 1, 0.4);
}

[data-theme="dark"] .tt-about-visual-card:hover {
  box-shadow: 0 20px 48px rgba(255, 130, 1, 0.3);
}

.tt-about-visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  filter: brightness(0.9) contrast(1.05);
}

[data-theme="dark"] .tt-about-visual-img {
  filter: brightness(0.8) contrast(1.1);
}

.tt-about-visual-card:hover .tt-about-visual-img {
  transform: scale(1.15);
  filter: brightness(1) contrast(1.1);
}

.tt-about-visual-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(
    to top,
    rgba(15, 36, 57, 0.95) 0%,
    rgba(15, 36, 57, 0.8) 50%,
    transparent 100%
  );
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transform: translateY(0);
  transition: all 0.4s ease;
}

[data-theme="dark"] .tt-about-visual-overlay {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.75) 50%,
    transparent 100%
  );
}

.tt-about-visual-overlay i {
  font-size: 1.8rem;
  color: #ff8201;
  text-shadow: 0 0 20px rgba(255, 130, 1, 0.5);
}

.tt-about-visual-overlay span {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  font-weight: 800;
  color: rgba(255, 255, 255, 0.98);
  text-align: center;
  font-family: var(--font-arabic);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.tt-about-visual-card:hover .tt-about-visual-overlay {
  transform: translateY(-5px);
  padding-bottom: 24px;
}

/* Icon Card (4th card) */
.tt-about-visual-icon-card {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 30px;
  background: linear-gradient(135deg, rgba(255, 130, 1, 0.15) 0%, rgba(255, 154, 51, 0.1) 100%);
  border: 2px solid rgba(255, 130, 1, 0.3);
  transition: all 0.4s ease;
}

[data-theme="dark"] .tt-about-visual-icon-card {
  background: linear-gradient(135deg, rgba(255, 130, 1, 0.2) 0%, rgba(255, 154, 51, 0.15) 100%);
  border-color: rgba(255, 130, 1, 0.4);
}

.tt-about-visual-card:hover .tt-about-visual-icon-card {
  background: linear-gradient(135deg, rgba(255, 130, 1, 0.25) 0%, rgba(255, 154, 51, 0.2) 100%);
  border-color: rgba(255, 130, 1, 0.5);
}

.tt-about-visual-icon-card i {
  font-size: 3.5rem;
  color: #ff8201;
  text-shadow: 0 0 30px rgba(255, 130, 1, 0.6);
  transition: all 0.3s ease;
}

.tt-about-visual-card:hover .tt-about-visual-icon-card i {
  transform: scale(1.15) rotate(5deg);
  text-shadow: 0 0 40px rgba(255, 130, 1, 0.8);
}

.tt-about-visual-icon-card span {
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  font-weight: 800;
  color: var(--text-primary);
  text-align: center;
  font-family: var(--font-arabic);
}

[data-theme="dark"] .tt-about-visual-icon-card span {
  color: rgba(255, 255, 255, 0.95);
}

/* Card Positions */
.tt-about-visual-card-1 {
  grid-column: 1;
  grid-row: 1;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.tt-about-visual-card-2 {
  grid-column: 2;
  grid-row: 1;
  animation: fadeInUp 0.8s ease-out 0.5s both;
}

.tt-about-visual-card-3 {
  grid-column: 1;
  grid-row: 2;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.tt-about-visual-card-4 {
  grid-column: 2;
  grid-row: 2;
  animation: fadeInUp 0.8s ease-out 0.7s both;
}

/* Responsive Design */
@media (max-width: 992px) {
  .tt-about-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .tt-about-visuals {
    order: -1;
  }

  .tt-about-visual-grid {
    min-height: 400px;
  }

  .tt-about-mv-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .tt-about-section {
    padding: clamp(60px, 8vw, 90px) 0;
  }

  .tt-about-wrapper {
    gap: 40px;
  }

  .tt-about-visual-grid {
    min-height: 350px;
    gap: 12px;
  }

  .tt-about-expertise-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .tt-about-section {
    padding: clamp(50px, 6vw, 70px) 0;
  }

  .tt-about-wrapper {
    gap: 30px;
  }

  .tt-about-visual-grid {
    min-height: 300px;
    gap: 10px;
  }

  .tt-about-mv-card {
    padding: 20px;
  }

  .tt-about-expertise-item {
    padding: 12px 16px;
  }
}

/* ============================================
   Contact Section — أزرق مشع وتنسيق محتوى
   ============================================ */

.tt-contact {
  position: relative;
  padding: clamp(64px, 8vw, 110px) 0;
  background:
    radial-gradient(900px 500px at 20% 0%, rgba(0, 191, 255, 0.08), transparent 60%),
    radial-gradient(900px 500px at 80% 10%, rgba(0, 191, 255, 0.06), transparent 60%),
    var(--bg-secondary);
  overflow: hidden;
}

.tt-contact::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.04;
  background-image:
    linear-gradient(rgba(0, 191, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 191, 255, 0.12) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

[data-theme="dark"] .tt-contact {
  background:
    radial-gradient(900px 500px at 20% 0%, rgba(0, 191, 255, 0.12), transparent 60%),
    radial-gradient(900px 500px at 80% 10%, rgba(0, 191, 255, 0.08), transparent 60%),
    var(--bg-secondary-dark);
}

[data-theme="dark"] .tt-contact::before {
  opacity: 0.06;
}

.tt-contact .section-header {
  margin-bottom: clamp(40px, 5vw, 56px);
  position: relative;
  z-index: 1;
}

.tt-contact .section-title {
  color: var(--text-primary);
  position: relative;
}

.tt-contact .section-title::after {
  content: '';
  display: block;
  width: 64px;
  height: 4px;
  margin: 14px auto 0;
  border-radius: 2px;
  background: linear-gradient(90deg, #00bfff, #5bcfff);
  box-shadow: 0 0 12px rgba(0, 191, 255, 0.5);
}

[data-theme="dark"] .tt-contact .section-title {
  color: var(--text-primary-dark);
}

.tt-contact .section-subtitle {
  color: var(--text-secondary);
  max-width: 520px;
  margin: 12px auto 0;
  line-height: 1.7;
}

[data-theme="dark"] .tt-contact .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

.tt-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(28px, 4vw, 40px);
  align-items: stretch;
  position: relative;
  z-index: 1;
}

.tt-contact-cards {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: clamp(16px, 2vw, 24px);
  min-height: 0;
  height: 100%;
}

.tt-contact-card {
  display: flex;
  gap: 16px;
  padding: 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid rgba(0, 191, 255, 0.2);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06), 0 0 20px rgba(0, 191, 255, 0.06);
  backdrop-filter: blur(10px);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.25s ease;
}

.tt-contact-card:hover {
  border-color: rgba(0, 191, 255, 0.45);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08), 0 0 28px rgba(0, 191, 255, 0.15);
  transform: translateY(-2px);
}

[data-theme="dark"] .tt-contact-card {
  background: rgba(15, 36, 57, 0.75);
  border-color: rgba(0, 191, 255, 0.25);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.25), 0 0 24px rgba(0, 191, 255, 0.08);
}

[data-theme="dark"] .tt-contact-card:hover {
  border-color: rgba(0, 191, 255, 0.5);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.3), 0 0 32px rgba(0, 191, 255, 0.2);
}

[dir="rtl"] .tt-contact-card {
  flex-direction: row-reverse;
}

.tt-contact-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #00a8e8 0%, #00bfff 50%, #5bcfff 100%);
  box-shadow: 0 8px 24px rgba(0, 191, 255, 0.35), 0 0 16px rgba(0, 191, 255, 0.2);
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: box-shadow 0.3s ease, transform 0.25s ease;
}

.tt-contact-card:hover .tt-contact-icon {
  box-shadow: 0 10px 28px rgba(0, 191, 255, 0.45), 0 0 24px rgba(0, 191, 255, 0.3);
  transform: scale(1.05);
}

.tt-contact-icon i {
  color: #fff;
  font-size: 1.25rem;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.tt-contact-text {
  min-width: 0;
}

.tt-contact-label {
  font-family: var(--font-arabic);
  font-weight: 800;
  color: var(--text-primary);
  font-size: 0.95rem;
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}

[data-theme="dark"] .tt-contact-label {
  color: var(--text-primary-dark);
}

.tt-contact-value {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 1.02rem;
  line-height: 1.55;
  transition: color 0.2s ease;
}

[data-theme="dark"] .tt-contact-value {
  color: rgba(255, 255, 255, 0.88);
}

.tt-contact-value:hover {
  color: #0088cc;
}

[data-theme="dark"] .tt-contact-value:hover {
  color: var(--color-blue-light);
}

.tt-contact-form {
  padding: clamp(24px, 3vw, 32px);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  border: 2px solid rgba(0, 191, 255, 0.2);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.07), 0 0 24px rgba(0, 191, 255, 0.08);
  backdrop-filter: blur(10px);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.tt-contact-form:focus-within {
  border-color: rgba(0, 191, 255, 0.4);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.08), 0 0 32px rgba(0, 191, 255, 0.12);
}

[data-theme="dark"] .tt-contact-form {
  background: rgba(15, 36, 57, 0.78);
  border-color: rgba(0, 191, 255, 0.28);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28), 0 0 28px rgba(0, 191, 255, 0.1);
}

[data-theme="dark"] .tt-contact-form:focus-within {
  border-color: rgba(0, 191, 255, 0.5);
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.32), 0 0 36px rgba(0, 191, 255, 0.18);
}

.tt-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.tt-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.tt-field:last-of-type {
  margin-bottom: 20px;
}

.tt-field label {
  font-family: var(--font-arabic);
  font-weight: 700;
  color: var(--text-primary);
  font-size: 0.95rem;
}

[data-theme="dark"] .tt-field label {
  color: var(--text-primary-dark);
}

.tt-field input,
.tt-field textarea {
  width: 100%;
  border-radius: 14px;
  padding: 14px 16px;
  border: 2px solid rgba(0, 191, 255, 0.18);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text-primary);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  font-family: var(--font-arabic);
  font-size: 1rem;
}

.tt-field textarea {
  min-height: 120px;
  resize: vertical;
}

[data-theme="dark"] .tt-field input,
[data-theme="dark"] .tt-field textarea {
  background: rgba(0, 0, 0, 0.15);
  border-color: rgba(0, 191, 255, 0.25);
  color: var(--text-primary-dark);
}

.tt-contact-form .tt-field input:focus,
.tt-contact-form .tt-field textarea:focus {
  border-color: rgba(0, 191, 255, 0.6);
  box-shadow: 0 0 0 4px rgba(0, 191, 255, 0.15);
}

.tt-contact-submit {
  width: 100%;
  margin-top: 8px;
  padding: 16px 24px;
  font-size: 1.05rem;
  font-weight: 800;
  border-radius: 14px;
  background: linear-gradient(135deg, #00a8e8 0%, #00bfff 50%, #5bcfff 100%);
  border: 2px solid rgba(0, 191, 255, 0.5);
  color: #fff;
  box-shadow: 0 8px 24px rgba(0, 191, 255, 0.35), 0 0 20px rgba(0, 191, 255, 0.2);
  transition: transform 0.25s ease, box-shadow 0.3s ease;
}

.tt-contact-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 191, 255, 0.45), 0 0 28px rgba(0, 191, 255, 0.25);
}

.tt-form-status {
  margin-top: 12px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  min-height: 1.2em;
  text-align: center;
}

[data-theme="dark"] .tt-form-status {
  color: rgba(255, 255, 255, 0.82);
}

.tt-products-more {
  margin-top: 26px;
  display: flex;
  justify-content: center;
}

.tt-products-more .tt-btn-secondary {
  background: rgba(0, 191, 255, 0.12);
  color: #00bfff;
  border: 2px solid rgba(0, 191, 255, 0.4);
  box-shadow: 0 4px 20px rgba(0, 191, 255, 0.2);
}

.tt-products-more .tt-btn-secondary:hover {
  background: rgba(0, 191, 255, 0.25);
  color: #fff;
  border-color: #00bfff;
  box-shadow: 0 8px 28px rgba(0, 191, 255, 0.4);
}

/* ============================================
   Mission/Vision Stats (KPI cards) - responsive
   ============================================ */

.tt-kpis {
  margin: 0 auto var(--spacing-xxl);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.tt-kpi-card {
  border-radius: 18px;
  padding: 16px 14px;
  text-align: center;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(30, 58, 95, 0.12);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(10px);
}

[data-theme="dark"] .tt-kpi-card {
  background: rgba(15, 36, 57, 0.60);
  border-color: rgba(127, 179, 196, 0.22);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

.tt-kpi-value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  font-family: var(--font-english);
  color: var(--color-primary);
  font-weight: 800;
  font-size: clamp(1.6rem, 3.6vw, 2.4rem);
  margin-bottom: 6px;
}

[data-theme="dark"] .tt-kpi-value {
  color: var(--color-blue-light);
}

.tt-kpi-suffix {
  font-size: 0.9em;
  color: var(--color-accent);
  font-weight: 800;
}

.tt-kpi-label {
  font-family: var(--font-arabic);
  color: var(--text-secondary);
  font-weight: 700;
  font-size: 1rem;
}

[data-theme="dark"] .tt-kpi-label {
  color: rgba(255, 255, 255, 0.86);
}

@media (max-width: 992px) {
  .tt-kpis {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .tt-kpis {
    grid-template-columns: 1fr;
  }
}

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

@media (max-width: 560px) {
  .tt-form-row {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   Logo Section (fixed height 700px)
   ============================================ */

.tt-logo-section {
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

[data-theme="dark"] .tt-logo-section {
  background-color: var(--bg-secondary-dark);
}


.tt-logo-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 300px at 50% 40%, rgba(30, 58, 95, 0.18), transparent 60%),
    radial-gradient(700px 300px at 50% 70%, rgba(255, 130, 1, 0.10), transparent 60%);
  pointer-events: none;
}


.tt-logo-section-inner {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tt-logo-section-img {
  width: min(520px, 70vw);
  height: auto;
  filter: drop-shadow(0 24px 60px rgba(0, 0, 0, 0.22));
}

[data-theme="dark"] .tt-logo-section-img {
  filter: drop-shadow(0 24px 60px rgba(0, 0, 0, 0.45));
}

@media (max-width: 520px) {
  .tt-logo-section {
    height: 320px;
  }
  .tt-logo-section-img {
    width: min(360px, 78vw);
  }
}

/* ============================================
   Hero Section - Swiper Background Design
   ============================================ */
.tt-hero-swiper {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    padding-top: 80px;
}

.tt-hero-bg-swiper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.tt-hero-bg-swiper .swiper-slide {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.tt-hero-slide-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.tt-hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 8s ease-out;
}

.tt-hero-bg-swiper .swiper-slide-active .tt-hero-bg-img {
    transform: scale(1.05);
}

.tt-hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(15, 36, 57, 0.75) 0%,
        rgba(30, 58, 95, 0.65) 30%,
        rgba(0, 0, 0, 0.5) 70%,
        rgba(15, 36, 57, 0.7) 100%
    );
    z-index: 1;
}

[data-theme="dark"] .tt-hero-slide-overlay {
    background: linear-gradient(
        135deg,
        rgba(15, 36, 57, 0.85) 0%,
        rgba(30, 58, 95, 0.75) 30%,
        rgba(0, 0, 0, 0.6) 70%,
        rgba(15, 36, 57, 0.8) 100%
    );
}

/* Content */
.tt-hero-content-slide {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-out 0.3s, transform 1s ease-out 0.3s;
}

.tt-hero-bg-swiper .swiper-slide-active .tt-hero-content-slide {
    opacity: 1;
    transform: translateY(0);
}

/* Company Name - Large Title */
.tt-hero-company-name {
    font-family: 'Cairo', var(--font-arabic);
    font-size: clamp(3.5rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 1.1;
    margin: 0 0 20px;
    color: #ffffff;
    text-shadow: 
        0 0 40px rgba(255, 130, 1, 0.4),
        0 4px 25px rgba(0, 0, 0, 0.6);
    letter-spacing: -1px;
}

/* Company Description */
.tt-hero-company-desc {
    font-family: 'Cairo', var(--font-arabic);
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 600;
    line-height: 1.6;
    margin: 0 0 32px;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Title */
.tt-hero-title-slide {
    font-family: 'Cairo', var(--font-arabic);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.3;
    margin: 0 0 24px;
    color: #ffffff;
    text-shadow: 
        0 0 30px rgba(255, 130, 1, 0.3),
        0 4px 20px rgba(0, 0, 0, 0.5);
}

/* Text */
.tt-hero-text-slide {
    font-family: 'Cairo', var(--font-arabic);
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Pagination */
.tt-hero-pagination {
    position: absolute;
    bottom: 40px !important;
    left: 50% !important;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
    justify-content: center;
}

.tt-hero-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 130, 1, 0.5);
    opacity: 1;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.tt-hero-pagination .swiper-pagination-bullet-active {
    background: #ff8201;
    border-color: #ff8201;
    width: 32px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(255, 130, 1, 0.4);
}

/* Navigation */
.tt-hero-next,
.tt-hero-prev {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 130, 1, 0.3);
    border-radius: 50%;
    color: #ffffff;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    z-index: 10;
}

.tt-hero-next::after,
.tt-hero-prev::after {
    font-size: 18px;
    font-weight: bold;
}

.tt-hero-next:hover,
.tt-hero-prev:hover {
    background: rgba(255, 130, 1, 0.3);
    border-color: #ff8201;
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
    .tt-hero-swiper {
        min-height: 90vh;
        padding-top: 100px;
    }
    
    .tt-hero-bg-swiper .swiper-slide {
        height: 90vh;
    }
    
    .tt-hero-content-slide {
        height: 90vh;
        padding: 0 var(--spacing-md);
    }
    
    .tt-hero-company-name {
        font-size: clamp(2.5rem, 10vw, 4.5rem);
        margin-bottom: 16px;
    }
    
    .tt-hero-company-desc {
        font-size: clamp(1rem, 5vw, 1.3rem);
        margin-bottom: 24px;
    }
    
    .tt-hero-title-slide {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
        margin-bottom: 20px;
    }
    
    .tt-hero-text-slide {
        font-size: clamp(0.95rem, 4vw, 1.1rem);
    }
    
    .tt-hero-next,
    .tt-hero-prev {
        display: none;
    }
    
    .tt-hero-pagination {
        bottom: 20px !important;
    }
}

/* ============================================
   About Section - New Professional Design
   ============================================ */
.tt-about-section-new {
    position: relative;
    padding: clamp(100px, 12vw, 140px) 0;
    background: var(--bg-primary);
    overflow: hidden;
}

[data-theme="dark"] .tt-about-section-new {
    background: var(--bg-primary-dark);
}

/* Section Header */
.tt-about-header-new {
    text-align: center;
    margin-bottom: clamp(60px, 8vw, 80px);
}

.tt-about-title-new {
    font-family: 'Cairo', var(--font-arabic);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    color: var(--color-primary);
    margin: 0 0 20px;
    position: relative;
    display: inline-block;
}

[data-theme="dark"] .tt-about-title-new {
    color: var(--color-blue-light);
}

.tt-about-title-line {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
    margin: 0 auto;
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(255, 130, 1, 0.5);
}

/* Main Grid */
.tt-about-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
}

/* Images Gallery */
.tt-about-images-new {
    position: relative;
}

.tt-about-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    height: 100%;
}

.tt-about-image-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 1;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.tt-about-img-1 {
    grid-column: 1;
    grid-row: 1;
}

.tt-about-img-2 {
    grid-column: 2;
    grid-row: 1;
}

.tt-about-img-3 {
    grid-column: 1;
    grid-row: 2;
}

.tt-about-img-4 {
    grid-column: 2;
    grid-row: 2;
}

.tt-about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.tt-about-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(30, 58, 95, 0.3) 0%,
        rgba(255, 130, 1, 0.2) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}

.tt-about-image-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(255, 130, 1, 0.25);
}

.tt-about-image-item:hover .tt-about-img {
    transform: scale(1.1);
}

.tt-about-image-item:hover .tt-about-img-overlay {
    opacity: 1;
}

[data-theme="dark"] .tt-about-image-item {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .tt-about-image-item:hover {
    box-shadow: 0 25px 60px rgba(0, 191, 255, 0.3);
}

[data-theme="dark"] .tt-about-img-overlay {
    background: linear-gradient(
        135deg,
        rgba(0, 191, 255, 0.3) 0%,
        rgba(30, 58, 95, 0.2) 100%
    );
}

/* Content */
.tt-about-content-new {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.tt-about-intro {
    margin-bottom: 20px;
}

.tt-about-description-new {
    font-family: 'Cairo', var(--font-arabic);
    font-size: clamp(1rem, 1.6vw, 1.2rem);
    line-height: 1.9;
    color: var(--text-secondary);
    margin: 0;
    text-align: justify;
}

[data-theme="dark"] .tt-about-description-new {
    color: rgba(255, 255, 255, 0.85);
}

/* Mission Card */
.tt-about-mission-card {
    padding: 32px;
    border-radius: 24px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%,
        rgba(255, 255, 255, 0.9) 100%
    );
    border: 2px solid rgba(255, 130, 1, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .tt-about-mission-card {
    background: linear-gradient(135deg, 
        rgba(15, 36, 57, 0.8) 0%,
        rgba(30, 58, 95, 0.7) 100%
    );
    border-color: rgba(0, 191, 255, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.tt-about-mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--color-accent) 0%, var(--color-primary) 100%);
    transition: width 0.4s ease;
}

.tt-about-mission-card:hover::before {
    width: 100%;
    opacity: 0.05;
}

.tt-about-mission-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-accent);
    box-shadow: 0 30px 70px rgba(255, 130, 1, 0.2);
}

[data-theme="dark"] .tt-about-mission-card:hover {
    border-color: rgba(0, 191, 255, 0.5);
    box-shadow: 0 30px 70px rgba(0, 191, 255, 0.2);
}

.tt-about-mission-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.tt-about-mission-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--color-accent) 0%, #ff9a33 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.8rem;
    box-shadow: 0 10px 30px rgba(255, 130, 1, 0.4);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.tt-about-mission-card:hover .tt-about-mission-icon {
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 15px 40px rgba(255, 130, 1, 0.5);
}

[data-theme="dark"] .tt-about-mission-icon {
    background: linear-gradient(135deg, rgba(0, 191, 255, 0.9) 0%, rgba(30, 58, 95, 0.9) 100%);
    box-shadow: 0 10px 30px rgba(0, 191, 255, 0.4);
}

.tt-about-mission-title {
    font-family: 'Cairo', var(--font-arabic);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--color-primary);
    margin: 0;
    position: relative;
    z-index: 1;
}

[data-theme="dark"] .tt-about-mission-title {
    color: var(--color-blue-light);
}

.tt-about-mission-text {
    font-family: 'Cairo', var(--font-arabic);
    font-size: clamp(1rem, 1.4vw, 1.1rem);
    line-height: 1.8;
    color: var(--text-secondary);
    margin: 0;
    position: relative;
    z-index: 1;
}

[data-theme="dark"] .tt-about-mission-text {
    color: rgba(255, 255, 255, 0.85);
}

/* Brand Partners */
.tt-about-brands {
    margin-top: 20px;
    position: relative;
    z-index: 1;
}

.tt-about-brands-label {
    font-family: 'Cairo', var(--font-arabic);
    font-size: clamp(0.95rem, 1.3vw, 1.05rem);
    font-weight: 600;
    color: var(--text-secondary);
    margin: 0 0 16px;
}

[data-theme="dark"] .tt-about-brands-label {
    color: rgba(255, 255, 255, 0.7);
}

.tt-about-brands-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tt-about-brand-tag {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: rgba(255, 130, 1, 0.1);
    border: 2px solid rgba(255, 130, 1, 0.3);
    border-radius: 50px;
    font-family: 'Cairo', var(--font-arabic);
    font-size: clamp(0.9rem, 1.2vw, 1rem);
    font-weight: 600;
    color: var(--color-accent);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.tt-about-brand-tag:hover {
    background: rgba(255, 130, 1, 0.2);
    border-color: var(--color-accent);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 130, 1, 0.3);
}

[data-theme="dark"] .tt-about-brand-tag {
    background: rgba(0, 191, 255, 0.1);
    border-color: rgba(0, 191, 255, 0.3);
    color: rgba(0, 191, 255, 1);
}

[data-theme="dark"] .tt-about-brand-tag:hover {
    background: rgba(0, 191, 255, 0.2);
    border-color: rgba(0, 191, 255, 0.5);
    box-shadow: 0 8px 20px rgba(0, 191, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .tt-about-main-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .tt-about-images-new {
        order: 2;
    }
    
    .tt-about-content-new {
        order: 1;
    }
}

@media (max-width: 768px) {
    .tt-about-section-new {
        padding: clamp(60px, 10vw, 100px) 0;
    }
    
    .tt-about-image-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }
    
    .tt-about-img-1,
    .tt-about-img-2,
    .tt-about-img-3,
    .tt-about-img-4 {
        grid-column: auto;
        grid-row: auto;
    }

    /* تنسيق أجمل لعلامات tt-about-brands-list على الموبايل: علامتان فوق وعلامتان تحت */
    .tt-about-brands-list {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 12px;
        column-gap: 12px;
        justify-items: center;
    }

    .tt-about-brand-tag {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
    
    .tt-about-img-2 {
        /* يتبع التدفق الطبيعي للشبكة */
    }
    
    .tt-about-img-3 {
        /* يتبع التدفق الطبيعي للشبكة */
    }
    
    .tt-about-img-4 {
        /* يتبع التدفق الطبيعي للشبكة */
    }
    
    .tt-about-mission-card {
        padding: 24px;
    }
    
    .tt-about-mission-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .tt-about-brands-list {
        gap: 8px;
    }
}

/* ============================================
   Modern Hero Section - Tech Design
   ============================================ */
.tt-hero-modern {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

/* Modern Content Wrapper */
.tt-hero-content-modern {
    position: relative;
    z-index: 3;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    width: 100%;
    text-align: center;
}

/* Tech Overlay for Modern Design */
.tt-hero-modern .tt-hero-overlay-tech {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        135deg,
        rgba(15, 36, 57, 0.75) 0%,
        rgba(30, 58, 95, 0.65) 30%,
        rgba(0, 0, 0, 0.5) 70%,
        rgba(15, 36, 57, 0.7) 100%
    );
    pointer-events: none;
}

[data-theme="dark"] .tt-hero-modern .tt-hero-overlay-tech {
    background: linear-gradient(
        135deg,
        rgba(15, 36, 57, 0.85) 0%,
        rgba(30, 58, 95, 0.75) 30%,
        rgba(0, 0, 0, 0.6) 70%,
        rgba(15, 36, 57, 0.8) 100%
    );
}

/* Modern Title */
.tt-hero-title-modern {
    font-family: 'Cairo', var(--font-arabic);
    font-size: clamp(3.5rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 1.1;
    margin: 0 0 2rem;
    color: #ffffff;
    text-shadow: 
        0 0 30px rgba(255, 130, 1, 0.3),
        0 4px 20px rgba(0, 0, 0, 0.5);
    animation: fadeInUpModern 1s ease-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.tt-hero-title-modern .tt-hero-title-main {
    display: block;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -2px;
}

.tt-hero-title-modern .tt-hero-title-sub {
    display: block;
    background: linear-gradient(135deg, var(--color-accent) 0%, rgba(255, 130, 1, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 0.85em;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
}

.tt-hero-title-modern .tt-hero-title-sub::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
    box-shadow: 0 0 20px rgba(255, 130, 1, 0.6);
}

/* Modern Headline */
.tt-hero-headline-modern {
    font-family: 'Cairo', var(--font-arabic);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 2rem;
    line-height: 1.6;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
    animation: fadeInUpModern 1s ease-out 0.2s both;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Modern Description */
.tt-hero-desc-modern {
    font-family: 'Cairo', var(--font-arabic);
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin: 0 auto;
    max-width: 900px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInUpModern 1s ease-out 0.4s both;
}

/* Tech Grid Pattern Overlay */
.tt-hero-modern::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
    pointer-events: none;
}

/* Tech Glow Effect */
.tt-hero-modern::after {
    content: '';
    position: absolute;
    top: 20%;
    left: 10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 130, 1, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    z-index: 1;
    pointer-events: none;
    animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .tt-hero-modern {
        min-height: 90vh;
        padding-top: 100px;
    }
    
    .tt-hero-title-modern {
        font-size: clamp(2.5rem, 10vw, 4rem);
        margin-bottom: 1.5rem;
    }
    
    .tt-hero-headline-modern {
        font-size: clamp(1.2rem, 5vw, 1.6rem);
        margin-bottom: 1.5rem;
    }
    
    .tt-hero-desc-modern {
        font-size: clamp(0.95rem, 4vw, 1.1rem);
        padding: 0 1rem;
    }
    
    .tt-hero-content-modern {
        padding: 0 var(--spacing-md);
    }
}

/* ============================================
   Futuristic Hero Section - Tiger Technology
   ============================================ */
.tt-hero-futuristic {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0a1628 0%, #1a2a3a 50%, #0f1b2e 100%);
    padding-top: 80px;
}

/* Futuristic Background Layers */
.tt-hero-futuristic-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.tt-hero-tech-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(0, 191, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 191, 255, 0.1) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.3;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

.tt-hero-tech-lines {
    position: absolute;
    inset: 0;
    opacity: 0.4;
}

.tt-hero-tech-lines::before,
.tt-hero-tech-lines::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, transparent, rgba(0, 191, 255, 0.6), transparent);
    box-shadow: 0 0 20px rgba(0, 191, 255, 0.4);
    animation: linePulse 3s ease-in-out infinite;
}

.tt-hero-tech-lines::before {
    left: 20%;
    animation-delay: 0s;
}

.tt-hero-tech-lines::after {
    right: 20%;
    animation-delay: 1.5s;
}

@keyframes linePulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

.tt-hero-tech-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 191, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(30, 58, 95, 0.2) 0%, transparent 50%);
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Hero Scenes Slider */
.tt-hero-scenes-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    z-index: 1;
}

.tt-hero-scene {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1), visibility 1.5s;
    z-index: 1;
}

.tt-hero-scene.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.tt-hero-scene-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.95) 0%, rgba(26, 42, 58, 0.9) 100%);
}

.tt-hero-scene-overlay {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(0, 191, 255, 0.1) 0%, transparent 60%),
        radial-gradient(circle at 70% 60%, rgba(30, 58, 95, 0.15) 0%, transparent 60%);
}

/* Scene Content */
.tt-hero-scene-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
    min-height: 100vh;
    padding: 120px var(--spacing-lg) 80px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Product Display */
.tt-hero-scene-left {
    position: relative;
}

.tt-hero-scene-product {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

.tt-hero-product-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(0, 191, 255, 0.3) 0%, transparent 70%);
    border-radius: 20px;
    filter: blur(40px);
    animation: productGlow 3s ease-in-out infinite;
    z-index: 0;
}

@keyframes productGlow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

.tt-hero-product-img {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 20px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(0, 191, 255, 0.3),
        inset 0 0 60px rgba(0, 191, 255, 0.1);
    filter: brightness(1.1) contrast(1.05);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.tt-hero-scene.is-active .tt-hero-product-img {
    animation: productFloat 6s ease-in-out infinite;
}

@keyframes productFloat {
    0%, 100% { transform: translateY(0) rotateY(0deg); }
    50% { transform: translateY(-20px) rotateY(5deg); }
}

.tt-hero-product-screen {
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    width: 45%;
    height: 30%;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 
        inset 0 0 30px rgba(0, 191, 255, 0.2),
        0 0 20px rgba(0, 191, 255, 0.3);
    animation: screenPulse 3s ease-in-out infinite;
}

@keyframes screenPulse {
    0%, 100% { box-shadow: inset 0 0 30px rgba(0, 191, 255, 0.2), 0 0 20px rgba(0, 191, 255, 0.3); }
    50% { box-shadow: inset 0 0 40px rgba(0, 191, 255, 0.4), 0 0 30px rgba(0, 191, 255, 0.5); }
}

.tt-hero-screen-logo {
    max-width: 80%;
    max-height: 80%;
    filter: drop-shadow(0 0 20px rgba(0, 191, 255, 0.6));
    animation: logoGlow 2s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(0, 191, 255, 0.6)); }
    50% { filter: drop-shadow(0 0 30px rgba(0, 191, 255, 0.9)); }
}

/* Scene Text Content */
.tt-hero-scene-right {
    position: relative;
    z-index: 2;
}

.tt-hero-scene-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(0, 191, 255, 0.15);
    border: 1px solid rgba(0, 191, 255, 0.3);
    border-radius: 30px;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(0, 191, 255, 1);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 20px rgba(0, 191, 255, 0.2);
    animation: fadeInUp 0.8s ease-out;
}

.tt-hero-scene-title {
    font-family: 'Cairo', var(--font-arabic);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.2;
    margin: 0 0 24px;
    color: #ffffff;
    text-shadow: 
        0 0 30px rgba(0, 191, 255, 0.4),
        0 4px 20px rgba(0, 0, 0, 0.6);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.tt-hero-scene-text {
    font-family: 'Cairo', var(--font-arabic);
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    max-width: 600px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* Slider Controls - Futuristic */
.tt-hero-slider-controls-futuristic {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.tt-hero-slider-controls-futuristic .tt-hero-slider-dots {
    display: flex;
    gap: 12px;
    align-items: center;
}

.tt-hero-slider-controls-futuristic .tt-hero-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(0, 191, 255, 0.5);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    backdrop-filter: blur(10px);
    position: relative;
}

.tt-hero-slider-controls-futuristic .tt-hero-slider-dot::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px solid rgba(0, 191, 255, 0.3);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.tt-hero-slider-controls-futuristic .tt-hero-slider-dot:hover::before {
    opacity: 1;
}

.tt-hero-slider-controls-futuristic .tt-hero-slider-dot.active {
    background: rgba(0, 191, 255, 1);
    border-color: rgba(0, 191, 255, 1);
    width: 40px;
    border-radius: 6px;
    box-shadow: 
        0 0 20px rgba(0, 191, 255, 0.6),
        0 4px 15px rgba(0, 191, 255, 0.4);
}

.tt-hero-slider-controls-futuristic .tt-hero-slider-dot:hover {
    background: rgba(0, 191, 255, 0.6);
    transform: scale(1.2);
}

/* Tech Particles */
.tt-hero-tech-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.tt-hero-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(0, 191, 255, 0.8);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 191, 255, 0.8);
    animation: particleFloat 8s ease-in-out infinite;
}

.tt-hero-particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.tt-hero-particle:nth-child(2) {
    top: 40%;
    right: 15%;
    animation-delay: 2s;
    width: 6px;
    height: 6px;
}

.tt-hero-particle:nth-child(3) {
    top: 60%;
    left: 20%;
    animation-delay: 4s;
}

.tt-hero-particle:nth-child(4) {
    top: 80%;
    right: 25%;
    animation-delay: 1s;
    width: 5px;
    height: 5px;
}

.tt-hero-particle:nth-child(5) {
    top: 30%;
    left: 50%;
    animation-delay: 3s;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(30px, -40px) scale(1.2);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .tt-hero-scene-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .tt-hero-scene-left {
        order: 2;
    }
    
    .tt-hero-scene-right {
        order: 1;
    }
    
    .tt-hero-product-img {
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .tt-hero-futuristic {
        min-height: 90vh;
        padding-top: 100px;
    }
    
    .tt-hero-scene-content {
        padding: 100px var(--spacing-md) 60px;
    }
    
    .tt-hero-product-img {
        max-width: 100%;
    }
    
    .tt-hero-scene-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .tt-hero-scene-text {
        font-size: clamp(0.95rem, 4vw, 1.1rem);
    }
    
    .tt-hero-slider-controls-futuristic {
        bottom: 30px;
  }
}

/* ============================================
   Mission & Vision Section - New Professional Design
   ============================================ */
.tt-mission-vision-new {
    position: relative;
    padding: clamp(100px, 12vw, 140px) 0;
    background: var(--bg-secondary);
    overflow: hidden;
}

[data-theme="dark"] .tt-mission-vision-new {
    background: var(--bg-secondary-dark);
}

/* Section Header */
.tt-mv-header-new {
    text-align: center;
    margin-bottom: clamp(60px, 8vw, 80px);
}

.tt-mv-title-new {
    font-family: 'Cairo', var(--font-arabic);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    color: var(--color-primary);
    margin: 0 0 20px;
    position: relative;
    display: inline-block;
}

[data-theme="dark"] .tt-mv-title-new {
    color: var(--color-blue-light);
}

.tt-mv-title-underline {
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
    margin: 0 auto;
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(255, 130, 1, 0.5);
}

/* Statistics Section */
/* Statistics Section - Standalone */
.tt-stats-section {
    height: 350px;
    width: 100%;
    background-image: url('../images/e2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 3px solid #00bfff;
    border-radius: 0;
    margin: clamp(20px, 3vw, 30px) 0 0 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 191, 255, 0.6), 
                0 0 40px rgba(0, 191, 255, 0.4),
                0 0 60px rgba(0, 191, 255, 0.2);
}

.tt-stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

[data-theme="dark"] .tt-stats-section::before {
    background: rgba(0, 0, 0, 0.5);
}

.tt-stats-container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: row;
    gap: clamp(15px, 2.5vw, 25px);
    max-width: 1400px;
    margin: 0 auto;
    padding: clamp(20px, 3vw, 40px) clamp(20px, 3vw, 40px);
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    align-content: center;
}

.tt-stats-section .tt-mv-stat-card {
    background: transparent;
    backdrop-filter: none;
    border: 2px solid rgba(255, 130, 1, 0.6);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    flex: 1;
    min-width: 200px;
    max-width: 280px;
    min-height: 120px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: clamp(20px, 2.5vw, 35px) clamp(15px, 2vw, 20px);
    text-align: center;
    margin: clamp(15px, 2vw, 25px) 5px;
}

/* الأيقونة في التخطيط الأفقي */
.tt-stats-section .tt-mv-stat-icon {
    margin: 0;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
}

/* محتوى الكارد (الرقم والتسمية) في عمود */
.tt-stats-section .tt-mv-stat-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex: 1;
}

/* تعديل القيمة والتسمية */
.tt-stats-section .tt-mv-stat-value {
    margin-bottom: 0;
    flex-direction: row;
    align-items: baseline;
    justify-content: center;
}

.tt-stats-section .tt-mv-stat-label {
    margin-top: 0;
    text-align: center;
}

.tt-stats-section .tt-mv-stat-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

[data-theme="dark"] .tt-stats-section .tt-mv-stat-card {
    background: transparent;
    border-color: rgba(0, 191, 255, 0.6);
}

/* إبراز الأرقام والأيقونات في قسم الإحصائيات */
.tt-stats-section .tt-mv-stat-icon {
    background: linear-gradient(135deg, var(--color-accent) 0%, #ff9a33 100%);
    box-shadow: 0 10px 30px rgba(255, 130, 1, 0.5);
}

[data-theme="dark"] .tt-stats-section .tt-mv-stat-icon {
    background: linear-gradient(135deg, rgba(0, 191, 255, 0.9) 0%, rgba(30, 58, 95, 0.9) 100%);
    box-shadow: 0 10px 30px rgba(0, 191, 255, 0.5);
}

.tt-stats-section .tt-mv-stat-number {
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    font-weight: 800;
    direction: ltr;
    unicode-bidi: embed;
    font-variant-numeric: normal;
}

[data-theme="dark"] .tt-stats-section .tt-mv-stat-number {
    color: var(--color-blue-light);
    text-shadow: 0 2px 10px rgba(0, 191, 255, 0.3);
}

.tt-stats-section .tt-mv-stat-label {
    color: #ffffff;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    font-weight: 600;
}

[data-theme="dark"] .tt-stats-section .tt-mv-stat-label {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

.tt-stats-section .tt-mv-stat-suffix {
    color: var(--color-accent);
    text-shadow: 0 2px 10px rgba(255, 130, 1, 0.5);
}

[data-theme="dark"] .tt-stats-section .tt-mv-stat-suffix {
    color: rgba(0, 191, 255, 1);
    text-shadow: 0 2px 10px rgba(0, 191, 255, 0.5);
}

.tt-mv-stats-new {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(20px, 3vw, 30px);
    margin-bottom: clamp(60px, 8vw, 80px);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.tt-mv-stat-card {
    position: relative;
    padding: clamp(30px, 4vw, 40px) clamp(20px, 3vw, 30px);
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%,
        rgba(255, 255, 255, 0.9) 100%
    );
    border: 2px solid rgba(255, 130, 1, 0.2);
    border-radius: 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

[data-theme="dark"] .tt-mv-stat-card {
    background: linear-gradient(135deg, 
        rgba(15, 36, 57, 0.8) 0%,
        rgba(30, 58, 95, 0.7) 100%
    );
    border-color: rgba(0, 191, 255, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.tt-mv-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-accent) 0%, var(--color-primary) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.tt-mv-stat-card:hover::before {
    transform: scaleX(1);
}

.tt-mv-stat-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-accent);
    box-shadow: 0 25px 60px rgba(255, 130, 1, 0.25);
}

[data-theme="dark"] .tt-mv-stat-card:hover {
    border-color: rgba(0, 191, 255, 0.5);
    box-shadow: 0 25px 60px rgba(0, 191, 255, 0.3);
}

/* Hover effects لقسم الإحصائيات */
.tt-stats-section .tt-mv-stat-card:hover {
    border-color: var(--color-accent);
    border-width: 3px;
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 25px 60px rgba(255, 130, 1, 0.4);
}

[data-theme="dark"] .tt-stats-section .tt-mv-stat-card:hover {
    border-color: rgba(0, 191, 255, 0.8);
    box-shadow: 0 25px 60px rgba(0, 191, 255, 0.4);
}

.tt-mv-stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--color-accent) 0%, #ff9a33 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.8rem;
    box-shadow: 0 10px 30px rgba(255, 130, 1, 0.4);
    transition: all 0.4s ease;
}

.tt-mv-stat-card:hover .tt-mv-stat-icon {
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 15px 40px rgba(255, 130, 1, 0.5);
}

[data-theme="dark"] .tt-mv-stat-icon {
    background: linear-gradient(135deg, rgba(0, 191, 255, 0.9) 0%, rgba(30, 58, 95, 0.9) 100%);
    box-shadow: 0 10px 30px rgba(0, 191, 255, 0.4);
}

[data-theme="dark"] .tt-mv-stat-card:hover .tt-mv-stat-icon {
    box-shadow: 0 15px 40px rgba(0, 191, 255, 0.5);
}

.tt-mv-stat-value {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 12px;
}

.tt-mv-stat-number {
    font-family: 'Cairo', var(--font-arabic);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--color-primary);
    line-height: 1;
    display: inline-block;
    transition: transform 0.3s ease;
}

.tt-mv-stat-card:hover .tt-mv-stat-number {
    transform: scale(1.1);
    color: var(--color-accent);
}

[data-theme="dark"] .tt-mv-stat-number {
    color: var(--color-blue-light);
}

[data-theme="dark"] .tt-mv-stat-card:hover .tt-mv-stat-number {
    color: rgba(0, 191, 255, 1);
}

.tt-mv-stat-suffix {
    font-family: 'Cairo', var(--font-arabic);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--color-accent);
}

[data-theme="dark"] .tt-mv-stat-suffix {
    color: rgba(0, 191, 255, 1);
}

.tt-mv-stat-label {
    font-family: 'Cairo', var(--font-arabic);
    font-size: clamp(0.95rem, 1.3vw, 1.1rem);
    font-weight: 600;
    color: var(--text-secondary);
}

[data-theme="dark"] .tt-mv-stat-label {
    color: rgba(255, 255, 255, 0.8);
}

/* Mission & Vision Items */
.tt-mv-item-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
    margin-bottom: clamp(60px, 8vw, 80px);
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.tt-mv-item-new:last-child {
    margin-bottom: 0;
}

.tt-mv-vision {
    direction: rtl;
}

[dir="ltr"] .tt-mv-vision {
    direction: ltr;
}

/* Image Section */
.tt-mv-item-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tt-mv-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.tt-mv-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(30, 58, 95, 0.3) 0%,
        rgba(255, 130, 1, 0.2) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}

.tt-mv-item-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(255, 130, 1, 0.3);
}

.tt-mv-item-image:hover .tt-mv-img {
    transform: scale(1.1);
}

.tt-mv-item-image:hover .tt-mv-img-overlay {
    opacity: 1;
}

[data-theme="dark"] .tt-mv-item-image {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] .tt-mv-item-image:hover {
    box-shadow: 0 30px 80px rgba(0, 191, 255, 0.3);
}

[data-theme="dark"] .tt-mv-img-overlay {
    background: linear-gradient(
        135deg,
        rgba(0, 191, 255, 0.3) 0%,
        rgba(30, 58, 95, 0.2) 100%
    );
}

/* Content Section */
.tt-mv-item-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.tt-mv-item-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: rgba(255, 130, 1, 0.12);
    border: 2px solid rgba(255, 130, 1, 0.3);
    border-radius: 50px;
    color: var(--color-accent);
    font-family: 'Cairo', var(--font-arabic);
    font-weight: 700;
    font-size: clamp(0.9rem, 1.2vw, 1rem);
    width: fit-content;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.tt-mv-item-badge i {
    font-size: 1rem;
}

.tt-mv-item-badge:hover {
    background: rgba(255, 130, 1, 0.2);
    border-color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 130, 1, 0.3);
}

.tt-mv-badge-vision {
    background: rgba(0, 191, 255, 0.12);
    border-color: rgba(0, 191, 255, 0.3);
    color: rgba(0, 191, 255, 1);
}

[data-theme="dark"] .tt-mv-badge-vision {
    background: rgba(0, 191, 255, 0.15);
    border-color: rgba(0, 191, 255, 0.4);
}

.tt-mv-badge-vision:hover {
    background: rgba(0, 191, 255, 0.2);
    border-color: rgba(0, 191, 255, 0.5);
    box-shadow: 0 8px 20px rgba(0, 191, 255, 0.3);
}

.tt-mv-item-title {
    font-family: 'Cairo', var(--font-arabic);
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--color-primary);
    margin: 0;
    line-height: 1.3;
}

[data-theme="dark"] .tt-mv-item-title {
    color: var(--color-blue-light);
}

.tt-mv-item-text {
    font-family: 'Cairo', var(--font-arabic);
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    line-height: 1.9;
    color: var(--text-secondary);
    margin: 0;
}

[data-theme="dark"] .tt-mv-item-text {
    color: rgba(255, 255, 255, 0.85);
}

.tt-mv-item-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tt-mv-list-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: 'Cairo', var(--font-arabic);
    font-size: clamp(0.95rem, 1.3vw, 1.05rem);
    color: var(--text-secondary);
    line-height: 1.6;
}

.tt-mv-list-item i {
    color: var(--color-accent);
    font-size: 1.1rem;
    margin-top: 4px;
    flex-shrink: 0;
}

[data-theme="dark"] .tt-mv-list-item {
    color: rgba(255, 255, 255, 0.8);
}

[data-theme="dark"] .tt-mv-list-item i {
    color: rgba(0, 191, 255, 1);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .tt-mv-stats-new {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tt-mv-item-new {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .tt-mv-item-image {
        order: 2;
    }
    
    .tt-mv-item-content {
        order: 1;
    }
    
    .tt-mv-vision .tt-mv-item-image {
        order: 2;
    }
    
    .tt-mv-vision .tt-mv-item-content {
        order: 1;
    }
}

/* Statistics Section Responsive */
@media (max-width: 1024px) {
    .tt-stats-container {
        gap: clamp(12px, 2vw, 20px);
        padding: clamp(15px, 2.5vw, 30px) clamp(15px, 2vw, 25px);
    }
    
    .tt-stats-section .tt-mv-stat-card {
        min-width: 180px;
        max-width: 240px;
        padding: clamp(12px, 1.8vw, 20px) clamp(12px, 1.5vw, 18px);
        gap: 12px;
    }
}

@media (max-width: 768px) {
    .tt-stats-section {
        height: auto;
        min-height: 350px;
        padding: 25px 0;
    }
    
    .tt-stats-container {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 15px;
        padding: 20px 15px;
        justify-content: center;
    }
    
    .tt-stats-section .tt-mv-stat-card {
        flex: 0 1 calc(50% - 10px);
        min-width: 160px;
        max-width: 220px;
        min-height: 110px;
        padding: 20px 15px;
        gap: 12px;
        margin: 0;
    }
    
    .tt-stats-section .tt-mv-stat-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .tt-stats-section {
        padding: 20px 0;
    }
    
    .tt-stats-container {
        flex-direction: column;
        gap: 12px;
        padding: 15px 10px;
    }
    
    .tt-stats-section .tt-mv-stat-card {
        flex: 1 1 100%;
        min-width: 100%;
        max-width: 100%;
        min-height: 100px;
        padding: 18px 12px;
        gap: 10px;
    }
    
    .tt-stats-section .tt-mv-stat-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .tt-stats-section .tt-mv-stat-number {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }
    
    .tt-stats-section .tt-mv-stat-label {
        font-size: clamp(0.85rem, 3vw, 1rem);
    }
}

@media (max-width: 768px) {
    .tt-mission-vision-new {
        padding: clamp(60px, 10vw, 100px) 0;
    }
    
    .tt-mv-stats-new {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .tt-mv-item-new {
        gap: 30px;
        margin-bottom: 50px;
    }
    
    .tt-mv-stat-card {
        padding: 24px 20px;
    }
    
    .tt-mv-stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin-bottom: 16px;
    }
}

