:root {
    /* Color Palette */
    --color-primary: #051c3d;     /* Deep Corporate Blue */
    --color-primary-light: #0a2a5c;
    --color-accent: #d4af37;      /* Elegant Gold */
    --color-accent-light: #eadd99;
    --color-white: #ffffff;
    --color-light-bg: #f8f9fb;
    --color-text: #1e293b;
    --color-text-muted: #64748b;  /* Slate Grey */
    --color-border: #e2e8f0;
    
    /* Typography */
    --font-en: 'Inter', sans-serif;
    --font-ar: 'Cairo', 'Tajawal', sans-serif;
    
    /* Shadows & Effects */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-ar);
    color: var(--color-text);
    background-color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
    direction: rtl;
}

/* Global Styles */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 6rem 0;
}

.bg-light {
    background-color: var(--color-light-bg);
}

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

.text-gold {
    color: var(--color-accent);
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    font-weight: 700;
}

.btn-primary:hover {
    background-color: #bfa131;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-primary);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

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

.divider {
    width: 60px;
    height: 3px;
    background-color: var(--color-accent);
    margin: 0 auto 1.5rem;
}

/* Animation Classes */
.animate-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { animation-delay: 0.2s; transition-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; transition-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; transition-delay: 0.6s; }

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition-smooth);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.navbar.scrolled {
    padding: 1rem 0;
    background: rgba(5, 28, 61, 0.95);
    backdrop-filter: blur(10px);
    border-bottom-color: rgba(255,255,255,0.05);
    box-shadow: var(--shadow-sm);
}

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

.logo {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    color: var(--color-white);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0px;
    line-height: 1;
}

.logo-subtext {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--color-accent);
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    color: var(--color-white);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0px;
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: var(--transition-smooth);
}

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

.nav-utilities {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.icon-btn {
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.icon-btn:hover {
    color: var(--color-accent);
}

.lang-btn {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--color-white);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-family: var(--font-en);
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.lang-btn:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.05); /* Slight zoom for parallax */
    animation: kenBurns 25s ease-in-out infinite alternate;
}

@keyframes kenBurns {
    0% { transform: scale(1.05) translate(0, 0); }
    100% { transform: scale(1.15) translate(-1%, -1%); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(5, 28, 61, 0.9) 0%, rgba(5, 28, 61, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding-top: 5rem;
}

.hero-headline {
    color: var(--color-white);
    font-size: 4rem;
    letter-spacing: 0px;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-subheadline {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.3rem;
    font-weight: 400;
    max-width: 700px;
    margin-bottom: 3rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--color-white);
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition-fast);
}

.scroll-indicator:hover {
    opacity: 1;
    color: var(--color-accent);
}

.scroll-text {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0px;
    margin-bottom: 0.5rem;
}

.scroll-indicator i {
    animation: bounce 2s infinite;
}

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

/* Highlights Section */
.highlights {
    position: relative;
    z-index: 10;
    margin-top: -80px; /* Pull up over hero slightly */
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.highlight-card {
    background: var(--color-white);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-smooth);
    border-top: 3px solid transparent;
}

.highlight-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-accent);
}

.highlight-icon {
    font-size: 2.5rem;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
}

.highlight-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.highlight-desc {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.stat-card {
    background: var(--color-primary);
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-card .highlight-title {
    color: var(--color-white);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 0.5rem;
    direction: ltr;
    text-align: right;
}

.stat-sub {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

/* Strategic Sectors */
.sectors-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
}

.sector-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 400px;
    cursor: pointer;
    box-shadow: var(--shadow-md);
}

.sector-card:nth-child(1), .sector-card:nth-child(2) {
    grid-column: span 6;
}

.sector-card:nth-child(n+3) {
    grid-column: span 4;
}

.sector-image {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
}

.sector-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.sector-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(5,28,61,0.95) 0%, rgba(5,28,61,0.2) 100%);
    transition: var(--transition-smooth);
}

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

.sector-card:hover .sector-overlay {
    background: linear-gradient(to top, rgba(5,28,61,0.98) 0%, rgba(5,28,61,0.6) 100%);
}

.sector-content {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    padding: 2.5rem;
    color: var(--color-white);
    transform: translateY(60px);
    transition: var(--transition-smooth);
}

.sector-card:hover .sector-content {
    transform: translateY(0);
}

.sector-title {
    color: var(--color-white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    border-right: 3px solid var(--color-accent);
    padding-right: 1rem;
    font-weight: 700;
}

.sector-desc {
    color: rgba(255,255,255,0.8);
    margin-bottom: 1.5rem;
    opacity: 0;
    transition: opacity 0.4s ease 0.2s;
    font-size: 0.95rem;
}

.sector-card:hover .sector-desc {
    opacity: 1;
}

.read-more {
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.read-more i {
    transition: transform 0.3s ease;
}

.sector-card:hover .read-more i {
    transform: translateX(-5px);
}

/* Global Network */
.network-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.portfolio-stats {
    margin: 3rem 0;
}

.stat-row {
    margin-bottom: 1.5rem;
}

.stat-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

.progress-bar {
    width: 100%;
    height: 8px;
    background-color: var(--color-border);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background-color: var(--color-accent);
    border-radius: 4px;
    transform-origin: right;
    animation: scaleX 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes scaleX {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

.key-stats-row {
    display: flex;
    gap: 2rem;
    border-top: 1px solid var(--color-border);
    padding-top: 2rem;
}

.mini-stat-val {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 0.25rem;
    direction: ltr;
    text-align: right;
}

.mini-stat-label {
    color: var(--color-text-muted);
    font-size: 0.85rem;
    font-weight: 600;
}

.network-map {
    position: relative;
    width: 100%;
}

.world-map-img {
    width: 100%;
    opacity: 0.2;
    filter: grayscale(100%);
}

.map-point {
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: var(--color-primary);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 0 4px rgba(5,28,61,0.2);
}

.map-point.ksa { top: 45%; right: 63%; background-color: var(--color-accent); box-shadow: 0 0 0 4px rgba(212,175,55,0.3); }
.map-point.europe { top: 30%; right: 50%; }
.map-point.asia { top: 55%; right: 80%; }
.map-point.na { top: 35%; right: 25%; }

.pulse {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--color-accent);
    opacity: 0.6;
    animation: pulse 2s infinite ease-out;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(3); opacity: 0; }
}

.map-point::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    right: 50%;
    transform: translateX(50%) translateY(-10px);
    background: var(--color-primary);
    color: var(--color-white);
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
}

.map-point:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(50%) translateY(-15px);
}

/* Partners Carousel */
.partners-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 2rem 0;
}

.partners-carousel::before,
.partners-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
}

.partners-carousel::before {
    right: 0;
    background: linear-gradient(to left, var(--color-light-bg), transparent);
}

.partners-carousel::after {
    left: 0;
    background: linear-gradient(to right, var(--color-light-bg), transparent);
}

.partners-track {
    display: flex;
    align-items: center;
    width: calc(200px * 14); /* 7 original + 7 duplicated logos */
    animation: scroll 30s linear infinite;
}

.partner-logo {
    width: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 2rem;
    filter: grayscale(100%) opacity(0.5);
    transition: var(--transition-smooth);
}

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

.partner-logo img {
    max-width: 100%;
    max-height: 50px;
    object-fit: contain;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(200px * 7)); }
}

/* News Section */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.news-card {
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 1px solid var(--color-border);
}

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

.news-tag {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background-color: rgba(212,175,55,0.1);
    color: var(--color-accent);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.news-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    line-height: 1.4;
    font-weight: 700;
}

.news-meta {
    color: var(--color-text-muted);
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

/* Footer */
.footer {
    background-color: var(--color-primary);
    color: rgba(255,255,255,0.7);
    padding: 6rem 0 2rem;
}

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

.footer-brand .logo-text {
    font-size: 1.8rem;
}

.footer-desc {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    max-width: 300px;
}

.footer-heading {
    color: var(--color-white);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer-links ul {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-accent);
    padding-right: 5px;
}

.footer-contact p {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.1);
    color: var(--color-white);
    text-decoration: none;
    transition: var(--transition-fast);
}

.social-icons a:hover {
    background-color: var(--color-accent);
    color: var(--color-primary);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.footer-legal a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    margin-right: 1.5rem;
}

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

/* Responsive */
@media (max-width: 1024px) {
    .hero-headline { font-size: 3.5rem; }
    .highlights-grid { grid-template-columns: repeat(2, 1fr); }
    .sector-card:nth-child(n) { grid-column: span 6; }
    .network-layout { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-menu, .lang-btn { display: none; }
    .mobile-toggle { display: block; }
    .hero-headline { font-size: 2.5rem; }
    .hero-subheadline { font-size: 1.1rem; }
    .highlights-grid { grid-template-columns: 1fr; margin-top: 2rem; }
    .highlights { margin-top: 0; }
    .sector-card:nth-child(n) { grid-column: span 12; height: 300px; }
    .news-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}

/* ULTRA PREMIUM CORPORATE REDESIGN */
:root {
    --color-primary: #0a0f1d;
    --color-primary-light: #162032;
    --color-accent: #d4af37;
    --color-gold: #d4af37;
    --color-bg: #fcfcfc;
    --color-light-bg: #f7f8fa;
    --shadow-sm: 0 4px 24px rgba(0,0,0,0.03);
    --shadow-hover: 0 20px 40px rgba(0,0,0,0.08);
}
body { background-color: var(--color-bg); letter-spacing: -0.2px; }
.navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.03) !important;
}
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.99) !important;
    box-shadow: 0 4px 30px rgba(0,0,0,0.04) !important;
}
.nav-link { color: var(--color-primary) !important; font-weight: 500 !important; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.5px; }
.logo-text { color: var(--color-primary) !important; font-weight: 800; font-size: 1.8rem; letter-spacing: -1px; }
.logo-subtext { color: var(--color-accent) !important; letter-spacing: 2px !important; }
.lang-btn {
    border: 1px solid var(--color-border) !important;
    color: var(--color-primary) !important;
    border-radius: 4px !important;
}
.lang-btn:hover {
    border-color: var(--color-primary) !important;
    background: transparent !important;
}
.btn-primary {
    background: var(--color-primary) !important;
    color: var(--color-white) !important;
    border-radius: 4px !important;
    box-shadow: none !important;
    border: 1px solid var(--color-primary) !important;
    padding: 1.2rem 2.5rem !important;
    font-weight: 600 !important;
    letter-spacing: 1px;
}
.btn-primary:hover {
    background: transparent !important;
    color: var(--color-primary) !important;
    transform: translateY(-2px);
}
.highlight-card, .service-card, .news-card, .vm-card, .contact-info {
    background: var(--color-white) !important;
    border-radius: 8px !important;
    border: 1px solid rgba(0,0,0,0.04) !important;
    box-shadow: var(--shadow-sm) !important;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.highlight-card:hover, .service-card:hover, .news-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: var(--shadow-hover) !important;
    border-color: var(--color-accent) !important;
}
.text-gold {
    color: var(--color-accent) !important;
    background: none !important;
    -webkit-text-fill-color: initial !important;
}
.hero-headline {
    font-weight: 800;
    font-size: 4.5rem;
    letter-spacing: -1.5px;
}
.footer {
    background: var(--color-primary) !important;
    border-radius: 0 !important;
    margin-top: 5rem;
    padding-top: 6rem;
}
.page-header {
    background: var(--color-primary) !important;
    border-radius: 0 !important;
    padding: 12rem 0 6rem;
}
.icon-btn { color: var(--color-primary) !important; }
.mobile-toggle { color: var(--color-primary) !important; }
.section-title { font-weight: 800; letter-spacing: -1px; }
.divider { height: 3px !important; width: 40px !important; background-color: var(--color-accent) !important; }
.highlight-icon i, .service-card i { color: var(--color-accent) !important; }

.hero-overlay {
    background: linear-gradient(135deg, rgba(10, 15, 29, 0.9) 0%, rgba(10, 15, 29, 0.5) 100%) !important;
}

/* Remove Playful Animations */
.hero-content { animation: none !important; transform: none !important; }

