@charset "UTF-8";

/* ==========================================================================
   1. VARIABLES & RESET
   ========================================================================== */
:root {
    /* Main Luxury Colors */
    --primary-color: #061121;
    /* Very Deep Navy / Midnight */
    --primary-light: #0d2240;
    /* Lighter Navy */
    --accent-color: #d4af37;
    /* Luxurious Gold */
    --accent-dark: #b8860b;
    /* Dark Goldenrod */
    --accent-light: #f3e5ab;
    /* Soft Vanilla Gold */

    /* Text Colors */
    --text-dark: #222222;
    --text-light: #ffffff;
    --text-muted: #a0aec0;

    /* Backgrounds */
    --bg-light: #f4efe6;
    /* Desert Sand Light */
    --bg-gray: #e6dfd3;
    /* Desert Sand Darker */
    --bg-dark: #0a0a0a;

    /* Gradients */
    --gold-gradient: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
    --dark-gradient: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    --glass-bg: rgba(6, 17, 33, 0.7);
    --glass-border: rgba(212, 175, 55, 0.3);

    /* Typography */
    --font-main: 'Cairo', sans-serif;
    --font-heading: 'Playfair Display', serif;

    /* Spacing & Transitions */
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --border-radius: 12px;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    direction: ltr; /* Force scrollbar to the right */
}

/* Custom Elegant Scrollbar (Navy + Gold) */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--primary-color);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, var(--accent-color), var(--accent-dark));
    border-radius: 5px;
    border: 2px solid var(--primary-color);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}

/* Firefox Scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--accent-color) var(--primary-color);
}

body {
    direction: rtl; /* Keep content RTL */
    font-family: var(--font-main);
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.7;
}

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

ul {
    list-style: none;
}

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

/* ==========================================================================
   2. REUSABLE COMPONENTS
   ========================================================================== */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 25px;
}

/* Elegant Titles */
.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.3;
}

.section-title span {
    color: var(--accent-color);
}

.golden-subtitle {
    display: inline-block;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 5px;
}

.center {
    text-align: center;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background: var(--gold-gradient);
    color: var(--primary-color);
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 800;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.5);
    color: #000;
}

.btn-glow {
    display: inline-block;
    background: transparent;
    color: var(--accent-color);
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 700;
    border: 1px solid var(--accent-color);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.btn-glow:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.6);
}

/* ==========================================================================
   3. HEADER / NAVBAR
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(6, 17, 33, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.4s ease;
}

.navbar.header-hidden {
    transform: translateY(-100%);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    font-size: 2.2rem;
    color: var(--accent-color);
}

.logo-text h1 {
    color: var(--text-light);
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1;
}

.logo-text p {
    color: var(--accent-color);
    font-size: 0.75rem;
    letter-spacing: 3px;
    font-weight: 700;
    font-family: var(--font-heading);
}

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

.nav-links a:not(.btn-glow) {
    color: var(--text-light);
    font-weight: 600;
    font-size: 1.05rem;
}

.nav-links a:not(.btn-glow):hover {
    color: var(--accent-color);
}

/* ==========================================================================
   4. HERO SECTION (GLASSMORPHISM)
   ========================================================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    /* slightly zoomed for premium feel */
    z-index: 1;
}

.hero-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(6, 17, 33, 0.95) 0%, rgba(6, 17, 33, 0.6) 50%, rgba(6, 17, 33, 0.2) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
}

.hero-glass-box {
    background: rgba(6, 17, 33, 0.45);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 4px solid var(--accent-color);
    padding: 80px 60px;
    /* Made it taller and wider */
    border-radius: var(--border-radius);
    max-width: 800px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    margin-right: 0;
    /* Snap to right edge of container */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Align text to the right (RTL context) */
    text-align: right;
}

html[dir="ltr"] .hero-glass-box {
    border-right: none;
    border-left: 4px solid var(--accent-color);
    margin-right: auto;
    /* Push away from right */
    margin-left: 0;
    /* Snap to left edge */
    align-items: flex-start;
    /* Align text to the left (LTR context) */
    text-align: left;
}

.hero-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.15);
    color: var(--accent-light);
    padding: 8px 15px;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.15;
    color: var(--text-light);
    margin-bottom: 20px;
    text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.3);
}

.hero-title span {
    color: var(--accent-color);
    font-family: var(--font-heading);
    font-style: italic;
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: 600;
    display: block;
    margin-top: 10px;
    color: #e2e8f0;
    font-style: normal !important;
    text-shadow: 1px 2px 5px rgba(0, 0, 0, 0.4);
}

.hero-desc {
    font-size: 1.4rem;
    color: #d1d5db;
    margin-bottom: 40px;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    justify-content: center;
    width: 100%;
}

/* Custom Shape Divider */
.custom-shape-divider-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    z-index: 5;
}

.custom-shape-divider-bottom svg {
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.custom-shape-divider-bottom .shape-fill {
    fill: var(--bg-light);
}

.custom-shape-divider-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 5;
}

.custom-shape-divider-top svg {
    display: block;
    width: calc(100% + 1.3px);
    height: 70px;
    filter: drop-shadow(0 15px 15px rgba(0, 0, 0, 0.08));
}

.custom-shape-divider-top .shape-fill {
    fill: var(--bg-light);
}


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

.founder-box {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.founder-content {
    flex: 1.2;
}

.founder-quote {
    position: relative;
    padding: 40px;
    background: var(--bg-gray);
    border-right: 6px solid var(--accent-color);
    border-radius: var(--border-radius);
    margin: 40px 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.quote-icon {
    position: absolute;
    top: -20px;
    right: 25px;
    font-size: 3.5rem;
    color: var(--accent-color);
    opacity: 0.2;
}

.founder-quote p {
    margin-bottom: 15px;
    font-size: 1.25rem;
    color: #333;
    line-height: 1.9;
}

.founder-name h3 {
    color: var(--primary-color);
    font-size: 1.9rem;
    font-weight: 800;
}

.founder-name p {
    color: var(--accent-dark);
    font-weight: 700;
    font-size: 1.1rem;
}

.founder-image-wrapper {
    flex: 0.8;
    position: relative;
    transform: scale(1.05);
}

.founder-img {
    border-radius: var(--border-radius);
    position: relative;
    z-index: 2;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.gold-frame {
    position: absolute;
    top: -25px;
    bottom: 25px;
    right: -25px;
    left: 25px;
    border: 4px solid var(--accent-color);
    border-radius: var(--border-radius);
    z-index: 1;
}

html[dir="ltr"] .gold-frame {
    right: 25px;
    left: -25px;
}

html[dir="ltr"] .founder-quote {
    border-right: none;
    border-left: 6px solid var(--accent-color);
}

html[dir="ltr"] .quote-icon {
    right: auto;
    left: 25px;
}

/* Interactive Overview Sector Tags */
.sector-tag {
    background: #ffffff;
    padding: 15px 20px;
    border-radius: 12px;
    border-right: 4px solid var(--accent-color);
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

html[dir="ltr"] .sector-tag {
    border-right: none;
    border-left: 4px solid var(--accent-color);
}

.sector-tag i {
    font-size: 1.5rem;
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.sector-tag:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    background: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
}

.sector-tag:hover i {
    color: #ffffff;
    transform: scale(1.2);
}

/* Vision Mission Values Grid */
.vms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.vms-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    border-bottom: 4px solid transparent;
    transition: var(--transition);
}

.vms-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.vms-card.highlight {
    border-bottom-color: var(--accent-color);
    background: var(--primary-color);
    color: #fff;
}

.vms-card.highlight h3 {
    color: var(--accent-light);
}

.vms-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.vms-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.vms-card p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
}

.vms-card.highlight p {
    color: #d1d5db;
}

.values-list {
    text-align: right;
}

.values-list li {
    margin-bottom: 10px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.values-list li i {
    color: var(--accent-color);
}

/* ==========================================================================
   6. DIVISIONS (ZIG-ZAG LAYOUT)
   ========================================================================== */
.divisions-section {
    padding: 0 0 100px;
    background: var(--bg-light);
    position: relative;
}

.division-row {
    display: flex;
    min-height: 600px;
    margin-bottom: 120px;
    /* Increased margin for spacing */
    position: relative;
}

/* Massive Architectural Divider between rows */
.division-row:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -10vw;
    width: 120vw;
    height: 80px;
    background: var(--gold-gradient);
    transform: skewY(-4deg);
    z-index: 1;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.division-row:not(:last-child)::before {
    content: '';
    position: absolute;
    bottom: -120px;
    left: -10vw;
    width: 120vw;
    height: 80px;
    background: var(--primary-color);
    transform: skewY(3deg);
    z-index: 2;
    opacity: 0.9;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3);
}

.division-row.reverse {
    flex-direction: row-reverse;
}

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

.div-image-col {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.div-image-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.division-row:hover .div-image-col img {
    transform: scale(1.05);
}

.img-overlay-gold {
    position: absolute;
    inset: 0;
    background: rgba(212, 175, 55, 0.15);
    mix-blend-mode: multiply;
}

.img-overlay-blue {
    position: absolute;
    inset: 0;
    background: rgba(6, 17, 33, 0.3);
    mix-blend-mode: multiply;
}

.div-text-col {
    flex: 1;
    background: var(--bg-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.div-glass-card {
    background: rgba(255, 255, 255, 0.90);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    padding: 60px;
    width: 90%;
    margin: -80px 0;
    /* Creates vertical overlap effect */
    position: relative;
    z-index: 10;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    border-radius: var(--border-radius);
    border-top: 5px solid var(--accent-color);
}

/* Force 2-column layout inside the card */
@media (min-width: 1200px) {
    .div-glass-card {
        column-count: 2;
        column-gap: 50px;
        width: 95%;
    }

    .div-glass-card>* {
        break-inside: avoid;
    }

    .div-glass-card>strong:first-of-type {
        break-before: column;
        display: inline-block;
        width: 100%;
        margin-top: 0 !important;
    }

    .div-glass-card h2,
    .div-glass-card h3 {
        column-span: none;
    }
}

/* Asymmetric Overlap Effect (RTL by default) */
.division-row .div-glass-card {
    right: -100px;
    left: auto;
}

.division-row.reverse .div-glass-card {
    right: 100px;
    left: auto;
}

/* LTR overrides for Overlap */
html[dir="ltr"] .division-row .div-glass-card {
    left: -100px;
    right: auto;
}

html[dir="ltr"] .division-row.reverse .div-glass-card {
    left: 100px;
    right: auto;
}

.div-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 900;
    color: rgba(6, 17, 33, 0.05);
    position: absolute;
    top: 10px;
    left: 30px;
    line-height: 1;
}

.div-glass-card h2 {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.div-glass-card h2 span {
    color: var(--accent-color);
}

.div-glass-card p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
}

.div-list {
    margin-bottom: 25px;
}

.div-list li {
    padding-right: 25px;
    position: relative;
    margin-bottom: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary-color);
}

.div-list li::before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 0;
    color: var(--accent-color);
}

.div-experience {
    background: rgba(212, 175, 55, 0.1);
    padding: 20px;
    border-radius: 8px;
    border-right: 3px solid var(--accent-color);
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
}

.div-experience strong {
    color: var(--primary-color);
}

/* ==========================================================================
   7. AGENCIES & CONFERENCES
   ========================================================================== */
.agencies-section {
    position: relative;
    padding: 120px 0 80px;
    background: var(--primary-color);
    color: #fff;
    margin-top: 50px;
    /* Restored margin to clear overlap */
    z-index: 5;
}

.agencies-section::before {
    content: '';
    position: absolute;
    top: -40px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-color);
    transform: skewY(2deg);
    transform-origin: top right;
    z-index: -1;
    border-top: 5px solid var(--accent-color);
    box-shadow: 0 -20px 40px rgba(0, 0, 0, 0.15);
}

html[dir="ltr"] .agencies-section::before {
    transform: skewY(-2deg);
    transform-origin: top left;
}

.agencies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.metal-card {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.metal-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    animation: shine 6s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    20% {
        left: 200%;
    }

    100% {
        left: 200%;
    }
}

.metal-card h3.eng-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    letter-spacing: 2px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}

.metal-card .country {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    margin-bottom: 10px;
}

/* Conferences */
.conferences-wrapper {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 50px;
    border-radius: var(--border-radius);
    text-align: center;
}

.sub-heading-gold {
    color: var(--accent-color);
    font-size: 2rem;
    margin-bottom: 15px;
}

.conf-desc {
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.conf-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.conf-tag {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 1.1rem;
    color: #e2e8f0;
    font-family: 'Arial', sans-serif;
    transition: var(--transition);
}

.conf-tag:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    border-color: var(--accent-color);
}

/* ==========================================================================
   8. CLIENTS (LUXURY PLATES)
   ========================================================================== */
.clients-section {
    padding: 100px 0;
    background: var(--bg-gray);
}

.luxury-clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.client-plate {
    background: #ffffff;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: #334155;
    border-bottom: 3px solid transparent;
    transition: var(--transition);
    letter-spacing: 1px;
}

.client-plate:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border-bottom-color: var(--accent-color);
    color: var(--primary-color);
}

/* ==========================================================================
   9. HSE ADVANCED
   ========================================================================== */
.hse-advanced {
    padding: 50px 0 100px;
    background: var(--bg-gray);
}

.hse-card-huge {
    display: flex;
    background: var(--primary-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.hse-bg-img {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 400px;
}

.hse-content-box {
    flex: 1.2;
    padding: 60px;
    color: #fff;
}

.hse-content-box h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.hse-content-box h2 span {
    color: var(--accent-color);
}

.hse-content-box p {
    font-size: 1.2rem;
    color: #cbd5e1;
    margin-bottom: 30px;
}

.hse-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.pill {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pill i {
    color: var(--accent-color);
}

/* ==========================================================================
   10. VISION 2030
   ========================================================================== */
.vision2030-section {
    padding: 100px 0;
    background: transparent;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.vision-flex {
    display: flex;
    gap: 50px;
    align-items: center;
}

.vision-text {
    flex: 1.2;
}

.vision-text p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: #475569;
}

.vision-list li {
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
}

.vision-list li i {
    color: var(--accent-color);
    font-size: 1.5rem;
}

.vision-image-wrapper {
    flex: 1;
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.vision-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
    transform: scale(1.05);
    transition: var(--transition);
}

.vision-image-wrapper:hover .vision-main-img {
    transform: scale(1);
}

.vision-glass-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(6, 17, 33, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 25px 40px;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-left: 5px solid var(--accent-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.vision-glass-badge .year {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--accent-color);
    font-family: var(--font-heading);
    line-height: 1;
}

.vision-glass-badge .text {
    font-size: 1.2rem;
    color: #fff;
    font-weight: 700;
    letter-spacing: 4px;
    margin-top: 5px;
}

/* ==========================================================================
   11. LUXURY FOOTER
   ========================================================================== */
.luxury-footer {
    background: #040c17;
    color: #94a3b8;
    padding: 80px 0 20px;
    border-top: 4px solid var(--accent-color);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand .logo-icon-large {
    font-size: 3.5rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.footer-brand h2 {
    font-size: 2.5rem;
    color: #fff;
    font-weight: 900;
    margin-bottom: 5px;
}

.footer-brand h2 span {
    color: var(--accent-color);
}

.footer-contact-info h3 {
    color: #fff;
    margin-bottom: 25px;
    font-size: 1.5rem;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
    padding-bottom: 10px;
    display: inline-block;
}

.footer-contact-info ul li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-contact-info ul li i {
    color: var(--accent-color);
    font-size: 1.3rem;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    font-size: 1rem;
}

/* ==========================================================================
   12. PRINT MEDIA & RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {

    .division-row,
    .division-row.reverse {
        flex-direction: column;
    }

    .division-row .div-glass-card,
    .division-row.reverse .div-glass-card {
        right: 0;
        margin: -50px 20px 20px;
    }

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

    .founder-box {
        flex-direction: column;
    }

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

    .hse-card-huge {
        flex-direction: column;
    }

    .vision-flex {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
    }

    .hero-title {
        font-size: 3rem;
    }

    .nav-links {
        display: none;
    }
}

@media print {
    body {
        background: #fff !important;
    }

    .hero {
        height: auto !important;
        min-height: 100vh;
    }

    .agencies-section {
        background: #fff !important;
        color: #000 !important;
    }

    .agencies-section .golden-subtitle {
        color: #000;
    }

    .metal-card {
        background: #eee !important;
        box-shadow: none !important;
        border: 1px solid #ccc !important;
        break-inside: avoid;
    }

    .metal-card h3.eng-title {
        -webkit-text-fill-color: #000 !important;
    }

    .conf-tag {
        background: #eee !important;
        color: #000 !important;
        border: 1px solid #ccc !important;
    }

    .hse-advanced {
        break-before: page;
    }

    .divisions-section .division-row {
        break-inside: avoid;
        margin-bottom: 50px;
    }

    .div-glass-card {
        background: #fff !important;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1) !important;
        margin: 0 !important;
    }

    .luxury-footer {
        background: #fff !important;
        color: #000 !important;
        break-inside: avoid;
    }

    .footer-contact-info h3,
    .footer-brand h2 {
        color: #000 !important;
    }

    .custom-shape-divider-top,
    .custom-shape-divider-bottom {
        display: none;
    }
}

/* ==========================================================================
   13. LTR (ENGLISH) OVERRIDES
   ========================================================================== */
html[dir="ltr"] .hero-glass-box {
    border-right: none;
    border-left: 4px solid var(--accent-color);
}

html[dir="ltr"] .founder-quote {
    border-right: none;
    border-left: 4px solid var(--accent-color);
}

html[dir="ltr"] .quote-icon {
    right: auto;
    left: 20px;
    transform: scaleX(-1);
}

html[dir="ltr"] .values-list {
    text-align: left;
}

html[dir="ltr"] .division-row .div-glass-card {
    right: auto;
    left: -50px;
}

html[dir="ltr"] .division-row.reverse .div-glass-card {
    right: auto;
    left: 50px;
}

html[dir="ltr"] .div-number {
    left: auto;
    right: 30px;
}

html[dir="ltr"] .div-list li {
    padding-right: 0;
    padding-left: 25px;
}

html[dir="ltr"] .div-list li::before {
    right: auto;
    left: 0;
}

html[dir="ltr"] .div-experience {
    border-right: none;
    border-left: 3px solid var(--accent-color);
}

html[dir="ltr"] .vision-glass-badge {
    left: auto;
    right: 30px;
    border-left: 1px solid rgba(212, 175, 55, 0.4);
    border-right: 5px solid var(--accent-color);
}

@media (max-width: 1024px) {

    html[dir="ltr"] .division-row .div-glass-card,
    html[dir="ltr"] .division-row.reverse .div-glass-card {
        left: 0;
        right: 0;
        margin: -50px 20px 20px;
    }
}

/* ==========================================================================
   14. INTERACTIVITY & HOVER EFFECTS (Added globally to all cards)
   ========================================================================== */
.vms-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.vms-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-color);
}

.metal-card {
    transition: all 0.4s ease;
    cursor: pointer;
}

.metal-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.25);
    border-bottom: 3px solid var(--accent-light);
}

.client-plate {
    transition: all 0.4s ease;
    cursor: pointer;
}

.client-plate:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-color);
    color: var(--primary-color);
}

.div-glass-card {
    transition: all 0.5s ease;
}

.div-glass-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    border-left-color: var(--accent-color);
}

.org-structure-section {
    transition: all 0.5s ease;
}

.org-structure-section:hover {
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
}

.hse-card-huge {
    transition: all 0.5s ease;
    cursor: pointer;
}

.hse-card-huge:hover {
    transform: scale(1.01);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

/* ==========================================================================
   15. ORGANIZATIONAL TREE STYLES
   ========================================================================== */
.org-tree {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 20px 0;
    margin-top: 20px;
}

.tree-node {
    padding: 15px 25px;
    background: var(--bg-gray);
    color: var(--primary-color);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    font-weight: 700;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    z-index: 2;
    min-width: 180px;
}

.tree-node:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.25);
    border-color: var(--accent-color);
    background: #fff;
}

.tree-node.leader {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--accent-color);
    font-size: 1.2rem;
    padding: 20px 40px;
}

.tree-node.ceo {
    background: #1a2a40;
    color: #fff;
    border-color: var(--accent-color);
}

.tree-node.support {
    background: #fff;
    border-color: #ddd;
    color: #555;
    font-size: 0.95rem;
    padding: 12px 20px;
}

.tree-line {
    width: 2px;
    height: 40px;
    background: var(--accent-color);
    margin: 0 auto;
}

.level-3 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    position: relative;
    padding-top: 30px;
    max-width: 1100px;
}

/* Horizontal connecting line */
.level-3::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--accent-color);
}

/* Vertical drop lines */
.level-3 .tree-node::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 30px;
    background: var(--accent-color);
    z-index: -1;
}

/* Fix LTR support for level-3 lines */
html[dir="ltr"] .level-3 .tree-node::before {
    transform: translateX(-50%);
}


/* ==========================================================================
   16. LOGO STYLES
   ========================================================================== */
img.brand-logo {
    height: 70px !important;
    width: auto !important;
    max-width: 250px !important;
    object-fit: contain;
    transition: transform 0.3s ease;
    display: block;
}

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

img.footer-logo {
    height: 100px !important;
    width: auto !important;
    max-width: 300px !important;
    object-fit: contain;
    margin-bottom: 20px;
}

/* Add blend mode to hide logo background */
img.brand-logo,
img.footer-logo {
    mix-blend-mode: lighten;
}

/* ==========================================================================
   17. INTERACTIVE TABS (DIVISIONS)
   ========================================================================== */
.tabs-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

@media (min-width: 992px) {
    .tabs-wrapper {
        flex-direction: row;
        align-items: flex-start;
    }
}

.tabs-sidebar {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    gap: 10px;
    padding-bottom: 15px;
    flex: 0 0 300px;
}

@media (min-width: 992px) {
    .tabs-sidebar {
        flex-direction: column;
        overflow-x: visible;
        padding-bottom: 0;
        border-left: 2px solid rgba(212, 175, 55, 0.2);
        padding-left: 20px;
    }

    html[dir="ltr"] .tabs-sidebar {
        border-left: none;
        border-right: 2px solid rgba(212, 175, 55, 0.2);
        padding-left: 0;
        padding-right: 20px;
    }
}

.tab-btn {
    background: transparent;
    border: none;
    text-align: right;
    padding: 15px 20px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #8892b0;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: var(--border-radius);
    white-space: nowrap;
    position: relative;
}

html[dir="ltr"] .tab-btn {
    text-align: left;
}

.tab-btn:hover {
    color: var(--accent-color);
    background: rgba(212, 175, 55, 0.05);
}

.tab-btn.active {
    color: var(--accent-light);
    background: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (min-width: 992px) {
    .tab-btn::before {
        content: '';
        position: absolute;
        right: -22px;
        top: 50%;
        transform: translateY(-50%);
        width: 4px;
        height: 0;
        background: var(--accent-color);
        transition: height 0.3s ease;
        border-radius: 2px;
    }

    html[dir="ltr"] .tab-btn::before {
        right: auto;
        left: -22px;
    }

    .tab-btn.active::before {
        height: 100%;
    }
}

.tabs-content {
    flex: 1;
    min-height: 500px;
    position: relative;
}

.tab-panel {
    display: none;
    animation: fadeIn 0.5s ease;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.tab-panel.active {
    display: flex;
    flex-direction: column;
}

@media (min-width: 992px) {
    .tab-panel.active {
        flex-direction: row;
    }
}

.tab-image-col {
    flex: 0 0 40%;
    position: relative;
    min-height: 250px;
}

.tab-image-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

@media (max-width: 991px) {
    .tab-image-col {
        min-height: 300px;
    }

    .tab-image-col img {
        position: relative;
        height: 300px;
    }
}

.tab-text-col {
    flex: 1;
    padding: 40px;
}

.tab-text-col h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.tab-text-col h2 span {
    color: var(--accent-color);
}

.tab-text-col p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.tab-text-col .div-list li {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 12px;
}

.tab-text-col .div-experience {
    background: #f8fafc;
    padding: 20px;
    border-right: 3px solid var(--accent-color);
    border-radius: var(--border-radius);
    margin-top: 30px;
}

html[dir="ltr"] .tab-text-col .div-experience {
    border-right: none;
    border-left: 3px solid var(--accent-color);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

/* ==========================================================================
   18. FULL-WIDTH PREMIUM SECTIONS (HSE & VISION 2030)
   ========================================================================== */
.full-width-section {
    position: relative;
    padding: 80px 0;
    color: #fff;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax effect */
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Removed specific backgrounds to allow inline HTML backgrounds */

.full-width-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(6, 17, 33, 0.92) 0%, rgba(6, 17, 33, 0.6) 100%);
    z-index: 1;
}

.full-width-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.glass-panel-dark {
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 50px;
    border-radius: var(--border-radius);
    max-width: 650px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    border-right: 5px solid var(--accent-color);
}

html[dir="ltr"] .glass-panel-dark {
    border-right: none;
    border-left: 5px solid var(--accent-color);
}

.glass-panel-dark h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 25px;
    font-weight: 800;
}

.glass-panel-dark h2 span {
    color: var(--accent-color);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

.glass-panel-dark p {
    font-size: 1.2rem;
    color: #e0e0e0;
    line-height: 1.8;
}

.glass-panel-dark ul li {
    font-size: 1.15rem;
    color: #d1d5db;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.glass-panel-dark ul li i {
    color: var(--accent-color);
    margin-left: 15px;
    font-size: 1.3rem;
}

html[dir="ltr"] .glass-panel-dark ul li i {
    margin-left: 0;
    margin-right: 15px;
}

/* Interactive Policy Pills */
.hse-pills .pill {
    background: #1a222c;
    color: #e2e8f0;
    padding: 12px 22px;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    display: inline-block;
}

.hse-pills .pill:hover {
    transform: translateY(-6px);
    background: var(--accent-color);
    color: #111;
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.3);
    border-color: var(--accent-color);
}

/* ==============================================
   CONTACT FORM GLASS STYLING
============================================== */
.contact-glass-box {
    background: rgba(6, 17, 33, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    border-top: 4px solid var(--accent-color);
}

.contact-glass-box input,
.contact-glass-box textarea {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    transition: all 0.3s ease;
}

.contact-glass-box input::placeholder,
.contact-glass-box textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.contact-glass-box input:focus,
.contact-glass-box textarea:focus {
    outline: none;
    border-color: var(--accent-color) !important;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

/* ==============================================
   MARQUEE TICKER (CLIENTS)
============================================== */
.marquee-content {
    display: flex;
    gap: 30px;
    animation: scroll-marquee 25s linear infinite;
    width: max-content;
}

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

    100% {
        transform: translateX(-50%);
    }
}

html[dir="rtl"] .marquee-content {
    animation: scroll-marquee-rtl 25s linear infinite;
}

@keyframes scroll-marquee-rtl {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(50%);
    }
}

.client-plate {
    background: #0a0d14;
    /* Dark blue background */
    border: 1px solid rgba(212, 175, 55, 0.3);
    /* Subtle gold border */
    padding: 20px 40px;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-color);
    /* Gold text */
    text-align: center;
    min-width: 150px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.client-plate:hover {
    background: var(--accent-color);
    color: #111;
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 25px rgba(212, 175, 55, 0.4);
}

/* ==============================================
   FINAL POLISH (Lists, Sticky Nav, ScrollToTop)
============================================== */
.div-list {
    list-style: none;
    padding: 0;
}

.div-list li {
    position: relative;
    padding-right: 25px;
    margin-bottom: 12px;
}

html[dir="rtl"] .div-list li::before {
    content: "◆";
    position: absolute;
    right: 0;
    top: 5px;
    color: var(--accent-color);
    font-size: 0.8rem;
}

html[dir="ltr"] .div-list li {
    padding-right: 0;
    padding-left: 25px;
}

html[dir="ltr"] .div-list li::before {
    content: "◆";
    position: absolute;
    left: 0;
    right: auto;
    top: 5px;
    color: var(--accent-color);
    font-size: 0.8rem;
}

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

    .contact-image-side {
        min-height: 300px;
    }
}

.luxury-input {
    flex: 1;
    padding: 15px;
    border-radius: 8px;
    font-family: var(--font-main);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    transition: all 0.3s ease;
}

.luxury-input::placeholder {
    color: #999;
}

.luxury-input:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

#scrollTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--accent-color);
    color: #111;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    border: none;
}

#scrollTopBtn.visible {
    opacity: 1;
    visibility: visible;
}

#scrollTopBtn:hover {
    transform: translateY(-5px);
    background: #fff;
    color: var(--primary-color);
}

html[dir="ltr"] #scrollTopBtn {
    right: 30px;
    left: auto;
}

header {
    transition: all 0.4s ease;
}

header.scrolled {
    background: rgba(6, 17, 33, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    padding: 10px 0;
}

/* ==========================================================================
   10. ABOUT SECTION (Monolith & Editorial Redesign)
   تمت إضافة هذه التنسيقات بناءً على طلب العميل للحصول على تصميم فائق الفخامة
   ========================================================================== */

/* 
 * The Founder Monolith Block 
 * صندوق المؤسس - تصميم الكتلة المدمجة باللون الكحلي الداكن
 */
.founder-monolith {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--primary-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.2);
    margin-bottom: 100px;
    position: relative;
    transition: all 0.5s ease;
}

.founder-monolith:hover {
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.3);
    transform: translateY(-5px);
}

.monolith-content {
    padding: 80px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.monolith-quote-bg {
    font-size: 15rem;
    color: var(--accent-color);
    opacity: 0.03;
    position: absolute;
    top: -50px;
    left: -20px;
    z-index: 0;
    line-height: 1;
    pointer-events: none;
}

html[dir="rtl"] .monolith-quote-bg {
    left: auto;
    right: -20px;
}

.monolith-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.monolith-image-wrapper img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9) contrast(1.1);
    transition: transform 1s ease;
}

.founder-monolith:hover .monolith-image-wrapper img {
    transform: scale(1.05);
    filter: brightness(1);
}

.monolith-text {
    color: #e2e8f0;
    font-size: 1.15rem;
    line-height: 2;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.monolith-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 30px;
    line-height: 1.3;
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, #fff 0%, #a0aec0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.monolith-title span {
    background: linear-gradient(135deg, var(--accent-color) 0%, #b8860b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* 
 * Editorial Overview (No Boxes) 
 * نظرة عامة على الشركة - تصميم تحريري يطفو على الخلفية بدون صناديق
 */
.editorial-overview {
    text-align: center;
    margin-bottom: 100px;
    position: relative;
}

.editorial-sectors {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 50px 0;
}

.editorial-sector-tag {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 12px 25px;
    border-radius: 50px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.editorial-sector-tag i {
    color: var(--accent-color);
}

.editorial-sector-tag:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-color);
}

/* 
 * VMS Cards Fix & Hover 
 * بطاقات الرؤية والرسالة - تأثيرات التحويم المتقدمة
 */
.vms-card {
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.03);
    background: rgba(255, 255, 255, 0.9);
}

.vms-card:hover {
    transform: translateY(-20px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
    z-index: 10;
    border-color: var(--accent-color);
    background: #fff;
}

.vms-card.highlight {
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--primary-color);
    color: white;
    border: none;
}

.vms-card.highlight:hover {
    transform: translateY(-20px) scale(1.08);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
    background: var(--primary-color) !important;
    color: white !important;
    border: 1px solid var(--accent-color);
}

/* 
 * Org Structure Glow 
 * الهيكل التنظيمي - تأثيرات الخطوط المضيئة عند التحويم
 */
.org-structure-section {
    transition: all 0.5s ease;
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    padding: 0 !important;
}

.org-structure-section:hover {
    box-shadow: none;
}

.tree-node {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.tree-node:hover {
    transform: scale(1.1);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
    background: var(--primary-color);
    color: white;
    border-color: var(--accent-color);
    z-index: 2;
    position: relative;
}

.tree-node.leader {
    background: linear-gradient(135deg, var(--accent-color), #b8860b);
    color: var(--primary-color);
    border: none;
}

.tree-node.leader:hover {
    transform: scale(1.15);
    box-shadow: 0 30px 60px rgba(212, 175, 55, 0.4);
}

.tree-line {
    transition: background-color 0.4s ease;
}

.org-tree:hover .tree-line {
    background-color: var(--accent-color);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.tree-level-3::before {
    transition: border-color 0.4s ease;
}

.org-tree:hover .tree-level-3::before {
    border-top-color: var(--accent-color);
}

.tree-level-3 .tree-node::before {
    transition: background-color 0.4s ease;
}

.org-tree:hover .tree-level-3 .tree-node::before {
    background-color: var(--accent-color);
}

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

    .monolith-image-wrapper {
        min-height: 400px;
    }

    .monolith-content {
        padding: 40px 20px;
    }

    .monolith-title {
        font-size: 2.2rem;
    }
}

/* ==========================================================================
   11. CLIENTS SECTION (Marquee Strip)
   قسم العملاء - شريط متحرك لا نهائي
   ========================================================================== */
.marquee-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: transparent;
    padding: 60px 0;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.marquee-content {
    display: flex;
    width: max-content;
    animation: scrollMarquee 40s linear infinite;
    gap: 80px;
    align-items: center;
}

.marquee-content:hover {
    animation-play-state: paused;
}

@keyframes scrollMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

html[dir="rtl"] .marquee-content {
    animation: scrollMarqueeRTL 40s linear infinite;
}

@keyframes scrollMarqueeRTL {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(50%);
    }
}

.client-luxury-text {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--primary-color);
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 3px;
    opacity: 0.5;
    transition: all 0.4s ease;
    cursor: pointer;
    white-space: nowrap;
}

.client-luxury-text:hover {
    opacity: 1;
    color: var(--accent-dark);
    transform: scale(1.1);
}

.client-dot {
    color: var(--accent-color);
    font-size: 1rem;
    opacity: 0.5;
}

/* ==========================================================================
   12. EXECUTIVE CONTACT SECTION
   قسم التواصل المطور
   ========================================================================== */
.executive-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-light);
    font-size: 1.2rem;
    padding: 10px 0;
    transition: all 0.3s ease;
    font-family: var(--font-main);
}

.executive-input:focus {
    outline: none;
    border-bottom: 2px solid var(--accent-color);
}

.executive-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
}

@media (max-width: 992px) {
    #contact .container {
        grid-template-columns: 1fr !important;
        gap: 50px !important;
    }

    #contact h2 {
        font-size: 3rem !important;
    }

    .executive-form-row {
        flex-direction: column;
        gap: 40px !important;
    }
}

/* ==========================================================================
   SCROLL TO TOP BUTTON
   ========================================================================== */
#scrollTopBtn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: var(--gold-gradient);
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
    z-index: 999;
    border: none;
}

#scrollTopBtn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#scrollTopBtn:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.6);
}

#scrollTopBtn i {
    color: var(--primary-color) !important;
    font-size: 1.5rem !important;
    line-height: 1 !important;
    font-weight: 900 !important; /* Required for FontAwesome solid icons */
    z-index: 1000;
    position: relative;
    display: block;
}