/* =====================================================
   Bin Hamoodah Company LLC - Modern Website Styles
   ===================================================== */

/* Google Fonts - Inter, Plus Jakarta Sans, Tajawal (Arabic), Noto Sans SC (Chinese) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Tajawal:wght@300;400;500;700;800&family=Noto+Sans+SC:wght@300;400;500;700&display=swap');

/* CSS Variables */
:root {
    /* Colors */
    --primary: #1a56db;
    --primary-dark: #1e429f;
    --primary-light: #3f83f8;
    --secondary: #0f172a;
    --accent: #f59e0b;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;

    /* Neutrals */
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;

    /* Typography */
    --font-primary: 'Plus Jakarta Sans', 'Inter', sans-serif;
    --font-secondary: 'Inter', sans-serif;
    --font-arabic: 'Tajawal', 'Plus Jakarta Sans', sans-serif;
    --font-chinese: 'Noto Sans SC', 'Plus Jakarta Sans', sans-serif;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-normal: 300ms ease;
    --transition-slow: 500ms ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-700);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Arabic RTL Support */
html[dir="rtl"] body,
body.rtl {
    font-family: var(--font-arabic);
    direction: rtl;
}

html[dir="rtl"] *,
body.rtl * {
    font-family: var(--font-arabic) !important;
}

html[dir="rtl"] h1, html[dir="rtl"] h2, html[dir="rtl"] h3,
html[dir="rtl"] h4, html[dir="rtl"] h5, html[dir="rtl"] h6,
body.rtl h1, body.rtl h2, body.rtl h3,
body.rtl h4, body.rtl h5, body.rtl h6 {
    font-family: var(--font-arabic) !important;
}

html[dir="rtl"] .btn,
body.rtl .btn {
    font-family: var(--font-arabic) !important;
}

/* Remove letter-spacing for Arabic */
html[dir="rtl"] .section-label,
html[dir="rtl"] .about-stat-label,
html[dir="rtl"] .stat-label,
html[dir="rtl"] .hero-label,
html[dir="rtl"] .nav-link,
html[dir="rtl"] .mega-menu-title,
html[dir="rtl"] .mobile-menu-link,
html[dir="rtl"] .mobile-submenu-title,
html[dir="rtl"] .figure-label,
html[dir="rtl"] .figures-subtitle,
body.rtl .section-label,
body.rtl .about-stat-label,
body.rtl .stat-label,
body.rtl .hero-label,
body.rtl .nav-link,
body.rtl .mega-menu-title,
body.rtl .mobile-menu-link,
body.rtl .mobile-submenu-title,
body.rtl .figure-label,
body.rtl .figures-subtitle {
    letter-spacing: 0 !important;
    text-transform: none !important;
}

/* Chinese Support */
body.zh {
    font-family: var(--font-chinese);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--primary-dark);
}

ul, ol {
    list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-900);
    margin-bottom: var(--space-md);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: var(--space-md);
    color: var(--gray-600);
}

.lead {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--gray-600);
}

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.container-narrow {
    max-width: 900px;
}

.container-wide {
    max-width: 1440px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 0.75rem 1.5rem;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1;
    border: 2px solid transparent;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-fast);
    text-decoration: none;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--gray-900);
    border-color: var(--gray-300);
}

.btn-secondary:hover {
    background-color: var(--gray-50);
    border-color: var(--gray-400);
    color: var(--gray-900);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* =====================================================
   HEADER / MEGA MENU NAVIGATION
   ===================================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.4s ease;
}

/* Default header (white background) */
.header:not(.header-transparent) {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(0,0,0,0.05);
}

/* Transparent header for homepage */
.header.header-transparent {
    background-color: transparent;
}

.header.header-transparent .nav-link,
.header.header-transparent .header-search-btn,
.header.header-transparent .menu-toggle span {
    color: white;
}

.header.header-transparent .menu-toggle span {
    background-color: white;
}

.header.header-transparent .logo img {
    filter: brightness(0) invert(1);
}

/* Scrolled state */
.header.scrolled {
    background-color: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0,0,0,0.08);
}

.header.scrolled .nav-link,
.header.scrolled .header-search-btn {
    color: var(--gray-700) !important;
}

.header.scrolled .menu-toggle span {
    background-color: var(--gray-700) !important;
}

.header.scrolled .logo img {
    filter: none !important;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.logo {
    display: flex;
    align-items: center;
    z-index: 1001;
}

.logo img {
    height: 35px;
    width: auto;
    transition: all 0.3s ease;
}

/* Main Navigation */
.nav {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 0;
}

.nav-item {
    position: static;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-700);
    padding: 1.75rem 1rem;
    position: relative;
    transition: all 0.3s ease;
    letter-spacing: 0.01em;
}

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

.nav-link svg {
    width: 12px;
    height: 12px;
    margin-left: 0.35rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.nav-item:hover .nav-link svg {
    transform: rotate(180deg);
}

/* Header Actions (Search, Language) */
.header-actions {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.header-search-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    border-radius: 50%;
    color: var(--gray-700);
    cursor: pointer;
    transition: all 0.3s ease;
}

.header-search-btn:hover {
    background: rgba(0,0,0,0.05);
    color: var(--primary);
}

.header-search-btn svg {
    width: 20px;
    height: 20px;
}

/* Language Selector */
.lang-selector {
    display: flex;
    align-items: center;
    gap: 2px;
    background: rgba(0,0,0,0.05);
    border-radius: 6px;
    padding: 3px;
}

.lang-btn {
    padding: 6px 10px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-600);
    background: transparent;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.lang-btn:hover {
    color: var(--gray-900);
}

.lang-btn.active {
    background: white;
    color: var(--primary);
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.header.header-transparent:not(.scrolled) .lang-selector {
    background: rgba(255,255,255,0.15);
}

.header.header-transparent:not(.scrolled) .lang-btn {
    color: rgba(255,255,255,0.8);
}

.header.header-transparent:not(.scrolled) .lang-btn.active {
    background: white;
    color: var(--primary);
}

/* =====================================================
   MEGA MENU
   ===================================================== */

.mega-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
}

.nav-item:hover .mega-menu,
.mega-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* When mega menu is open, make header white */
.header.header-transparent:has(.nav-item:hover .mega-menu) {
    background-color: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(20px);
}

.header.header-transparent:has(.nav-item:hover .mega-menu) .nav-link,
.header.header-transparent:has(.nav-item:hover .mega-menu) .header-search-btn {
    color: var(--gray-700) !important;
}

.header.header-transparent:has(.nav-item:hover .mega-menu) .lang-selector {
    background: rgba(0,0,0,0.05);
}

.header.header-transparent:has(.nav-item:hover .mega-menu) .lang-btn {
    color: var(--gray-600);
}

.header.header-transparent:has(.nav-item:hover .mega-menu) .lang-btn.active {
    color: var(--primary);
}

.header.header-transparent:has(.nav-item:hover .mega-menu) .logo img {
    filter: none !important;
}

.mega-menu-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem var(--space-xl);
    display: grid;
    gap: 3rem;
}

/* Who We Are - 4 columns */
.mega-menu-who .mega-menu-inner {
    grid-template-columns: 1fr 1fr 1fr 1.2fr;
}

/* What We Do - 3 columns + featured */
.mega-menu-what .mega-menu-inner {
    grid-template-columns: 1fr 1fr 1fr 1.5fr;
}

/* Impact - 3 columns */
.mega-menu-impact .mega-menu-inner {
    grid-template-columns: repeat(3, 1fr) 1.2fr;
}

.mega-menu-column h4 {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--gray-100);
}

.mega-menu-links {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mega-menu-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0;
    color: var(--gray-700);
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.2s ease;
    border-radius: 0.5rem;
}

.mega-menu-link:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.mega-menu-link svg {
    width: 18px;
    height: 18px;
    color: var(--gray-400);
    transition: color 0.2s ease;
}

.mega-menu-link:hover svg {
    color: var(--primary);
}

.mega-menu-link span {
    font-size: 0.8rem;
    color: var(--gray-500);
    font-weight: 400;
    margin-left: auto;
}

/* Mega Menu Featured Card */
.mega-menu-featured {
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--gray-100) 100%);
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.mega-menu-featured img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
}

.mega-menu-featured h5 {
    font-size: 1rem;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.mega-menu-featured p {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.mega-menu-featured .btn-link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
}

.mega-menu-featured .btn-link:hover {
    gap: 0.75rem;
}

/* Industries Grid in Mega Menu */
.mega-menu-industries {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.industry-link-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 0.5rem;
    color: var(--gray-700);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.industry-link-item:hover {
    background: var(--gray-50);
    color: var(--primary);
}

.industry-link-item .icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border-radius: 0.5rem;
    transition: all 0.2s ease;
}

.industry-link-item:hover .icon {
    background: var(--primary);
    color: white;
}

.industry-link-item .icon svg {
    width: 18px;
    height: 18px;
}

/* =====================================================
   SEARCH OVERLAY
   ===================================================== */

.search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 15vh;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-container {
    width: 100%;
    max-width: 700px;
    padding: 0 var(--space-xl);
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.search-overlay.active .search-container {
    transform: translateY(0);
}

.search-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-close:hover {
    background: rgba(255,255,255,0.2);
}

.search-close svg {
    width: 24px;
    height: 24px;
}

.search-input-wrapper {
    position: relative;
}

.search-input {
    width: 100%;
    padding: 1.5rem 1.5rem 1.5rem 4rem;
    font-size: 1.5rem;
    font-weight: 500;
    color: white;
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.search-input::placeholder {
    color: rgba(255,255,255,0.5);
}

.search-input:focus {
    border-color: var(--primary);
    background: rgba(255,255,255,0.15);
}

.search-input-wrapper svg {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    color: rgba(255,255,255,0.5);
}

.search-suggestions {
    margin-top: 2rem;
}

.search-suggestions h4 {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.search-suggestions-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.search-suggestion {
    padding: 0.5rem 1rem;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 2rem;
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-suggestion:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

/* =====================================================
   MOBILE NAVIGATION
   ===================================================== */

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background-color: var(--gray-700);
    transition: all 0.3s ease;
    position: relative;
}

.menu-toggle span:nth-child(1) {
    margin-bottom: 6px;
}

.menu-toggle span:nth-child(3) {
    margin-top: 6px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    z-index: 10001;
    padding: 0;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-nav-item {
    border-bottom: 1px solid var(--gray-100);
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-800);
    transition: color 0.3s ease;
}

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

.mobile-nav-link svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.mobile-nav-item.active .mobile-nav-link svg {
    transform: rotate(180deg);
}

.mobile-submenu {
    display: none;
    padding-bottom: 1rem;
}

.mobile-nav-item.active .mobile-submenu {
    display: block;
}

.mobile-submenu-link {
    display: block;
    padding: 0.75rem 0 0.75rem 1rem;
    font-size: 0.95rem;
    color: var(--gray-600);
    border-left: 2px solid var(--gray-200);
    transition: all 0.3s ease;
}

.mobile-submenu-link:hover {
    color: var(--primary);
    border-left-color: var(--primary);
}

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

.mobile-search {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
}

.mobile-search input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 1rem;
    color: var(--gray-800);
    outline: none;
}

.mobile-search input::placeholder {
    color: var(--gray-400);
}

.mobile-search svg {
    width: 20px;
    height: 20px;
    color: var(--gray-400);
}

.mobile-lang-selector {
    display: flex;
    gap: 0.5rem;
}

.mobile-lang-btn {
    flex: 1;
    padding: 0.75rem;
    text-align: center;
    font-weight: 600;
    color: var(--gray-600);
    background: var(--gray-100);
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.mobile-lang-btn.active {
    background: var(--primary);
    color: white;
}

/* RTL Support for Navigation */
body.rtl .nav-link {
    flex-direction: row-reverse;
}

body.rtl .nav-link svg {
    margin-left: 0;
    margin-right: 0.35rem;
}

body.rtl .mega-menu-link:hover {
    transform: translateX(-5px);
}

body.rtl .mobile-submenu-link {
    padding: 0.75rem 1rem 0.75rem 0;
    border-left: none;
    border-right: 2px solid var(--gray-200);
}

body.rtl .mobile-submenu-link:hover {
    border-right-color: var(--primary);
}

/* New Mega Menu Grid Layout */
.mega-menu-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2.5rem var(--space-xl);
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr) 1.3fr;
    gap: 2.5rem;
}

.mega-menu-grid-industries {
    grid-template-columns: repeat(3, 1fr) 1.3fr;
}

.mega-menu-column {
    min-width: 0;
}

.mega-menu-title {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--gray-100);
}

.mega-menu-links {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mega-menu-links li a {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.6rem 0.5rem;
    color: var(--gray-700);
    border-radius: 0.5rem;
    transition: all 0.2s ease;
    text-decoration: none;
}

.mega-menu-links li a:hover {
    background: var(--gray-50);
    color: var(--primary);
}

.mega-link-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border-radius: 0.5rem;
    color: var(--gray-500);
    transition: all 0.2s ease;
}

.mega-menu-links li a:hover .mega-link-icon {
    background: var(--primary);
    color: white;
}

.mega-menu-links li a span:last-child {
    display: flex;
    flex-direction: column;
}

.mega-menu-links li a span strong {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-800);
    display: block;
    transition: color 0.2s ease;
}

.mega-menu-links li a:hover span strong {
    color: var(--primary);
}

.mega-menu-links li a span small {
    font-size: 0.75rem;
    color: var(--gray-500);
    font-weight: 400;
    margin-top: 2px;
}

/* Mega Menu Featured Card */
.mega-menu-feature {
    min-width: 0;
}

.mega-feature-card {
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--gray-100) 100%);
    border-radius: 1rem;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mega-feature-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    object-position: top center;
}

.mega-feature-content {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.mega-feature-label {
    display: inline-block;
    background: var(--primary);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    margin-bottom: 0.5rem;
    width: fit-content;
}

.mega-feature-content h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.mega-feature-content p {
    font-size: 0.8rem;
    color: var(--gray-600);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.mega-feature-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
    text-decoration: none;
    transition: gap 0.2s ease;
}

.mega-feature-link:hover {
    gap: 0.75rem;
}

/* Search Overlay Additional Styles */
.search-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    text-align: center;
    margin-bottom: 2rem;
}

.search-suggestion-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.search-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.search-tag {
    padding: 0.5rem 1rem;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 2rem;
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.search-tag:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

/* New Mobile Menu Styles */
.mobile-menu-header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--space-lg);
    height: 70px;
    background: white;
    border-bottom: 1px solid var(--gray-100);
    z-index: 2;
}

.mobile-menu-header .logo img {
    height: 32px;
}

.mobile-menu-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border: none;
    border-radius: 50%;
    color: var(--gray-600);
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background: var(--gray-200);
    color: var(--gray-800);
}

.mobile-menu-content {
    padding-bottom: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-nav {
    flex: 1;
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-nav-link {
    display: block;
    padding: 1rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-800);
    border-bottom: 1px solid var(--gray-100);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.mobile-nav-group {
    border-bottom: 1px solid var(--gray-100);
}

.mobile-nav-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-800);
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: color 0.3s ease;
}

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

.mobile-nav-toggle svg {
    transition: transform 0.3s ease;
}

.mobile-nav-group.open .mobile-nav-toggle svg {
    transform: rotate(180deg);
}

.mobile-nav-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-left: 1rem;
}

.mobile-nav-submenu a {
    display: block;
    padding: 0.75rem 0;
    font-size: 0.95rem;
    color: var(--gray-600);
    text-decoration: none;
    border-left: 2px solid var(--gray-200);
    padding-left: 1rem;
    transition: all 0.2s ease;
}

.mobile-nav-submenu a:hover {
    color: var(--primary);
    border-left-color: var(--primary);
}

.mobile-menu-footer {
    padding: var(--space-lg);
    border-top: 1px solid var(--gray-100);
    margin-top: auto;
}

.mobile-contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.mobile-contact-info a {
    font-size: 0.9rem;
    color: var(--gray-600);
    text-decoration: none;
}

.mobile-contact-info a:hover {
    color: var(--primary);
}

/* RTL Support for New Elements */

/* Mega Menu RTL */
body.rtl .mega-menu-grid {
    direction: rtl;
}

body.rtl .mega-menu-title {
    text-align: right;
}

body.rtl .mega-menu-column {
    direction: rtl;
    text-align: right;
}

body.rtl .mega-menu-links li a {
    text-align: right;
    /* Override any direction to ensure proper ordering */
    direction: ltr;
    flex-direction: row-reverse;
}

/* In RTL with row-reverse: icon (order 1) appears on right, text (order 2) on left */
body.rtl .mega-menu-links li a .mega-link-icon {
    order: 1;
    margin-left: 0.75rem;
    margin-right: 0;
}

body.rtl .mega-menu-links li a span:last-child {
    order: 2;
    align-items: flex-end;
    text-align: right;
    flex-grow: 1;
}

body.rtl .mega-feature-content {
    text-align: right;
}

body.rtl .mega-feature-label {
    margin-left: auto;
    margin-right: 0;
}

body.rtl .mega-feature-link {
    flex-direction: row-reverse;
}

/* Nav link dropdown icon RTL */
body.rtl .nav-link svg {
    margin-right: 0.35rem;
    margin-left: 0;
}

/* Mobile Menu RTL */
body.rtl .mobile-nav-submenu {
    padding-left: 0;
    padding-right: 1rem;
}

body.rtl .mobile-nav-submenu a {
    border-left: none;
    border-right: 2px solid var(--gray-200);
    padding-left: 0;
    padding-right: 1rem;
    text-align: right;
}

body.rtl .mobile-nav-submenu a:hover {
    border-right-color: var(--primary);
}

body.rtl .mobile-nav-toggle {
    flex-direction: row-reverse;
}

body.rtl .mobile-nav-link {
    text-align: right;
}

body.rtl .mobile-menu-footer {
    text-align: right;
}

body.rtl .mobile-contact-info {
    align-items: flex-end;
}

/* Responsive Navigation */
@media (max-width: 1200px) {
    .nav-link {
        padding: 1.75rem 0.75rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 1024px) {
    .nav,
    .main-nav,
    .header-actions .lang-selector {
        display: none !important;
    }

    .menu-toggle {
        display: flex;
    }

    .header-actions {
        gap: var(--space-xs);
    }

    .mega-menu {
        display: none;
    }
}

/* Hero Section - Video Background */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--secondary);
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(26, 86, 219, 0.7) 100%);
    z-index: 1;
}

.hero-fallback-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary-dark) 100%);
    z-index: -1;
}

/* Page Header - Smaller version for inner pages */
.page-header {
    background: #0f2744;
    padding: calc(80px + var(--space-2xl)) 0 var(--space-2xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header .hero-video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.page-header .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(15,39,68,0.4) 50%, rgba(26,35,50,0.5) 100%);
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

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

.page-header .section-label {
    color: var(--primary-light);
}

.page-header .section-title {
    color: var(--white);
    margin-bottom: var(--space-md);
}

.page-header .lead {
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.hero::before {
    display: none;
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: calc(80px + var(--space-4xl)) 0 var(--space-4xl);
    min-height: 100vh;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-label {
    display: inline-block;
    padding: var(--space-sm) var(--space-lg);
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-xl);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-xl);
    color: var(--white);
}

.hero-title span {
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--space-2xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    justify-content: center;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: var(--space-2xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    animation: bounce 2s ease-in-out infinite;
}

.hero-scroll-indicator svg {
    width: 24px;
    height: 24px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Hero Image (for fallback or side display) */
.hero-image {
    display: none;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-2xl);
}

.hero-image::before {
    display: none;
}

/* Split Hero Layout */
.hero-split .hero-split-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    min-height: 100vh;
    padding: calc(80px + var(--space-3xl)) 0 var(--space-3xl);
}

.hero-split .hero-content {
    text-align: left;
    margin: 0;
}

.hero-split .hero-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
}

.hero-split .hero-text {
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
}

.hero-split .hero-buttons {
    justify-content: flex-start;
}

/* Automotive Showcase Card */
.hero-automotive-showcase {
    display: flex;
    justify-content: center;
    align-items: center;
}

.automotive-showcase-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-2xl);
    padding: var(--space-xl);
    width: 100%;
    max-width: 450px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
}

.showcase-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-lg);
}

.showcase-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.showcase-badge {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 0.35rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Carousel */
.showcase-carousel {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: var(--space-lg);
    aspect-ratio: 16/10;
}

.carousel-images {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.carousel-img.active {
    opacity: 1;
}

.carousel-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.carousel-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dots .dot.active {
    background: white;
    transform: scale(1.2);
}

/* Brand Logos in Showcase */
.showcase-brands {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xl);
    margin-bottom: var(--space-lg);
    padding: var(--space-md) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.showcase-brand-logo {
    height: 28px;
    width: auto;
    object-fit: contain;
    opacity: 0.9;
    transition: all 0.3s ease;
    filter: brightness(1);
}

.showcase-brand-logo:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Stats in Showcase */
.showcase-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

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

.showcase-stat .stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    line-height: 1.2;
}

.showcase-stat .stat-desc {
    display: block;
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

/* Awards Badge */
.showcase-awards {
    display: flex;
    justify-content: center;
}

.award-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

.award-badge svg {
    flex-shrink: 0;
}

/* RTL Support for Split Hero */
body.rtl .hero-split .hero-content {
    text-align: right;
}

body.rtl .hero-split .hero-buttons {
    justify-content: flex-end;
}

body.rtl .hero-split .hero-split-grid {
    direction: rtl;
}

/* RTL Mobile - Center content */
@media (max-width: 1024px) {
    body.rtl .hero-split .hero-content {
        text-align: center;
    }

    body.rtl .hero-split .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    body.rtl .hero-split .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
}

/* Stats Section */
.stats {
    padding: var(--space-3xl) 0;
    background-color: var(--primary);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

.stat-item {
    text-align: center;
    color: var(--white);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: var(--space-sm);
}

.stat-label {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
}

/* About Section */
.about {
    padding: var(--space-4xl) 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-3xl);
}

.section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-md);
}

.section-title {
    margin-bottom: var(--space-md);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
}

.about-content h3 {
    margin-bottom: var(--space-lg);
}

.about-content p {
    margin-bottom: var(--space-lg);
}

/* Industries Section */
.industries {
    padding: var(--space-4xl) 0;
    background-color: var(--gray-50);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.industry-card {
    background-color: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 1px solid var(--gray-100);
}

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

.industry-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-lg);
}

.industry-icon svg {
    width: 30px;
    height: 30px;
    color: var(--white);
}

.industry-card h4 {
    margin-bottom: var(--space-sm);
}

.industry-card p {
    font-size: 0.9375rem;
    margin-bottom: 0;
}

/* Chairman Section */
.chairman {
    padding: var(--space-4xl) 0;
    overflow: visible;
}

.chairman-inner {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: var(--space-3xl);
    align-items: start;
    overflow: visible;
}

.chairman-image {
    position: -webkit-sticky;
    position: sticky;
    top: 120px;
    align-self: start;
}

.chairman-image img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.chairman-content {
    padding-top: var(--space-lg);
}

.chairman-content h2 {
    margin-bottom: var(--space-sm);
}

.chairman-title {
    color: var(--primary);
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: var(--space-xl);
}

.chairman-content blockquote {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--gray-700);
    padding-left: var(--space-xl);
    border-left: 4px solid var(--primary);
    margin: var(--space-xl) 0;
}

/* Contact Section */
.contact {
    padding: var(--space-4xl) 0;
    background-color: var(--gray-50);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
}

.contact-info {
    padding: var(--space-xl);
}

.contact-item {
    display: flex;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary);
    border-radius: var(--radius-lg);
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: var(--white);
}

.contact-item h4 {
    font-size: 1rem;
    margin-bottom: var(--space-xs);
}

.contact-item p {
    color: var(--gray-600);
    margin-bottom: 0;
}

/* Contact Form */
.contact-form {
    background-color: var(--white);
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-label {
    display: block;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: var(--space-sm);
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--gray-900);
    background-color: var(--gray-50);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--primary);
    background-color: var(--white);
    box-shadow: 0 0 0 4px rgba(26, 86, 219, 0.1);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

/* Footer */
.footer {
    background-color: var(--gray-900);
    color: var(--gray-300);
    padding: var(--space-4xl) 0 var(--space-xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-3xl);
    margin-bottom: var(--space-3xl);
}

.footer-brand img {
    height: 50px;
    margin-bottom: var(--space-lg);
    filter: brightness(0) invert(1);
}

.footer-brand p {
    color: var(--gray-400);
    font-size: 0.9375rem;
}

.footer-title {
    color: var(--white);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: var(--space-lg);
}

.footer-links li {
    margin-bottom: var(--space-sm);
}

.footer-links a {
    color: var(--gray-400);
    font-size: 0.9375rem;
    transition: color var(--transition-fast);
}

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

.footer-bottom {
    padding-top: var(--space-xl);
    border-top: 1px solid var(--gray-800);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-bottom: 0;
}

/* Map */
.map-container {
    width: 100%;
    height: 300px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: var(--space-xl);
}

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

/* Utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--space-sm); }
.mb-2 { margin-bottom: var(--space-md); }
.mb-3 { margin-bottom: var(--space-lg); }
.mb-4 { margin-bottom: var(--space-xl); }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--space-sm); }
.mt-2 { margin-top: var(--space-md); }
.mt-3 { margin-top: var(--space-lg); }
.mt-4 { margin-top: var(--space-xl); }

/* RTL Specific Styles */
html[dir="rtl"] .hero-image::before {
    right: auto;
    left: -20px;
}

html[dir="rtl"] .dropdown-toggle::after {
    margin-left: 0;
    margin-right: 6px;
}

html[dir="rtl"] .dropdown-menu {
    left: auto;
    right: 0;
}

html[dir="rtl"] .chairman-content blockquote {
    padding-left: 0;
    padding-right: var(--space-xl);
    border-left: none;
    border-right: 4px solid var(--primary);
}

html[dir="rtl"] .contact-item {
    flex-direction: row-reverse;
}

html[dir="rtl"] .form-input,
html[dir="rtl"] .form-textarea,
html[dir="rtl"] .form-select,
body.rtl .form-input,
body.rtl .form-textarea,
body.rtl .form-select {
    text-align: right;
}

html[dir="rtl"] .form-select,
body.rtl .form-select {
    background-position: left 1rem center;
    padding-left: 2.5rem;
    padding-right: 1rem;
}

html[dir="rtl"] .form-label,
body.rtl .form-label {
    text-align: right;
    display: block;
}

html[dir="rtl"] .btn,
body.rtl .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero {
        min-height: 80vh;
    }

    .hero-inner {
        padding: calc(100px + var(--space-2xl)) 0 var(--space-2xl);
        min-height: 80vh;
    }

    .hero-title {
        font-size: clamp(2rem, 5vw, 3rem);
    }

    .hero-text {
        font-size: 1.125rem;
    }

    .hero-scroll-indicator {
        display: none;
    }

    /* Split Hero Responsive - Tablet */
    .hero-split .hero-split-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
        text-align: center;
        min-height: auto;
        padding: calc(80px + var(--space-2xl)) 0 var(--space-2xl);
    }

    .hero-split .hero-content {
        text-align: center;
        order: 1;
    }

    .hero-split .hero-automotive-showcase {
        order: 2;
    }

    .hero-split .hero-buttons {
        justify-content: center;
    }

    .hero-split .hero-title {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }

    .hero-split .hero-text {
        font-size: 1rem;
    }

    .automotive-showcase-card {
        max-width: 380px;
        padding: var(--space-lg);
    }

    .showcase-stats {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: var(--space-sm);
    }

    .showcase-stat .stat-value {
        font-size: 1.25rem;
    }

    .showcase-stat .stat-desc {
        font-size: 0.6rem;
    }

    .highlight-card {
        flex: 0 0 calc(50% - var(--space-md));
        min-width: 300px;
    }

    .partners-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-xl);
    }

    .chairman-inner {
        grid-template-columns: 1fr;
    }

    .chairman-image {
        position: static;
        max-width: 300px;
        margin: 0 auto;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: var(--white);
        flex-direction: column;
        align-items: stretch;
        padding: var(--space-xl);
        transform: translateX(100%);
        transition: transform var(--transition-normal);
    }

    .nav.active {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .nav-link {
        padding: var(--space-md) 0;
        border-bottom: 1px solid var(--gray-100);
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: var(--space-lg);
    }

    .industries-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .hero {
        min-height: 100vh;
    }

    .hero-inner {
        padding: calc(100px + var(--space-xl)) 0 var(--space-xl);
    }

    .hero-title {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }

    .hero-text {
        font-size: 1rem;
    }

    /* Split Hero Responsive - Mobile */
    .hero-split {
        min-height: auto;
    }

    .hero-split .hero-split-grid {
        padding: calc(80px + var(--space-lg)) var(--space-sm) var(--space-lg);
        gap: var(--space-lg);
        min-height: auto;
    }

    .hero-split .hero-content {
        padding: 0 var(--space-sm);
    }

    .hero-split .hero-title {
        font-size: 1.5rem;
        line-height: 1.2;
        margin-bottom: var(--space-md);
    }

    .hero-split .hero-text {
        font-size: 0.9rem;
        margin-bottom: var(--space-lg);
        line-height: 1.6;
    }

    .hero-split .hero-label {
        font-size: 0.75rem;
        padding: var(--space-xs) var(--space-md);
        margin-bottom: var(--space-md);
    }

    .hero-split .hero-buttons {
        flex-direction: column;
        gap: var(--space-sm);
        width: 100%;
    }

    .hero-split .hero-buttons .btn {
        width: 100%;
        text-align: center;
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .automotive-showcase-card {
        padding: var(--space-md);
        max-width: 100%;
        border-radius: var(--radius-xl);
    }

    .showcase-header {
        margin-bottom: var(--space-md);
    }

    .showcase-logo {
        height: 28px;
    }

    .showcase-badge {
        font-size: 0.55rem;
        padding: 0.2rem 0.4rem;
    }

    .showcase-carousel {
        margin-bottom: var(--space-md);
        aspect-ratio: 16/9;
        border-radius: var(--radius-lg);
    }

    .showcase-brands {
        gap: var(--space-md);
        padding: var(--space-sm) 0;
        margin-bottom: var(--space-md);
    }

    .showcase-brand-logo {
        height: 18px;
    }

    .showcase-stats {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: var(--space-xs);
        margin-bottom: var(--space-md);
    }

    .showcase-stat {
        padding: var(--space-xs);
    }

    .showcase-stat .stat-value {
        font-size: 1rem;
    }

    .showcase-stat .stat-desc {
        font-size: 0.55rem;
    }

    .award-badge {
        font-size: 0.6rem;
        padding: 0.35rem 0.6rem;
    }

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

    .showcase-awards {
        margin-top: var(--space-sm);
    }

    .highlight-card {
        flex: 0 0 calc(100% - var(--space-md));
        min-width: 280px;
    }

    .highlights-btn {
        width: 40px;
        height: 40px;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .partner-logo {
        width: 100%;
        height: 70px;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .container {
        padding: 0 var(--space-md);
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    /* Split Hero - Extra Small */
    .hero-split .hero-split-grid {
        padding: calc(70px + var(--space-md)) var(--space-xs) var(--space-md);
        gap: var(--space-md);
    }

    .hero-split .hero-title {
        font-size: 1.35rem;
    }

    .hero-split .hero-text {
        font-size: 0.85rem;
    }

    .hero-split .hero-label {
        font-size: 0.7rem;
    }

    .automotive-showcase-card {
        padding: var(--space-sm);
    }

    .showcase-header {
        flex-direction: column;
        gap: var(--space-xs);
        text-align: center;
    }

    .showcase-logo {
        height: 24px;
    }

    .showcase-brands {
        gap: var(--space-sm);
    }

    .showcase-brand-logo {
        height: 16px;
    }

    .showcase-stat .stat-value {
        font-size: 0.9rem;
    }

    .showcase-stat .stat-desc {
        font-size: 0.5rem;
    }

    .award-badge {
        font-size: 0.55rem;
        padding: 0.3rem 0.5rem;
    }

    .award-badge svg {
        width: 12px;
        height: 12px;
    }
}

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

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

.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

.slide-up {
    animation: slideUp 0.6s ease forwards;
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

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

/* =====================================================
   ADVANCED ANIMATIONS
   ===================================================== */

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

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

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

@keyframes bounce {
    0%, 20%, 53%, 100% { transform: translateY(0); }
    40% { transform: translateY(-30px); }
    43% { transform: translateY(-15px); }
    70% { transform: translateY(-10px); }
    80% { transform: translateY(-4px); }
    90% { transform: translateY(-2px); }
}

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

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

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

@keyframes rotateIn {
    from { opacity: 0; transform: rotate(-10deg) scale(0.9); }
    to { opacity: 1; transform: rotate(0) scale(1); }
}

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

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

@keyframes ripple {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

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

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

@keyframes wave {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(20deg); }
    75% { transform: rotate(-20deg); }
}

/* Animation Classes */
.animate-float { animation: float 3s ease-in-out infinite; }
.animate-pulse { animation: pulse 2s ease-in-out infinite; }
.animate-bounce { animation: bounce 2s ease infinite; }
.animate-spin { animation: spin 1s linear infinite; }
.animate-wave { animation: wave 1s ease-in-out infinite; }

.animate-fade-in { animation: fadeIn 0.8s ease forwards; }
.animate-fade-in-up { animation: fadeInUp 0.8s ease forwards; }
.animate-fade-in-down { animation: fadeInDown 0.8s ease forwards; }
.animate-slide-in-left { animation: slideInLeft 0.8s ease forwards; }
.animate-slide-in-right { animation: slideInRight 0.8s ease forwards; }
.animate-scale-in { animation: scaleIn 0.6s ease forwards; }
.animate-rotate-in { animation: rotateIn 0.8s ease forwards; }

/* Stagger Animation Delays */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }
.delay-6 { animation-delay: 0.6s; }

/* Reveal Animation Variants */
.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-rotate {
    opacity: 0;
    transform: rotate(-5deg) scale(0.9);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.visible,
.reveal-right.visible,
.reveal-scale.visible,
.reveal-rotate.visible {
    opacity: 1;
    transform: translateX(0) scale(1) rotate(0);
}

/* Gradient Animation */
.gradient-animated {
    background: linear-gradient(-45deg, var(--primary), var(--primary-dark), var(--primary-light), var(--primary));
    background-size: 400% 400%;
    animation: gradient 8s ease infinite;
}

/* Shimmer Effect */
.shimmer {
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

/* Hover Animations */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
}

.hover-scale {
    transition: transform 0.3s ease;
}

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

.hover-glow {
    transition: box-shadow 0.3s ease;
}

.hover-glow:hover {
    box-shadow: 0 0 30px rgba(26, 86, 219, 0.4);
}

/* Button Ripple Effect */
.btn-ripple {
    position: relative;
    overflow: hidden;
}

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

.btn-ripple:hover::after {
    width: 300px;
    height: 300px;
}

/* Text Gradient */
.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* About Stats Cards - Modern Design */
.about-stats {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-lg);
    margin: var(--space-2xl) 0;
    justify-content: center;
}

.about-stat-card {
    flex: 1 1 150px;
    max-width: 180px;
    background: linear-gradient(145deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-xl);
    padding: var(--space-xl) var(--space-lg);
    text-align: center;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(26, 86, 219, 0.3);
}

.about-stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
    pointer-events: none;
}

.about-stat-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(26, 86, 219, 0.4);
}

.about-stat-card.gold {
    background: linear-gradient(145deg, #d4a017 0%, #9a7b0a 100%);
    box-shadow: 0 10px 30px rgba(212, 160, 23, 0.3);
}

.about-stat-card.gold:hover {
    box-shadow: 0 20px 40px rgba(212, 160, 23, 0.4);
}

.about-stat-card.dark {
    background: linear-gradient(145deg, var(--gray-700) 0%, var(--secondary) 100%);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.3);
}

.about-stat-card.dark:hover {
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.4);
}

.about-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: var(--space-sm);
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.about-stat-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .about-stats {
        gap: var(--space-md);
    }

    .about-stat-card {
        flex: 1 1 120px;
        max-width: 150px;
        padding: var(--space-lg) var(--space-md);
    }

    .about-stat-number {
        font-size: 1.75rem;
    }

    .about-stat-label {
        font-size: 0.65rem;
    }
}

@media (max-width: 480px) {
    .about-stat-card {
        flex: 1 1 100px;
        max-width: 130px;
        padding: var(--space-md);
    }

    .about-stat-number {
        font-size: 1.5rem;
    }
}

/* =====================================================
   HIGHLIGHTS CAROUSEL / SLIDER SECTION
   ===================================================== */

.highlights {
    padding: var(--space-4xl) 0;
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--secondary) 100%);
    overflow: hidden;
}

.highlights .section-header {
    color: white;
}

.highlights .section-label {
    color: var(--primary-light);
}

.highlights .section-title {
    color: white;
}

.highlights .lead {
    color: rgba(255, 255, 255, 0.8);
}

.highlights-carousel {
    position: relative;
    overflow: hidden;
}

.highlights-track {
    display: flex;
    gap: var(--space-xl);
    transition: transform 0.5s ease;
}

.highlight-card {
    flex: 0 0 calc(33.333% - var(--space-lg));
    min-width: 350px;
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 16/10;
    cursor: pointer;
}

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

.highlight-card:hover img {
    transform: scale(1.1);
}

.highlight-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-xl);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    color: white;
    transform: translateY(30px);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.highlight-card:hover .highlight-overlay {
    transform: translateY(0);
    opacity: 1;
}

.highlight-category {
    display: inline-block;
    padding: var(--space-xs) var(--space-sm);
    background: var(--primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-sm);
}

.highlight-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: var(--space-xs);
}

.highlight-description {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.highlights-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
}

.highlights-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.highlights-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.highlights-btn svg {
    width: 24px;
    height: 24px;
}

.highlights-dots {
    display: flex;
    gap: var(--space-sm);
}

.highlights-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.highlights-dot.active,
.highlights-dot:hover {
    background: var(--primary);
    transform: scale(1.2);
}

/* =====================================================
   PARTNERS / CLIENTS SECTION
   ===================================================== */

.partners {
    padding: var(--space-4xl) 0;
    background-color: var(--gray-50);
    overflow: hidden;
}

/* Auto-scrolling partners track */
.partners-track-wrapper {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.partners-track {
    display: flex;
    gap: var(--space-2xl);
    animation: scroll 40s linear infinite;
    width: max-content;
}

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

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

/* Static partners grid */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--space-lg);
}

.partner-logo {
    flex-shrink: 0;
    width: 160px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-lg);
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.partner-logo:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
    border-color: var(--primary-light);
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all 0.3s ease;
}

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

/* Partner placeholder for demo */
.partner-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* =====================================================
   TIMELINE / HISTORY SECTION - HORIZONTAL
   ===================================================== */

.timeline {
    padding: var(--space-4xl) 0;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    overflow-x: auto;
}

.timeline-container {
    position: relative;
    display: flex;
    gap: 0;
    padding: 3rem 0;
    min-width: max-content;
    justify-content: center;
}

.timeline-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--primary));
    border-radius: var(--radius-full);
    transform: translateY(-50%);
}

.timeline-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 200px;
    padding: 0 1rem;
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

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

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

.timeline-item:nth-child(odd) {
    flex-direction: column;
}

.timeline-item:nth-child(even) {
    flex-direction: column-reverse;
}

.timeline-content {
    width: 180px;
    padding: var(--space-lg);
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    text-align: center;
    margin: 1.5rem 0;
}

.timeline-content:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.timeline-year {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    font-weight: 700;
    font-size: 0.875rem;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-sm);
}

.timeline-dot {
    width: 20px;
    height: 20px;
    background: var(--white);
    border: 4px solid var(--primary);
    border-radius: 50%;
    z-index: 1;
    transition: all 0.3s ease;
    flex-shrink: 0;
    box-shadow: 0 0 0 4px rgba(180, 142, 95, 0.2);
}

.timeline-item:hover .timeline-dot {
    transform: scale(1.3);
    background: var(--primary);
    box-shadow: 0 0 0 8px rgba(180, 142, 95, 0.3);
}

.timeline-content h4 {
    margin-bottom: var(--space-xs);
    font-size: 1rem;
}

.timeline-content p {
    margin-bottom: 0;
    font-size: 0.8125rem;
    color: var(--gray-600);
    line-height: 1.5;
}

/* =====================================================
   TESTIMONIALS SECTION
   ===================================================== */

.testimonials {
    padding: var(--space-4xl) 0;
    background: var(--primary);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '"';
    position: absolute;
    top: -50px;
    left: 10%;
    font-size: 400px;
    font-family: Georgia, serif;
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
}

.testimonials-slider {
    display: flex;
    gap: var(--space-xl);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: var(--space-lg) 0;
}

.testimonials-slider::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex-shrink: 0;
    width: 400px;
    max-width: 90vw;
    padding: var(--space-2xl);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.2);
    scroll-snap-align: center;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.testimonial-text {
    color: var(--white);
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: var(--space-xl);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--warning));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.testimonial-info h5 {
    color: var(--white);
    margin-bottom: 0;
    font-size: 1rem;
}

.testimonial-info p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
    font-size: 0.875rem;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: var(--space-md);
}

.testimonial-stars svg {
    width: 20px;
    height: 20px;
    fill: var(--accent);
}

/* =====================================================
   FEATURED INDUSTRIES (Image Cards)
   ===================================================== */

.industries-featured {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.industry-featured-card {
    position: relative;
    border-radius: 1.25rem;
    overflow: hidden;
    height: 280px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.industry-featured-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.industry-featured-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.industry-featured-card:hover img {
    transform: scale(1.08);
}

.industry-featured-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.6) 50%, transparent 100%);
    color: white;
}

.industry-featured-card .industry-label {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 2rem;
    margin-bottom: 0.75rem;
}

.industry-featured-card h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: white;
}

.industry-featured-card p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.industry-featured-card .industry-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-light);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.industry-featured-card .industry-link:hover {
    color: white;
    gap: 0.75rem;
}

.industry-featured-card .industry-link svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.industry-featured-card:hover .industry-link svg {
    transform: translateX(4px);
}

/* Full-width featured card */
.industry-featured-card.full-width {
    grid-column: span 3;
    height: 320px;
}

.industry-featured-card.full-width .industry-featured-overlay {
    padding: 3rem;
}

.industry-featured-card.full-width h3 {
    font-size: 2.25rem;
}

/* Responsive for featured industries */
@media (max-width: 992px) {
    .industries-featured {
        grid-template-columns: 1fr !important;
    }

    .industry-featured-card.full-width {
        grid-column: span 1 !important;
    }
}

@media (max-width: 900px) {
    .industries-featured {
        grid-template-columns: 1fr !important;
    }

    .industry-featured-card.full-width {
        grid-column: span 1;
        height: 280px !important;
    }

    .industry-featured-card {
        height: 260px !important;
        grid-row: auto !important;
    }

    .industry-featured-overlay {
        padding: 1.25rem !important;
    }

    .industry-featured-overlay h3 {
        font-size: 1.25rem !important;
        margin-bottom: 0.5rem !important;
    }

    .industry-featured-overlay p {
        font-size: 0.85rem !important;
        line-height: 1.5 !important;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .industry-featured-card.full-width .industry-featured-overlay {
        padding: 1.5rem !important;
    }

    .industry-featured-card.full-width h3 {
        font-size: 1.5rem !important;
    }

    .industry-label {
        font-size: 0.65rem !important;
        padding: 0.25rem 0.5rem !important;
    }

    .industry-link {
        font-size: 0.85rem !important;
        padding: 0.5rem 0 !important;
    }
}

/* =====================================================
   NEWS / UPDATES SECTION
   ===================================================== */

.news {
    padding: var(--space-4xl) 0;
    background: var(--white);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.news-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--gray-100);
}

.news-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-2xl);
}

.news-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.news-category {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    padding: var(--space-xs) var(--space-md);
    background: var(--primary);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: var(--radius-full);
}

.news-content {
    padding: var(--space-xl);
}

.news-date {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--gray-500);
    font-size: 0.875rem;
    margin-bottom: var(--space-md);
}

.news-date svg {
    width: 16px;
    height: 16px;
}

.news-content h4 {
    margin-bottom: var(--space-sm);
    transition: color 0.3s ease;
}

.news-card:hover .news-content h4 {
    color: var(--primary);
}

.news-content p {
    font-size: 0.9375rem;
    margin-bottom: var(--space-md);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: 600;
    color: var(--primary);
    transition: gap 0.3s ease;
}

.news-link:hover {
    gap: var(--space-md);
}

.news-link svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.news-card:hover .news-link svg {
    transform: translateX(5px);
}

/* =====================================================
   VALUES / FEATURES SECTION
   ===================================================== */

.values {
    padding: var(--space-4xl) 0;
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--secondary) 100%);
    position: relative;
    overflow: hidden;
}

.values::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    position: relative;
    z-index: 1;
}

.value-card {
    text-align: center;
    padding: var(--space-2xl);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.value-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-10px);
    border-color: var(--primary);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: var(--radius-xl);
    transition: transform 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
}

.value-icon svg {
    width: 40px;
    height: 40px;
    color: var(--white);
}

.value-card h4 {
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.value-card p {
    color: var(--gray-400);
    font-size: 0.9375rem;
    margin-bottom: 0;
}

/* =====================================================
   CTA BANNER SECTION
   ===================================================== */

.cta-banner {
    padding: var(--space-4xl) 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: var(--space-lg);
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: var(--space-xl);
}

/* =====================================================
   RESPONSIVE UPDATES FOR NEW SECTIONS
   ===================================================== */

@media (max-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .timeline-container {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding: 2rem 1rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
    }

    .timeline-container::before {
        display: none;
    }

    .timeline-item {
        min-width: 160px;
    }

    .timeline-content {
        width: 150px;
        padding: 1rem;
    }

    .timeline-content h4 {
        font-size: 0.9rem;
    }

    .timeline-content p {
        font-size: 0.75rem;
    }
}

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

    .news-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        width: 300px;
    }

    .partner-logo {
        width: 120px;
        height: 60px;
    }
}

/* =====================================================
   Industry Card Links
   ===================================================== */
.industry-link {
    display: inline-block;
    margin-top: var(--space-md);
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-fast);
}

.industry-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.industry-contact {
    display: block;
    margin-top: var(--space-md);
    color: var(--gray-500);
    font-size: 0.875rem;
}

/* =====================================================
   About Section Accordion
   ===================================================== */
.about-accordion {
    margin: var(--space-lg) 0;
}

.about-detail {
    margin-bottom: var(--space-sm);
    padding: var(--space-md);
    background: var(--gray-50);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    transition: var(--transition-fast);
}

.about-detail:hover {
    background: var(--white);
    border-color: var(--primary-light);
}

.about-detail summary {
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--gray-800);
}

.about-detail summary::-webkit-details-marker {
    display: none;
}

.about-detail summary::after {
    content: '+';
    font-size: 1.25rem;
    color: var(--primary);
    transition: var(--transition-fast);
}

.about-detail[open] summary::after {
    content: '-';
}

.about-detail p {
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid var(--gray-200);
    color: var(--gray-600);
    font-size: 0.9375rem;
    line-height: 1.7;
}

/* Industries Grid - 10 columns support */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-xl);
}

@media (min-width: 1200px) {
    .industries-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width: 1199px) and (min-width: 992px) {
    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

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

/* =====================================================
   Clients Section
   ===================================================== */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

.client-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 180px;
}

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

.client-card img {
    max-width: 120px;
    max-height: 80px;
    object-fit: contain;
    margin-bottom: var(--space-md);
}

.client-card span {
    font-size: 0.875rem;
    color: var(--gray-600);
    font-weight: 500;
}

.client-card.client-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.client-card.client-text.client-alt {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--gray-800) 100%);
}

.client-card.client-text span {
    color: rgba(255, 255, 255, 0.9);
}

.client-text-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: var(--space-sm);
    letter-spacing: 1px;
}

/* Group Companies Section */
.group-companies {
    padding: var(--space-4xl) 0;
    background: var(--gray-50);
}

@media (max-width: 768px) {
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }

    .client-card {
        padding: var(--space-lg);
        min-height: 150px;
    }

    .client-card img {
        max-width: 80px;
        max-height: 60px;
    }
}

/* =====================================================
   Hero Logos
   ===================================================== */
.hero-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xl);
    margin-bottom: var(--space-lg);
}

.hero-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    opacity: 0.95;
}

.hero-brands {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2xl);
    margin: var(--space-xl) 0;
    padding: var(--space-lg) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-brand-logo {
    height: 45px;
    width: auto;
    object-fit: contain;
    opacity: 0.9;
    transition: var(--transition-normal);
}

.hero-brand-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .hero-logos {
        flex-direction: column;
        gap: var(--space-md);
    }

    .hero-logo {
        height: 50px;
    }

    .hero-brands {
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--space-lg);
    }

    .hero-brand-logo {
        height: 35px;
    }
}

/* =====================================================
   Automotive Brands Section
   ===================================================== */
.automotive-brands {
    background: linear-gradient(135deg, var(--secondary) 0%, #1e293b 100%);
    padding: var(--space-4xl) 0;
}

.auto-brands-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
}

.auto-brand-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    text-align: center;
    transition: var(--transition-normal);
}

.auto-brand-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.auto-brand-card img {
    height: 60px;
    width: auto;
    object-fit: contain;
    margin-bottom: var(--space-lg);
}

.auto-brand-card h4 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
}

.auto-brand-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.auto-brands-footer {
    text-align: center;
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.auto-brands-footer p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-lg);
    font-size: 1.125rem;
}

.auto-brands-footer .btn-outline {
    border-color: var(--white);
    color: var(--white);
}

.auto-brands-footer .btn-outline:hover {
    background: var(--white);
    color: var(--secondary);
}

@media (max-width: 992px) {
    .auto-brands-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .auto-brand-card {
        padding: var(--space-xl);
    }
}

/* =====================================================
   GRAND CORPORATE HERO SECTION
   ===================================================== */

.hero-grand {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    background: var(--secondary);
}

.hero-grand .hero-video-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.6) 30%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0.3) 100%);
}

.hero-grand-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
    padding-top: 120px;
    padding-bottom: 80px;
}

.hero-grand-content {
    max-width: 700px;
}

.hero-grand-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 500;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: var(--space-lg);
    letter-spacing: -0.01em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-grand-title span {
    font-weight: 700;
}

.hero-grand-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: var(--space-xl);
    font-weight: 400;
    max-width: 480px;
    line-height: 1.6;
}

.btn-hero-explore {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 1rem 2rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: var(--white);
    font-size: 1rem;
    font-weight: 500;
    border-radius: 0;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-decoration: none;
}

.btn-hero-explore:hover {
    background: var(--white);
    color: var(--secondary);
    border-color: var(--white);
}

.btn-hero-explore svg {
    transition: transform var(--transition-normal);
}

.btn-hero-explore:hover svg {
    transform: translateX(4px);
}

/* Corporate Figures at Bottom */
.hero-grand-figures {
    margin-top: var(--space-2xl);
    max-width: 800px;
}

.figures-subtitle {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: var(--space-md);
    font-weight: 500;
}

/* Remove letter-spacing for Arabic subtitle */
body.rtl .figures-subtitle {
    letter-spacing: 0;
    text-transform: none;
}

.figures-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-bottom: var(--space-sm);
}

.figures-row:last-child {
    margin-bottom: 0;
}

.hero-figure {
    text-align: left;
    padding: var(--space-xs) var(--space-md);
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.hero-figure:first-child {
    border-left: none;
    padding-left: 0;
}

.hero-figure:nth-child(1) { animation-delay: 0.1s; }
.hero-figure:nth-child(2) { animation-delay: 0.2s; }
.hero-figure:nth-child(3) { animation-delay: 0.3s; }
.hero-figure:nth-child(4) { animation-delay: 0.4s; }

.figure-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 4px;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.02em;
}

.figure-label {
    display: block;
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-figure-divider {
    display: none;
}

.hero-figure-highlight {
    position: relative;
}

.hero-figure-highlight .figure-value {
    color: #fbbf24;
}

.hero-figure-highlight .figure-label {
    white-space: normal;
    line-height: 1.3;
}

/* Figure Count Animation */
@keyframes countUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* RTL Support for Grand Hero */
body.rtl .hero-grand-content {
    text-align: right;
}

body.rtl .hero-grand-title {
    direction: rtl;
    font-weight: 600;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
}

body.rtl .hero-grand-title span {
    font-weight: 800;
}

body.rtl .hero-grand-text {
    margin-left: auto;
    margin-right: 0;
}

body.rtl .hero-grand-figures {
    justify-content: flex-end;
    direction: rtl;
}

body.rtl .hero-figure:first-child {
    padding-left: var(--space-xl);
    padding-right: 0;
}

body.rtl .btn-hero-explore {
    flex-direction: row-reverse;
}

body.rtl .btn-hero-explore:hover svg {
    transform: translateX(-4px);
}

/* RTL Figure Borders */
body.rtl .hero-figure {
    border-left: none;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    text-align: right;
}

body.rtl .hero-figure:first-child {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    padding-right: var(--space-md);
}

body.rtl .hero-figure:last-child {
    border-right: none;
    padding-right: 0;
}

/* Grand Hero Responsive */
@media (max-width: 1200px) {
    .hero-grand-figures {
        bottom: 40px;
    }

    .figure-value {
        font-size: 2rem;
    }

    .figure-label {
        font-size: 0.6rem;
    }
}

@media (max-width: 1024px) {
    .hero-grand-container {
        padding-bottom: 80px;
    }

    .hero-grand-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-grand-title {
        font-size: clamp(2rem, 5vw, 3rem);
    }

    .hero-grand-text {
        max-width: 100%;
        margin: 0 auto var(--space-xl);
    }

    .btn-hero-explore {
        margin: 0 auto;
    }

    .hero-grand-figures {
        margin: var(--space-xl) auto 0;
    }

    .figures-subtitle {
        text-align: center;
    }

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

    .hero-figure:first-child {
        border-left: none;
    }

    .figure-value {
        font-size: 2rem;
    }

    body.rtl .hero-grand-content {
        text-align: center;
    }

    body.rtl .hero-grand-text {
        margin: 0 auto var(--space-xl);
    }
}

@media (max-width: 768px) {
    .hero-grand-container {
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .hero-grand-title {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }

    .hero-grand-text {
        font-size: 1rem;
    }

    .btn-hero-explore {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }

    .hero-grand-figures {
        margin-top: var(--space-xl);
    }

    .figures-subtitle {
        font-size: 0.75rem;
        margin-bottom: var(--space-sm);
        text-align: center;
    }

    .figures-row {
        grid-template-columns: repeat(4, 1fr);
        gap: 0;
    }

    .hero-figure {
        text-align: center;
        padding: var(--space-xs);
        border-left: 1px solid rgba(255, 255, 255, 0.15);
    }

    .hero-figure:first-child {
        border-left: none;
    }

    .figure-value {
        font-size: 1.5rem;
    }

    .figure-label {
        font-size: 0.5rem;
    }
}

@media (max-width: 480px) {
    .hero-grand-container {
        padding-top: 80px;
        padding-bottom: 40px;
    }

    .hero-grand-title {
        font-size: 1.5rem;
    }

    .hero-grand-text {
        font-size: 0.9rem;
    }

    .hero-grand-figures {
        margin-top: var(--space-lg);
        max-width: 100%;
    }

    .figures-subtitle {
        font-size: 0.65rem;
        margin-bottom: var(--space-xs);
        text-align: center;
    }

    .figures-row {
        grid-template-columns: repeat(4, 1fr);
        gap: 0;
    }

    .hero-figure {
        padding: var(--space-xs) 2px;
        text-align: center;
    }

    .figure-value {
        font-size: 1.4rem;
    }

    .figure-label {
        font-size: 0.65rem;
        white-space: normal;
        line-height: 1.3;
    }
}

/* ===== MOBILE RESPONSIVE FIXES ===== */

/* MASTER MOBILE FIX - Force all grids to single column */
@media (max-width: 900px) {
    /* Target ALL elements with display: grid that have 2+ columns */
    .container > div[style*="grid"],
    .container > section > div[style*="grid"],
    section > .container > div[style*="grid"],
    div[style*="display: grid"],
    div[style*="display:grid"] {
        display: block !important;
    }

    /* Make children of grid containers full width */
    .container > div[style*="grid"] > *,
    div[style*="display: grid"] > *,
    div[style*="display:grid"] > * {
        width: 100% !important;
        margin-bottom: 2rem !important;
    }

    /* About grid */
    .about-grid {
        display: block !important;
    }

    .about-grid > * {
        width: 100% !important;
        margin-bottom: 2rem !important;
    }

    .about-image {
        margin-bottom: 2rem !important;
    }
}

/* Mobile logo smaller */
@media (max-width: 900px) {
    .logo img {
        height: 28px !important;
    }
    .mobile-menu-header .logo img {
        height: 26px !important;
    }
}

/* Hero Section Mobile - Aligned by language direction */
@media (max-width: 900px) {
    .hero-grand-content {
        text-align: left !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        max-width: 100% !important;
    }

    .hero-grand-title {
        font-size: clamp(2.25rem, 8vw, 3rem) !important;
        font-weight: 600 !important;
        text-align: left !important;
    }

    .hero-grand-title span {
        font-weight: 800 !important;
    }

    .hero-grand-text {
        text-align: left !important;
        font-size: 1.05rem !important;
        max-width: 100% !important;
    }

    .btn-hero-explore {
        margin: 0 !important;
    }

    /* Stats larger and centered on mobile */
    .hero-grand-figures {
        width: 100% !important;
        max-width: 100% !important;
        margin: var(--space-xl) auto 0 !important;
        text-align: center !important;
    }

    .figure-label {
        font-size: 0.7rem !important;
        line-height: 1.3 !important;
    }

    .figure-value {
        font-size: 1.6rem !important;
        margin-bottom: 0.25rem !important;
    }

    .figures-subtitle {
        font-size: 0.8rem !important;
        margin-bottom: var(--space-md) !important;
        text-align: center !important;
    }

    .figures-row {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 0.5rem !important;
        margin-bottom: 0.75rem !important;
        width: 100% !important;
    }

    .hero-figure {
        text-align: center !important;
        border-left: 1px solid rgba(255,255,255,0.15) !important;
        padding: 0.5rem !important;
    }

    .hero-figure:first-child {
        border-left: none !important;
    }

    /* RTL Hero on mobile - centered */
    html[dir="rtl"] .hero-grand-content,
    body.rtl .hero-grand-content {
        text-align: center !important;
        align-items: center !important;
    }

    html[dir="rtl"] .hero-grand-title,
    body.rtl .hero-grand-title {
        text-align: center !important;
        align-items: center !important;
    }

    html[dir="rtl"] .hero-grand-text,
    body.rtl .hero-grand-text {
        text-align: center !important;
    }

    html[dir="rtl"] .btn-hero-explore,
    body.rtl .btn-hero-explore {
        margin: 0 auto !important;
    }

    html[dir="rtl"] .figures-subtitle,
    body.rtl .figures-subtitle {
        text-align: center !important;
    }

    body.rtl .hero-grand-title {
        font-size: clamp(2rem, 7vw, 3rem) !important;
        font-weight: 700 !important;
        text-align: center !important;
    }

    body.rtl .hero-grand-title span {
        font-weight: 900 !important;
    }

    body.rtl .hero-grand-text {
        text-align: center !important;
    }
}

@media (max-width: 480px) {
    .hero-grand-title {
        font-size: clamp(1.75rem, 8vw, 2.5rem) !important;
    }

    body.rtl .hero-grand-title {
        font-size: clamp(1.75rem, 8vw, 2.5rem) !important;
    }
}

/* About Section Mobile - Stack cards */
@media (max-width: 900px) {
    .about-cards-grid,
    .about-cards-grid[style] {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem !important;
    }

    .about-cards-grid > *,
    .about-cards-grid[style] > * {
        width: 100% !important;
    }
}

/* Discover/News Section Mobile */
@media (max-width: 900px) {
    /* Featured story - stack image and content */
    .featured-story-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
    }

    .featured-story-grid > div:last-child {
        padding: 1.5rem !important;
    }

    /* News grid - single column on mobile */
    .news-cards-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
}

/* Industries Section Mobile */
@media (max-width: 900px) {
    /* Featured industries - stack */
    .industries-featured {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }

    .industries-featured .industry-featured-card {
        grid-row: auto !important;
        height: 280px !important;
    }

    /* Secondary industries row */
    .industries-secondary-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }

    .industries-secondary-grid .industry-featured-card {
        height: 220px !important;
    }

    /* Other industries compact */
    .industries-other-grid {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 0.75rem !important;
    }

    .industries-other-grid > a {
        min-height: 100px !important;
        padding: 1rem !important;
    }
}

/* Partnership CTA Mobile */
@media (max-width: 900px) {
    .partnership-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        text-align: center !important;
    }

    .partnership-cta h2 {
        font-size: 1.75rem !important;
    }

    .partnership-cta .container {
        padding: 3rem 1rem !important;
    }
}

/* ===== CSR PAGE MOBILE FIXES ===== */
@media (max-width: 900px) {
    /* CSR Stats grid - single column */
    .csr-stats-grid {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 1.5rem !important;
    }

    /* CSR two-column sections - stack vertically */
    .csr-section-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    /* All inline grid sections on CSR page */
    [style*="grid-template-columns: 1fr 1fr"] {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    /* CSR Community cards - single column */
    .csr-community-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
}

/* ===== NEWS PAGE MOBILE FIXES ===== */
@media (max-width: 900px) {
    /* Featured news card - stack image and content */
    .featured-news-card {
        display: grid !important;
        grid-template-columns: 1fr !important;
    }

    .featured-news-card > div:last-child {
        padding: 1.5rem !important;
    }

    .featured-news-card h2 {
        font-size: 1.5rem !important;
    }

    /* News grid - single column on smaller screens */
    .news-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
}

/* ===== UNIVERSAL MOBILE GRID FIX ===== */
@media (max-width: 900px) {
    /* NUCLEAR OPTION: Force ALL grids inside containers to single column */
    .container div[style*="grid-template-columns"],
    .container div[style*="grid-template-columns"] {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem !important;
    }

    .container div[style*="grid-template-columns"] > * {
        width: 100% !important;
        flex: none !important;
    }

    /* Except for stats grids which should be 2 columns */
    div[style*="minmax(200px"] {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 1rem !important;
    }

    /* Force all inline two-column grids to single column */
    div[style*="grid-template-columns: 1fr 1fr"],
    div[style*="grid-template-columns:1fr 1fr"],
    div[style*="1fr 1fr; gap"],
    div[style*="repeat(2, 1fr)"] {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem !important;
    }

    div[style*="grid-template-columns: 1fr 1fr"] > *,
    div[style*="grid-template-columns:1fr 1fr"] > *,
    div[style*="1fr 1fr; gap"] > *,
    div[style*="repeat(2, 1fr)"] > * {
        width: 100% !important;
        order: unset !important;
    }

    /* Cards grids with auto-fit - single column */
    div[style*="minmax(300px"],
    div[style*="minmax(320px"],
    div[style*="minmax(350px"] {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.5rem !important;
    }

    div[style*="minmax(300px"] > *,
    div[style*="minmax(320px"] > *,
    div[style*="minmax(350px"] > * {
        width: 100% !important;
    }

    /* Reduce padding on sections */
    section[style*="padding: var(--space-3xl)"],
    section[style*="padding: var(--space-4xl)"] {
        padding: 3rem 0 !important;
    }

    /* Font size reductions for mobile */
    h2[style*="font-size: 2.5rem"] {
        font-size: 1.75rem !important;
    }

    h2[style*="font-size: 2rem"] {
        font-size: 1.5rem !important;
    }

    /* Images full width */
    img[style*="border-radius"] {
        width: 100% !important;
    }

    /* Footer grid mobile */
    .footer-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem !important;
        text-align: center !important;
    }

    /* Stats grid mobile */
    .stats-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 1.5rem !important;
    }

    /* Hero buttons stack on mobile */
    .hero-buttons {
        flex-direction: column !important;
        align-items: center !important;
        gap: 1rem !important;
    }

    .hero-buttons .btn {
        width: 100% !important;
        max-width: 280px !important;
    }
}

/* =====================================================
   RTL NAVIGATION STYLES - ARABIC MENU FIX
   ===================================================== */

/* Force RTL on html element */
html[dir="rtl"] {
    direction: rtl !important;
}

/* Header RTL */
html[dir="rtl"] .header,
html[dir="rtl"] .header-inner {
    direction: rtl !important;
}

html[dir="rtl"] .header-inner {
    flex-direction: row-reverse !important;
}

/* Logo goes to right side in RTL */
html[dir="rtl"] .logo {
    order: 3 !important;
}

/* Navigation RTL */
html[dir="rtl"] .main-nav {
    order: 2 !important;
    direction: rtl !important;
}

html[dir="rtl"] .nav-list {
    flex-direction: row !important;
    direction: rtl !important;
}

/* Header actions (search, language) go to left in RTL */
html[dir="rtl"] .header-actions {
    order: 1 !important;
    flex-direction: row-reverse !important;
}

/* Mega menu RTL */
html[dir="rtl"] .mega-menu,
html[dir="rtl"] .mega-menu-container,
html[dir="rtl"] .mega-menu-grid {
    direction: rtl !important;
    text-align: right !important;
}

html[dir="rtl"] .mega-menu-column {
    text-align: right !important;
}

html[dir="rtl"] .mega-menu-links li a {
    flex-direction: row-reverse !important;
    justify-content: flex-end !important;
    text-align: right !important;
}

html[dir="rtl"] .mega-menu-links li a .mega-link-icon {
    margin-left: 0.75rem !important;
    margin-right: 0 !important;
}

html[dir="rtl"] .mega-menu-feature,
html[dir="rtl"] .mega-feature-content {
    text-align: right !important;
}

/* Mobile menu RTL */
html[dir="rtl"] .mobile-menu {
    direction: rtl !important;
    text-align: right !important;
}

html[dir="rtl"] .mobile-nav {
    direction: rtl !important;
    text-align: right !important;
}

html[dir="rtl"] .mobile-nav-toggle {
    flex-direction: row-reverse !important;
    text-align: right !important;
}

html[dir="rtl"] .mobile-nav-submenu {
    text-align: right !important;
    padding-right: 1rem !important;
    padding-left: 0 !important;
}

/* Search overlay RTL */
html[dir="rtl"] .search-overlay,
html[dir="rtl"] .search-container {
    direction: rtl !important;
    text-align: right !important;
}

html[dir="rtl"] .search-input {
    text-align: right !important;
}

html[dir="rtl"] .search-tags {
    justify-content: flex-end !important;
}

/* Body RTL class support */
body.rtl {
    direction: rtl !important;
}

body.rtl .header-inner {
    flex-direction: row-reverse !important;
}

body.rtl .logo {
    order: 3 !important;
}

body.rtl .main-nav {
    order: 2 !important;
}

body.rtl .nav-list {
    flex-direction: row-reverse !important;
}

body.rtl .header-actions {
    order: 1 !important;
    flex-direction: row-reverse !important;
}

body.rtl .mega-menu-grid {
    direction: rtl !important;
    text-align: right !important;
}

body.rtl .mobile-menu,
body.rtl .mobile-nav {
    direction: rtl !important;
    text-align: right !important;
}
