/* ==========================================
   M&A للاستثمارات - EDITORIAL DESIGN SYSTEM
   Web Interface Guidelines Compliant
   ========================================== */

/* Preconnect for performance */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;700;900&family=Tajawal:wght@300;400;500;700;900&display=swap');

/* ==========================================
   ACCESSIBILITY & REDUCED MOTION
   ========================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Focus Visible - Never remove outlines without replacement */
:focus {
    outline: none;
}

:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
    border-radius: 4px;
}

/* Skip to content link for accessibility */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: #000;
    padding: 12px 24px;
    z-index: 10000;
    border-radius: 0 0 8px 8px;
    font-weight: 600;
    text-decoration: none;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

:root {
    /* Primary Colors */
    --primary: #2d8a80;
    --primary-dark: #1e5c55;
    --primary-light: #3aa99e;

    /* Gold Accent */
    --gold: #c9a227;
    --gold-dim: #a68521;
    --gold-light: #dbb84d;

    /* Background Colors */
    --bg-light: #ffffff;
    --bg-section: #f8f9fa;
    --bg-dark: #0a0a0a;

    /* Text Colors */
    --text-dark: #111111;
    --text-medium: #444444;
    --text-light: #666666;
    --text-on-dark: #ffffff;
    --text-on-dark-dim: rgba(255, 255, 255, 0.7);

    /* Border Colors */
    --border-light: rgba(0, 0, 0, 0.1);
    --border-dark: rgba(255, 255, 255, 0.15);

    --font-en: 'Outfit', sans-serif;
    --font-ar: 'Tajawal', sans-serif;

    --ease-out: cubic-bezier(0.25, 1, 0.5, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Reset */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Interactive Elements - Pointer Cursor */
a,
button,
[role="button"],
input[type="submit"],
input[type="button"],
.btn,
.action-btn,
.footer-btn,
.cta-primary,
.cta-outline,
.nav-link,
.lang-btn,
.company-card,
.subs-item,
.sub-card,
.subsidiary-card,
.contact-box,
.contact-link {
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
}

html {
    font-size: 16px;
    background-color: var(--bg-light);
    overflow-x: hidden;
}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    font-family: var(--font-en);
    overflow-x: hidden;
    overflow-y: hidden;
    width: 100%;
    max-width: 100vw;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body[dir="rtl"] {
    font-family: var(--font-ar);
}

/* Typography Guidelines */
h1, h2, h3, h4, h5, h6 {
    text-wrap: balance;
    line-height: 1.2;
}

p {
    text-wrap: pretty;
    max-width: 70ch;
}

/* Tabular numbers for aligned columns */
.tabular-nums {
    font-variant-numeric: tabular-nums;
}

/* Text overflow handling */
.truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ==========================================
   SCROLL ARCHITECTURE
   ========================================== */
.scroller {
    height: 100vh;
    height: 100dvh;
    overflow-y: scroll;
    overflow-x: hidden;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    max-width: 100vw;
}

.scroller::-webkit-scrollbar {
    display: none;
}

.fullscreen-section {
    position: relative;
    height: 100vh;
    width: 100%;
    scroll-snap-align: start;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    /* Subtle separation */
}

/* Alternating light backgrounds */
.fullscreen-section:nth-child(even) {
    background: radial-gradient(circle at 10% 20%, #f5f5f5 0%, #ffffff 90%);
}

.fullscreen-section:nth-child(odd) {
    background: var(--bg-section);
}

/* Hero section with dark overlay */
#hero {
    background: var(--bg-dark);
}

/* Services section - Subtle Enhancement */
#services {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 50%, #f5f5f5 100%);
    position: relative;
}

#services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.3), transparent);
}

/* Contact/Footer section dark */
#contact {
    background: linear-gradient(180deg, #0d0d0d 0%, #1a1a1a 100%);
}

/* ==========================================
   GOLDEN THREAD
   ========================================== */
.golden-thread-container {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 100px;
    width: 2px;
    z-index: 4;
    pointer-events: none;
    opacity: 0.3;
}

[dir="rtl"] .golden-thread-container {
    left: auto;
    right: 100px;
}

.golden-thread-svg {
    width: 100%;
    height: 100%;
}

#thread-path {
    stroke: var(--gold);
    stroke-width: 1;
    stroke-dasharray: 2000;
    stroke-dashoffset: 2000;
}

@media (max-width: 1200px) {
    .golden-thread-container {
        display: none;
    }
}

/* ==========================================
   LAYERS & BACKGROUNDS
   ========================================== */
.bg-layer {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.overlay-layer {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: rgba(5, 5, 5, 0.6);
}

.gradient-side-alt {
    background: linear-gradient(90deg, rgba(5, 5, 5, 0.95) 0%, rgba(5, 5, 5, 0.3) 100%);
}

[dir="rtl"] .gradient-side-alt {
    background: linear-gradient(-90deg, rgba(5, 5, 5, 0.95) 0%, rgba(5, 5, 5, 0.3) 100%);
}

.content-layer {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    padding-top: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* Forced Center */
    text-align: center;
    /* Forced Center */
}

.container {
    width: 85%;
    max-width: 1400px;
    margin: 0 auto;
}

/* ==========================================
   TYPOGRAPHY - EDITORIAL
   ========================================== */
h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.1;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    background: linear-gradient(180deg, #ffffff 0%, #d4af37 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    text-shadow: 0 2px 40px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: var(--text-on-dark-dim);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.highlight-line {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--primary));
    margin: 25px auto;
    border-radius: 2px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-dark);
    margin-bottom: 30px;
    position: relative;
}

.section-title.large {
    font-size: clamp(3rem, 5vw, 4.5rem);
}

.section-title.huge-text {
    font-size: clamp(4rem, 10vw, 8rem);
    opacity: 0.05;
    position: absolute;
    right: 0;
    top: -50px;
    z-index: -1;
    white-space: nowrap;
}

[dir="rtl"] .section-title.huge-text {
    right: auto;
    left: 0;
}

.gradient-text {
    background: linear-gradient(90deg, var(--gold), var(--primary), var(--gold));
    background-size: 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textShine 4s ease-in-out infinite;
}

@keyframes textShine {
    0%, 100% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
}

p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.lead-text {
    font-size: 1.3rem;
    color: var(--text-medium);
    font-weight: 400;
    margin-bottom: 30px;
    line-height: 1.9;
}

.sub-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

.service-desc {
    font-size: 1.15rem;
    color: var(--text-medium);
    line-height: 1.9;
    margin-bottom: 30px;
}

.divider {
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin: 20px 0;
}

/* ==========================================
   SEAMLESS / EDITORIAL COMPONENTS
   ========================================== */

/* Clean Hero */
.seamless-content {
    /* No border, no background, text floats directly */
    text-align: right;
    max-width: 700px;
}

[dir="ltr"] .seamless-content {
    text-align: left;
}

.centered .seamless-content {
    text-align: center;
    margin: 0 auto;
}

/* Editorial Grid (About) */
.editorial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    text-align: center;
    /* Center */
}

[dir="rtl"] .editorial-grid {
    text-align: center;
}

.editorial-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Navigation Spacing */
.nav-menu {
    display: flex;
    gap: 25px;
    list-style: none;
    margin-right: 40px;
    /* Added space between menu and lang switcher */
}

[dir="rtl"] .nav-menu {
    margin-right: 0;
    margin-left: 40px;
}

/* Inner Logo in About Section */
.geo-decor {
    width: 320px;
    height: 320px;
    border: 2px solid rgba(201, 162, 39, 0.4);
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, rgba(45, 138, 128, 0.03) 0%, transparent 70%);
}

.inner-logo {
    width: 160px;
    height: auto;
    opacity: 1;
    filter: drop-shadow(0 5px 25px rgba(45, 138, 128, 0.25));
    transition: transform 0.5s var(--ease-smooth);
}

.geo-decor:hover .inner-logo {
    transform: scale(1.05);
}

.geo-decor::after {
    content: '';
    position: absolute;
    inset: 15px;
    border: 2px solid rgba(45, 138, 128, 0.3);
    border-radius: 50%;
    animation: spinReverse 25s linear infinite;
}

.geo-decor::before {
    content: '';
    position: absolute;
    inset: -10px;
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: 50%;
    animation: spinReverse 30s linear infinite reverse;
}

@keyframes spinReverse {
    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }
}

/* Feature Images */
.feature-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 4px;
    mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
    transition: transform 0.5s var(--ease-out);
}

.feature-image:hover {
    transform: scale(1.02);
}

.glow-effect {
    filter: drop-shadow(0 20px 40px rgba(58, 170, 158, 0.2));
}

/* Real Estate Placeholder */
.real-estate-placeholder {
    width: 100%;
    max-width: 450px;
    height: 350px;
    background: linear-gradient(145deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-light);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.real-estate-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--gold));
}

.placeholder-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(45, 138, 128, 0.3);
    position: relative;
    z-index: 2;
}

.placeholder-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

.placeholder-buildings {
    display: flex;
    gap: 8px;
    align-items: flex-end;
    position: absolute;
    bottom: 60px;
    opacity: 0.15;
}

.building {
    background: var(--primary);
    border-radius: 4px 4px 0 0;
    position: relative;
}

.building::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: calc(100% - 20px);
    background: repeating-linear-gradient(
        to bottom,
        transparent,
        transparent 8px,
        rgba(255,255,255,0.3) 8px,
        rgba(255,255,255,0.3) 10px
    );
}

.building.b1 {
    width: 40px;
    height: 100px;
}

.building.b2 {
    width: 50px;
    height: 140px;
    background: var(--gold);
}

.building.b3 {
    width: 35px;
    height: 80px;
}

.placeholder-label {
    position: absolute;
    bottom: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-medium);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Hover effect */
.real-estate-placeholder:hover .placeholder-icon {
    transform: scale(1.05);
    transition: transform 0.3s var(--ease-smooth);
}

.real-estate-placeholder:hover .placeholder-buildings {
    opacity: 0.25;
    transition: opacity 0.3s;
}

/* Consulting Placeholder */
.consulting-placeholder {
    width: 100%;
    max-width: 450px;
    height: 350px;
    background: linear-gradient(145deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-light);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.consulting-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--primary));
}

.consulting-icon {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dim) 100%) !important;
    box-shadow: 0 10px 30px rgba(201, 162, 39, 0.3) !important;
}

.placeholder-elements {
    display: flex;
    gap: 15px;
    align-items: center;
    position: absolute;
    bottom: 70px;
    opacity: 0.15;
}

.element {
    border-radius: 6px;
    position: relative;
}

.element.doc {
    width: 50px;
    height: 65px;
    background: var(--primary);
    border-radius: 4px;
}

.element.doc::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 8px;
    right: 8px;
    height: 4px;
    background: rgba(255,255,255,0.4);
    border-radius: 2px;
    box-shadow:
        0 10px 0 rgba(255,255,255,0.4),
        0 20px 0 rgba(255,255,255,0.4),
        0 30px 0 rgba(255,255,255,0.4);
}

.element.chat {
    width: 55px;
    height: 45px;
    background: var(--gold);
    border-radius: 12px 12px 12px 0;
}

.element.chat::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 10px;
    right: 10px;
    height: 3px;
    background: rgba(255,255,255,0.4);
    border-radius: 2px;
    box-shadow: 0 8px 0 rgba(255,255,255,0.4);
}

.element.check {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.element.check::before {
    content: '✓';
    color: rgba(255,255,255,0.5);
    font-size: 20px;
    font-weight: bold;
}

.consulting-placeholder:hover .placeholder-icon {
    transform: scale(1.05);
    transition: transform 0.3s var(--ease-smooth);
}

.consulting-placeholder:hover .placeholder-elements {
    opacity: 0.25;
    transition: opacity 0.3s;
}

/* Reverse Grid for alternating layout */
.editorial-grid.reverse {
    direction: ltr;
}

[dir="rtl"] .editorial-grid.reverse {
    direction: rtl;
}

.editorial-grid.reverse .editorial-visual {
    order: 1;
}

.editorial-grid.reverse .editorial-text {
    order: 2;
}

@media (max-width: 1024px) {
    .editorial-grid.reverse {
        direction: inherit;
    }

    .editorial-grid.reverse .editorial-visual,
    .editorial-grid.reverse .editorial-text {
        order: unset;
    }
}

.stats-row {
    display: flex;
    gap: 50px;
    margin-top: 40px;
    border-top: 1px solid var(--border-light);
    padding-top: 30px;
    justify-content: center;
}

/* Learn More Button */
.learn-more-btn {
    display: inline-block;
    padding: 14px 35px;
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s var(--ease-smooth);
    border-radius: 4px;
}

.learn-more-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(45, 138, 128, 0.3);
}

/* Custom Values Header */
.values-custom-header {
    opacity: 1 !important;
    font-size: 2.5rem;
    color: var(--text-dark) !important;
    text-align: center;
    width: 100%;
    margin-bottom: 50px;
    position: relative;
}

.values-custom-header::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 20px auto 0;
}

[dir="rtl"] .values-custom-header {
    text-align: center;
}

/* Section Header Left */
.section-header-left {
    text-align: center;
    margin-bottom: 40px;
}

.stat-num {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Clean Cards (Vision) */
.cards-row.seamless-row {
    gap: 80px;
}

.clean-card {
    flex: 1;
    text-align: right;
    padding-right: 40px;
    border-right: 1px solid var(--gold);
}

[dir="ltr"] .clean-card {
    text-align: left;
    padding-right: 0;
    padding-left: 40px;
    border-right: none;
    border-left: 1px solid var(--gold);
}

.card-num {
    font-size: 4rem;
    font-weight: 900;
    opacity: 0.1;
    line-height: 1;
    margin-bottom: -20px;
}

.clean-card h3 {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 20px;
}

/* Clean Values */
.values-list-clean {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
}

.value-item-clean {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.v-num {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold);
    border: 1px solid var(--gold);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Services Split */
.content-split {
    display: flex;
    justify-content: flex-start;
}

.content-split.alt {
    justify-content: flex-end;
}

/* Glass Panel (Only for Consulting with BG) */
.glass-panel {
    background: rgba(15, 15, 15, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 50px;
    border-radius: 8px;
    max-width: 550px;
}

.glass-panel .sub-label {
    color: var(--gold-light);
}

.glass-panel .section-title {
    color: var(--text-on-dark);
}

.glass-panel .divider {
    background: var(--gold);
}

.glass-panel .service-desc {
    color: var(--text-on-dark-dim);
}

.glass-panel .learn-more-btn {
    border-color: var(--gold);
    color: var(--gold);
}

.glass-panel .learn-more-btn:hover {
    background: var(--gold);
    color: #000;
}

/* Market Clean */
.market-layout-clean {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.type-effect {
    font-size: clamp(1.8rem, 4vw, 3rem);
    color: var(--primary);
    border-bottom: 3px solid var(--gold);
    padding-bottom: 15px;
    display: inline-block;
}

.client-tags {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.client-tag {
    padding: 12px 30px;
    border: 2px solid var(--border-light);
    border-radius: 50px;
    transition: all 0.3s var(--ease-smooth);
    color: var(--text-medium);
    font-weight: 500;
    background: white;
}

.client-tag:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 162, 39, 0.08);
    transform: translateY(-2px);
}

/* Clients List Clean */
.clients-list-clean {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 8px;
}

.clients-list-clean h3 {
    color: var(--text-dark);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

/* SWOT Clean */
.sw-wrapper-clean {
    display: flex;
    gap: 60px;
    justify-content: center;
}

.sw-column-clean {
    flex: 1;
    max-width: 500px;
}

.sw-head-clean h2 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.sw-head-clean h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 0;
    width: 50px;
    height: 3px;
    background: var(--primary);
}

[dir="ltr"] .sw-head-clean h2::after {
    right: auto;
    left: 0;
}

.sw-column-clean.weak .sw-head-clean h2 {
    color: #c94444;
}

.sw-column-clean.weak .sw-head-clean h2::after {
    background: #c94444;
}

.sw-points-clean {
    list-style: none;
}

.sw-points-clean li {
    padding: 18px 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 1.1rem;
    color: var(--text-medium);
    position: relative;
    padding-right: 25px;
}

[dir="rtl"] .sw-points-clean li {
    padding-right: 0;
    padding-left: 25px;
}

.sw-points-clean li::before {
    content: '→';
    position: absolute;
    right: 0;
    color: var(--primary);
    font-weight: bold;
}

[dir="rtl"] .sw-points-clean li::before {
    right: auto;
    left: 0;
    content: '←';
}

/* Strategy Clean */
.strategy-grid-clean {
    display: flex;
    gap: 40px;
    margin-top: 60px;
    text-align: center;
}

.strategy-item-clean {
    flex: 1;
    position: relative;
    padding-top: 30px;
}

.strategy-item-clean::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 20px;
    background: var(--gold);
}

.strategy-item-clean h3 {
    margin-bottom: 15px;
    color: var(--text-dark);
    font-size: 1.3rem;
}

.strategy-item-clean p {
    color: var(--text-light);
}

/* Marketing Headline */
.marketing-headline {
    text-align: center;
    margin-bottom: 20px;
}

.marketing-headline h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

/* Service & Ads Boxes */
.auto-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    align-items: start;
}

.service-box-clean,
.ads-box-clean {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-light);
}

.service-box-clean h3,
.ads-box-clean h3 {
    color: var(--text-dark);
    margin-bottom: 25px;
    font-size: 1.5rem;
    position: relative;
    padding-bottom: 15px;
}

.service-box-clean h3::after,
.ads-box-clean h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 3px;
    background: var(--gold);
}

[dir="ltr"] .service-box-clean h3::after,
[dir="ltr"] .ads-box-clean h3::after {
    right: auto;
    left: 0;
}

.check-list-clean {
    list-style: none;
}

.check-list-clean li {
    padding: 12px 0;
    color: var(--text-medium);
    position: relative;
    padding-right: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

[dir="ltr"] .check-list-clean li {
    padding-right: 0;
    padding-left: 30px;
}

.check-list-clean li::before {
    content: '✓';
    position: absolute;
    right: 0;
    color: var(--primary);
    font-weight: bold;
}

[dir="ltr"] .check-list-clean li::before {
    right: auto;
    left: 0;
}

.tags-cloud-clean {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tags-cloud-clean span {
    padding: 10px 20px;
    background: var(--bg-section);
    border-radius: 25px;
    font-size: 0.95rem;
    color: var(--text-medium);
    transition: all 0.3s;
    border: 1px solid transparent;
}

.tags-cloud-clean span:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(45, 138, 128, 0.05);
}

/* Scroll Prompt */
.scroll-prompt {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    color: var(--text-on-dark-dim);
    font-size: 0.9rem;
    animation: bounce 2s infinite;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--text-on-dark-dim);
    border-radius: 15px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    animation: scroll-wheel 1.5s infinite;
}

@keyframes scroll-wheel {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(10px);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Wide Container */
.container.wide {
    max-width: 1200px;
}

/* Cards Row */
.cards-row {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

/* ==========================================
   SUBSIDIARIES - Companies Cards
   ========================================== */
.gold-label {
    color: var(--gold) !important;
    margin-bottom: 15px;
}

.companies-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 800px;
    margin: 0 auto;
}

.company-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    transition: all 0.4s var(--ease-smooth);
}

.company-card:hover {
    border-color: rgba(201, 162, 39, 0.4);
    background: rgba(201, 162, 39, 0.05);
    transform: translateY(-5px);
}

.company-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gold) 0%, #b8922a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s;
}

.company-icon.teal {
    background: linear-gradient(135deg, var(--primary) 0%, #1f7a6e 100%);
}

.company-logo {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s;
}

.company-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.company-card:hover .company-logo {
    transform: scale(1.1);
}

.company-icon svg {
    width: 32px;
    height: 32px;
    stroke: white;
}

.company-card:hover .company-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(201, 162, 39, 0.3);
}

.company-info h3 {
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 0 8px 0;
}

.company-info p {
    color: var(--text-on-dark-dim);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

.company-link {
    margin-top: 20px;
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s;
}

.company-card:hover .company-link {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 600px) {
    .companies-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }

    .company-card {
        padding: 30px 25px;
    }

    .company-icon {
        width: 60px;
        height: 60px;
    }

    .company-icon svg {
        width: 28px;
        height: 28px;
    }

    .company-info h3 {
        font-size: 1.15rem;
    }

    .company-link {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================
   FOOTER - Horizontal Layout
   ========================================== */
.footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding: 40px 0;
}

.footer-info {
    flex: 1;
    text-align: right;
}

.footer-logo-wrap {
    flex-shrink: 0;
}

.footer-logo-wrap .footer-logo {
    width: 180px;
    height: auto;
    filter: brightness(1.1);
}

.footer-contacts {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    margin-bottom: 15px;
}

.footer-contacts a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-on-dark);
    text-decoration: none;
    font-size: 1.05rem;
    transition: color 0.3s;
    direction: ltr;
}

.footer-contacts a:hover {
    color: var(--gold);
}

.footer-contacts a:hover svg {
    stroke: var(--gold);
}

.footer-contacts a svg {
    width: 18px;
    height: 18px;
    stroke: var(--gold);
    flex-shrink: 0;
}

.footer-contacts span {
    color: rgba(255, 255, 255, 0.3);
}

.footer-email {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-on-dark);
    text-decoration: none;
    font-size: 1rem;
    margin-bottom: 15px;
    transition: color 0.3s;
    direction: ltr;
}

.footer-email svg {
    width: 18px;
    height: 18px;
    stroke: var(--gold);
    flex-shrink: 0;
}

.footer-email:hover {
    color: var(--gold);
}

.footer-email:hover svg {
    stroke: var(--gold);
}

.footer-addr {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-on-dark-dim);
    font-size: 0.95rem;
    font-style: normal;
    margin: 0 0 25px 0;
}

.footer-addr svg {
    width: 18px;
    height: 18px;
    stroke: var(--gold);
    flex-shrink: 0;
}

.footer-btn {
    display: inline-block;
    padding: 15px 45px;
    background: var(--gold);
    color: #000;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 6px;
    transition: all 0.3s var(--ease-smooth);
}

.footer-btn:hover {
    background: #d4af37;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 162, 39, 0.25);
}

.footer-btn:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 5px 15px rgba(201, 162, 39, 0.2);
}

.footer-copy {
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-on-dark-dim);
    font-size: 0.85rem;
    text-align: center;
}

.footer-copy p {
    margin: 0;
}

/* Address styling */
.footer-addr {
    font-style: normal;
}

@media (max-width: 768px) {
    .footer-row {
        flex-direction: column-reverse;
        gap: 30px;
        text-align: center;
    }

    .footer-info {
        text-align: center;
    }

    .footer-contacts {
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer-logo-wrap .footer-logo {
        width: 140px;
    }
}

@media (max-width: 480px) {
    .footer-contacts {
        flex-direction: column;
        gap: 10px;
    }

    .footer-contacts span {
        display: none;
    }
}

/* Legacy action-btn */
.action-btn {
    padding: 14px 32px;
    border: 2px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.4s var(--ease-smooth);
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 6px;
    box-shadow: 0 5px 20px rgba(201, 162, 39, 0.15);
    position: relative;
    overflow: hidden;
}

.action-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.action-btn:hover::before {
    left: 100%;
}

.action-btn:hover {
    background: var(--gold);
    color: #000;
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(201, 162, 39, 0.4);
}

.action-btn:active {
    transform: translateY(0) scale(0.97);
    box-shadow: 0 5px 20px rgba(201, 162, 39, 0.3);
}

.action-btn.outline {
    background: transparent;
    border-color: var(--text-on-dark-dim);
    color: var(--text-on-dark);
}

.action-btn.outline:hover {
    border-color: var(--text-on-dark);
    background: var(--text-on-dark);
    color: var(--bg-dark);
}

.copyright {
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-on-dark-dim);
    font-size: 0.85rem;
    text-align: center;
}

/* ==========================================
   NAVIGATION
   ========================================== */
/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 6px 0;
    background: rgba(255, 255, 255, 0.8);
    /* Glass header */
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    position: relative;
    padding: 3px 0;
    transition: color 0.3s;
    cursor: pointer;
    user-select: none;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s var(--ease-smooth);
}

[dir="ltr"] .nav-link::after {
    right: auto;
    left: 0;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link:hover::after {
    width: 100%;
}

.lang-btn {
    background: none;
    border: none;
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.75rem;
    cursor: pointer;
    padding: 3px 8px;
    border-radius: 4px;
    transition: all 0.3s;
}

.lang-btn:hover {
    color: var(--text-dark);
    background: rgba(0, 0, 0, 0.05);
}

.lang-btn.active {
    color: var(--primary);
    background: rgba(45, 138, 128, 0.1);
}

.menu-toggle {
    display: none;
    /* Hidden by default (Desktop) */
}

.nav-container {
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* Force Logo Left, Menu Right for ALL languages */
    flex-direction: row;
    direction: ltr;
}

.logo {
    height: 100px;
}

.nav-menu {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
}

/* Reverse menu items order for RTL - من نحن should be rightmost */
[dir="rtl"] .nav-menu {
    flex-direction: row-reverse;
}

/* Ensure Logo Link doesn't stretch */
.logo-link {
    flex-shrink: 0;
}

.nav-right {
    display: flex;
    align-items: center;
    flex-direction: row;
}

.lang-switcher {
    display: flex;
    gap: 4px;
    margin-left: 20px;
    order: 1;
}

/* Hide mobile-specific elements on desktop */
.mobile-lang {
    display: none !important;
}

/* Create the mobile breakpoint */
@media (max-width: 1024px) {
    .mobile-lang {
        display: flex !important;
    }

    .editorial-grid {
        grid-template-columns: 1fr;
    }

    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 28px;
        height: 20px;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 1005;
        position: relative;
        padding: 0;
    }

    .menu-toggle span {
        display: block;
        width: 100%;
        height: 2px;
        background-color: var(--text-dark);
        transition: all 0.3s var(--ease-smooth);
        border-radius: 1px;
    }

    .menu-toggle.active span:first-child {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .menu-toggle.active span:last-child {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .nav-menu {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
        z-index: 1001;
        align-items: center;
        justify-content: center;
        gap: 25px;
        padding: 100px 20px 40px;
        margin: 0;
        transform: translateY(-100%);
        transition: transform 0.4s var(--ease-out);
        opacity: 1;
    }

    [dir="rtl"] .nav-menu {
        margin-left: 0;
    }

    .nav-menu.active {
        display: flex;
        transform: translateY(0);
    }

    .nav-menu li {
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s var(--ease-out);
    }

    .nav-menu.active li {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-menu.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu.active li:nth-child(2) { transition-delay: 0.15s; }
    .nav-menu.active li:nth-child(3) { transition-delay: 0.2s; }
    .nav-menu.active li:nth-child(4) { transition-delay: 0.25s; }

    .nav-link {
        font-size: 1.6rem;
        color: var(--text-dark);
        font-weight: 700;
        padding: 10px 20px;
        border-radius: 8px;
        transition: all 0.3s;
    }

    .nav-link:hover,
    .nav-link:active {
        background: rgba(45, 138, 128, 0.1);
        color: var(--primary);
    }

    .nav-link::after {
        display: none;
    }

    /* Mobile language switcher in menu */
    .nav-menu .mobile-lang-switcher {
        display: flex;
        gap: 10px;
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid var(--border-light);
    }

    .nav-menu .lang-btn {
        color: var(--text-light);
        font-size: 1rem;
        padding: 8px 16px;
    }

    .nav-menu .lang-btn.active {
        color: var(--primary);
        background: rgba(45, 138, 128, 0.1);
    }

    /* Hide desktop lang switcher on mobile */
    .lang-switcher {
        display: none !important;
    }

    .editorial-grid {
        gap: 40px;
        text-align: center;
    }

    [dir="rtl"] .editorial-grid {
        text-align: center;
    }

    /* Reverse order on mobile so visual is first? Optional, but often better */
    .editorial-grid {
        display: flex;
        flex-direction: column-reverse;
    }

    .sw-wrapper-clean {
        flex-direction: column;
    }

    .cards-row.seamless-row {
        flex-direction: column;
        gap: 40px;
    }

    .strategy-grid-clean {
        flex-direction: column;
    }
}

/* Cursor & Dust */
#gold-dust {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 5;
    mix-blend-mode: screen;
    opacity: 0.5;
}

/* Restoring Default Cursor */
body,
a,
button {
    cursor: auto;
}

/* ==========================================
   ADDITIONAL RESPONSIVE STYLES
   ========================================== */

/* Mobile Language Switcher (hidden on desktop) */
.mobile-lang-switcher {
    display: none !important;
}

@media (max-width: 1024px) {
    .mobile-lang-switcher {
        display: flex !important;
        gap: 10px;
        margin-top: 20px;
        padding-top: 25px;
        border-top: 1px solid var(--border-light);
        list-style: none;
    }

    .mobile-lang-switcher .lang-btn {
        padding: 10px 18px;
        font-size: 0.95rem;
        border-radius: 6px;
    }
}

@media (max-width: 768px) {
    /* Prevent horizontal scroll */
    .fullscreen-section {
        max-width: 100vw;
        overflow-x: hidden;
        min-height: 100vh;
        min-height: 100dvh;
    }

    /* Hero specific - ensure full height */
    #hero {
        min-height: 100vh;
        min-height: 100dvh;
    }

    #hero .content-layer {
        min-height: 100vh;
        min-height: 100dvh;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 100px 20px 40px;
    }

    .container {
        width: 90%;
        max-width: 100%;
        padding: 0;
    }

    .content-layer {
        padding: 80px 15px 20px;
        overflow-x: hidden;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero-subtitle {
        font-size: 1.05rem;
        padding: 0 15px;
        line-height: 1.7;
    }

    .section-title {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }

    .type-effect {
        font-size: clamp(1.4rem, 5vw, 2rem);
    }

    .stats-row {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }

    .stat-item {
        text-align: center;
    }

    .values-list-clean {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .value-item-clean {
        text-align: center;
        flex-direction: column;
        align-items: center;
    }

    .client-tags {
        flex-direction: column;
        align-items: center;
    }

    .contact-actions {
        flex-direction: column;
        align-items: center;
    }

    .action-btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    .glass-panel {
        padding: 30px 25px;
        margin: 0 15px;
    }

    .auto-grid {
        grid-template-columns: 1fr;
    }

    .service-box-clean,
    .ads-box-clean {
        padding: 30px;
    }

    .scroll-prompt {
        bottom: 25px;
    }

    .real-estate-placeholder {
        max-width: 100%;
        height: 280px;
    }

    .placeholder-icon {
        width: 60px;
        height: 60px;
    }

    .placeholder-icon svg {
        width: 30px;
        height: 30px;
    }

    .building.b1 {
        width: 30px;
        height: 70px;
    }

    .building.b2 {
        width: 40px;
        height: 100px;
    }

    .building.b3 {
        width: 25px;
        height: 55px;
    }

    .consulting-placeholder {
        max-width: 100%;
        height: 280px;
    }

    .element.doc {
        width: 35px;
        height: 50px;
    }

    .element.chat {
        width: 40px;
        height: 35px;
    }

    .element.check {
        width: 30px;
        height: 30px;
    }

    .element.check::before {
        font-size: 14px;
    }

    .navbar {
        padding: 15px 0;
    }

    .logo {
        height: 70px;
    }

    .footer-frame-clean h2 {
        font-size: 2rem;
    }

    .marketing-headline h2 {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }

    .clean-card {
        padding-right: 20px;
        text-align: center;
    }

    [dir="ltr"] .clean-card {
        padding-left: 20px;
    }

    .card-num {
        font-size: 3rem;
    }

    .clean-card h3 {
        font-size: 1.5rem;
    }

    .sw-column-clean {
        text-align: center;
    }

    .sw-head-clean h2::after {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
    }

    .sw-points-clean li {
        padding-right: 0;
        padding-left: 0;
        text-align: center;
    }

    .sw-points-clean li::before {
        display: none;
    }

    /* Prevent overflow on placeholders */
    .real-estate-placeholder,
    .consulting-placeholder {
        max-width: calc(100vw - 30px);
    }

    .editorial-visual {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    /* Fix geo-decor on mobile */
    .geo-decor {
        width: 250px;
        height: 250px;
    }

    .inner-logo {
        width: 120px;
    }

    /* Fix cards on mobile */
    .clean-card {
        border-right: none;
        border-bottom: 1px solid var(--gold);
        padding-right: 0;
        padding-bottom: 30px;
        margin-bottom: 30px;
    }

    [dir="ltr"] .clean-card {
        border-left: none;
        padding-left: 0;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.6rem;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .section-title.large {
        font-size: 1.6rem;
    }

    .lead-text {
        font-size: 1rem;
    }

    .service-desc {
        font-size: 0.95rem;
    }

    .footer-logo {
        width: 70px;
    }

    .footer-frame-clean h2 {
        font-size: 1.4rem;
    }

    .footer-frame-clean p {
        font-size: 0.95rem;
    }

    /* Smaller placeholders on small mobile */
    .real-estate-placeholder,
    .consulting-placeholder {
        height: 240px;
    }

    .placeholder-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }

    .placeholder-icon svg {
        width: 24px;
        height: 24px;
    }

    .placeholder-label {
        font-size: 0.8rem;
        bottom: 15px;
    }

    .placeholder-buildings,
    .placeholder-elements {
        bottom: 50px;
    }

    /* Fix geo-decor on small mobile */
    .geo-decor {
        width: 200px;
        height: 200px;
    }

    .inner-logo {
        width: 100px;
    }

    /* Smaller nav links */
    .nav-link {
        font-size: 1.3rem !important;
        padding: 8px 15px !important;
    }

    /* Stats on small mobile */
    .stat-num {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    /* Values on small mobile */
    .v-num {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    /* Type effect smaller */
    .type-effect {
        font-size: 1.2rem;
    }

    /* Client tags smaller */
    .client-tag {
        padding: 8px 20px;
        font-size: 0.9rem;
    }

    /* Action buttons */
    .action-btn {
        padding: 12px 25px;
        font-size: 0.85rem;
        letter-spacing: 1px;
    }

    .learn-more-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

/* ==========================================
   STRATEGY SECTION - PREMIUM DESIGN
   ========================================== */
.strategy-section {
    background: linear-gradient(135deg, #0d1117 0%, #161b22 50%, #0d1117 100%) !important;
    position: relative;
    overflow: hidden;
}

.strategy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(45, 138, 128, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(201, 162, 39, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

.strategy-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.strategy-badge {
    display: inline-block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 20px;
    padding: 10px 25px;
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 30px;
    background: rgba(201, 162, 39, 0.08);
}

.strategy-main-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    color: var(--text-on-dark);
    font-weight: 700;
    margin-bottom: 15px;
}

.strategy-subtitle {
    font-size: 1.1rem;
    color: var(--text-on-dark-dim);
    max-width: 500px;
    margin: 0 auto;
}

.strategy-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.strategy-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s var(--ease-smooth);
    overflow: hidden;
}

.strategy-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(201, 162, 39, 0.3);
}

.strategy-card.featured {
    background: rgba(201, 162, 39, 0.08);
    border-color: rgba(201, 162, 39, 0.2);
    transform: scale(1.05);
}

.strategy-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.strategy-card-number {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    pointer-events: none;
}

[dir="ltr"] .strategy-card-number {
    right: auto;
    left: 25px;
}

.strategy-card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(45, 138, 128, 0.3);
    transition: all 0.3s var(--ease-smooth);
}

.strategy-card:hover .strategy-card-icon {
    transform: scale(1.1) rotate(-5deg);
}

.strategy-card.featured .strategy-card-icon {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dim) 100%);
    box-shadow: 0 10px 30px rgba(201, 162, 39, 0.3);
}

.strategy-card-icon svg {
    width: 32px;
    height: 32px;
    color: white;
}

.strategy-card h3 {
    font-size: 1.4rem;
    color: var(--text-on-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.strategy-card p {
    font-size: 1rem;
    color: var(--text-on-dark-dim);
    line-height: 1.7;
    margin-bottom: 0;
}

.strategy-card-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--gold));
    transform: scaleX(0);
    transition: transform 0.4s var(--ease-smooth);
}

.strategy-card:hover .strategy-card-accent {
    transform: scaleX(1);
}

.strategy-card.featured .strategy-card-accent {
    transform: scaleX(1);
    background: linear-gradient(90deg, var(--gold), var(--primary));
}

/* Strategy Features List */
.strategy-features {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    list-style: none;
}

.strategy-features li {
    padding: 6px 16px;
    background: rgba(201, 162, 39, 0.15);
    border-radius: 20px;
    border: 1px solid rgba(201, 162, 39, 0.2);
}

.strategy-features li span {
    font-size: 0.85rem;
    color: var(--gold-light);
    font-weight: 500;
}

/* Responsive Strategy */
@media (max-width: 1024px) {
    .strategy-cards {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 500px;
    }

    .strategy-card.featured {
        transform: none;
        order: -1;
    }

    .strategy-card.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .strategy-header {
        margin-bottom: 40px;
    }

    .strategy-main-title {
        font-size: 2rem;
    }

    .strategy-subtitle {
        font-size: 1rem;
    }

    .strategy-card {
        padding: 35px 25px;
    }

    .strategy-card-icon {
        width: 60px;
        height: 60px;
        border-radius: 16px;
    }

    .strategy-card-icon svg {
        width: 28px;
        height: 28px;
    }

    .strategy-card h3 {
        font-size: 1.3rem;
    }

    .strategy-features {
        flex-wrap: wrap;
        gap: 8px;
    }

    .strategy-features li {
        padding: 5px 12px;
    }

    .strategy-features li span {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .strategy-badge {
        font-size: 0.75rem;
        padding: 8px 18px;
    }

    .strategy-main-title {
        font-size: 1.6rem;
    }

    .strategy-card {
        padding: 30px 20px;
    }

    .strategy-card-number {
        font-size: 3rem;
        top: 15px;
        right: 15px;
    }

    [dir="ltr"] .strategy-card-number {
        left: 15px;
    }

    .strategy-card-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 20px;
    }

    .strategy-card-icon svg {
        width: 24px;
        height: 24px;
    }

    .strategy-card h3 {
        font-size: 1.2rem;
    }

    .strategy-card p {
        font-size: 0.95rem;
    }
}

/* ==========================================
   METHODS SECTION - PREMIUM DESIGN
   ========================================== */
.methods-section {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%) !important;
}

.methods-header {
    text-align: center;
    margin-bottom: 25px;
}

.methods-label {
    display: inline-block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 8px;
    padding: 4px 12px;
    background: rgba(45, 138, 128, 0.1);
    border-radius: 30px;
}

.methods-title {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: var(--text-dark);
    font-weight: 700;
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.method-card {
    position: relative;
    background: white;
    border-radius: 16px;
    padding: 22px 20px;
    box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.02),
        0 10px 20px rgba(0, 0, 0, 0.04),
        0 25px 50px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: all 0.4s var(--ease-smooth);
}

.method-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 8px 12px rgba(0, 0, 0, 0.04),
        0 20px 40px rgba(0, 0, 0, 0.08),
        0 40px 80px rgba(0, 0, 0, 0.1);
}

.method-card-glow {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(45, 138, 128, 0.15) 0%, transparent 70%);
    pointer-events: none;
    transition: all 0.5s;
}

.method-card:hover .method-card-glow {
    transform: scale(1.3);
    opacity: 1;
}

.method-card-glow.gold {
    background: radial-gradient(circle, rgba(201, 162, 39, 0.15) 0%, transparent 70%);
}

.method-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    box-shadow: 0 8px 20px rgba(45, 138, 128, 0.25);
    transition: all 0.3s var(--ease-smooth);
}

.method-card:hover .method-icon {
    transform: scale(1.1) rotate(-5deg);
}

.method-icon svg {
    width: 20px;
    height: 20px;
    color: white;
}

.method-icon.gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dim) 100%);
    box-shadow: 0 10px 30px rgba(201, 162, 39, 0.3);
}

.method-card h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 5px;
    font-weight: 700;
}

.method-subtitle {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.5;
}

/* Feature List */
.method-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.method-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: var(--bg-section);
    border-radius: 8px;
    transition: all 0.3s;
}

.method-features li:hover {
    background: rgba(45, 138, 128, 0.08);
    transform: translateX(-5px);
}

[dir="ltr"] .method-features li:hover {
    transform: translateX(5px);
}

.feature-icon {
    width: 22px;
    height: 22px;
    min-width: 22px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 10px;
    height: 10px;
    color: white;
}

.method-features li span:last-child {
    font-size: 0.8rem;
    color: var(--text-medium);
    font-weight: 500;
}

/* Marketing Channels Grid */
.marketing-channels {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.channel-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    background: var(--bg-section);
    border-radius: 8px;
    transition: all 0.3s var(--ease-smooth);
    cursor: default;
}

.channel-item:hover {
    background: rgba(201, 162, 39, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(201, 162, 39, 0.15);
}

.channel-icon {
    width: 26px;
    height: 26px;
    min-width: 26px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dim) 100%);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.channel-item:hover .channel-icon {
    transform: rotate(-10deg) scale(1.1);
}

.channel-icon svg {
    width: 12px;
    height: 12px;
    color: white;
}

.channel-item span {
    font-size: 0.75rem;
    color: var(--text-medium);
    font-weight: 500;
}

/* Responsive Methods */
@media (max-width: 1024px) {
    .methods-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .method-card {
        padding: 20px 18px;
    }
}

@media (max-width: 768px) {
    .methods-header {
        margin-bottom: 20px;
    }

    .methods-title {
        font-size: 1.1rem;
    }

    .method-card {
        padding: 18px 16px;
        border-radius: 12px;
    }

    .method-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }

    .method-icon svg {
        width: 18px;
        height: 18px;
    }

    .method-card h3 {
        font-size: 1rem;
    }

    .method-features li {
        padding: 6px 10px;
    }

    .marketing-channels {
        grid-template-columns: 1fr;
    }

    .channel-item {
        padding: 6px 10px;
    }
}

@media (max-width: 480px) {
    .methods-label {
        font-size: 0.65rem;
        padding: 3px 10px;
    }

    .methods-title {
        font-size: 1rem;
    }

    .method-card {
        padding: 15px 14px;
    }

    .method-icon {
        width: 36px;
        height: 36px;
    }

    .method-icon svg {
        width: 16px;
        height: 16px;
    }

    .method-card h3 {
        font-size: 0.95rem;
    }

    .method-subtitle {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .method-features li {
        padding: 10px 12px;
        gap: 12px;
    }

    .feature-icon {
        width: 24px;
        height: 24px;
        min-width: 24px;
    }

    .feature-icon svg {
        width: 12px;
        height: 12px;
    }

    .method-features li span:last-child {
        font-size: 0.9rem;
    }

    .channel-item {
        padding: 10px 12px;
        gap: 10px;
    }

    .channel-icon {
        width: 32px;
        height: 32px;
        min-width: 32px;
        border-radius: 8px;
    }

    .channel-icon svg {
        width: 16px;
        height: 16px;
    }

    .channel-item span {
        font-size: 0.85rem;
    }
}

/* ==========================================
   VALUES GRID - 4 CARDS LAYOUT
   ========================================== */
.values-grid-4 {
    grid-template-columns: repeat(4, 1fr) !important;
    max-width: 1200px;
    justify-content: center;
}

/* Stagger animation for value cards */
.values-grid-4 .value-card:nth-child(1) { animation-delay: 0.1s; }
.values-grid-4 .value-card:nth-child(2) { animation-delay: 0.2s; }
.values-grid-4 .value-card:nth-child(3) { animation-delay: 0.3s; }
.values-grid-4 .value-card:nth-child(4) { animation-delay: 0.4s; }

/* Enhanced hover stagger */
.values-grid-4 .value-card:nth-child(1):hover ~ .value-card .value-card-inner {
    opacity: 0.7;
}
.values-grid-4 .value-card:hover .value-card-inner {
    opacity: 1 !important;
}

@media (max-width: 1024px) {
    .values-grid-4 {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 600px) {
    .values-grid-4 {
        grid-template-columns: 1fr !important;
    }
}

/* Value Simple - Non-card style for 4th value */
.value-simple {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px 18px;
    min-height: 180px;
    border: 1px dashed rgba(201, 162, 39, 0.3);
    border-radius: 16px;
    transition: all 0.4s var(--ease-smooth);
}

.value-simple:hover {
    border-color: rgba(201, 162, 39, 0.5);
    background: rgba(201, 162, 39, 0.03);
}

.value-simple-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 12px;
    transition: all 0.4s var(--ease-smooth);
}

.value-simple:hover .value-simple-icon {
    border-color: rgba(201, 162, 39, 0.6);
    background: rgba(201, 162, 39, 0.1);
}

.value-simple-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--gold);
    transition: all 0.4s var(--ease-smooth);
}

.value-simple:hover .value-simple-icon svg {
    transform: scale(1.1);
}

.value-simple h4 {
    font-size: 1rem;
    color: white;
    margin-bottom: 8px;
    font-weight: 600;
    transition: color 0.3s;
}

.value-simple:hover h4 {
    color: var(--gold);
}

.value-simple p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

/* ==========================================
   SUBSIDIARIES SECTION - Compact Elegant
   ========================================== */
.subsidiaries-section {
    background: linear-gradient(180deg, #0d0d0d 0%, #1a1a1a 50%, #0d0d0d 100%) !important;
}

.subsidiaries-compact {
    min-height: auto !important;
    height: auto !important;
    padding: 80px 0 !important;
}

.subsidiaries-compact .content-layer {
    position: relative;
    min-height: auto;
    display: block;
    padding: 0;
}

.subsidiaries-header {
    text-align: center;
    margin-bottom: 40px;
}

.subsidiaries-header .sub-label {
    color: var(--gold);
    font-size: 1rem;
}

.subsidiaries-header .section-title {
    color: var(--text-on-dark);
    font-size: 2rem;
    margin-top: 10px;
}

/* Elegant Subsidiaries Layout */
.subsidiaries-elegant {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 700px;
    margin: 0 auto;
}

.sub-card {
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 25px 30px;
    transition: all 0.4s var(--ease-smooth);
}

.sub-card:hover {
    border-color: rgba(201, 162, 39, 0.4);
    background: rgba(201, 162, 39, 0.05);
    transform: translateX(-5px);
    box-shadow: 0 15px 40px rgba(201, 162, 39, 0.1);
}

[dir="ltr"] .sub-card:hover {
    transform: translateX(5px);
}

.sub-card-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dim) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s var(--ease-smooth);
}

.sub-card-icon.teal {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.sub-card-icon svg {
    width: 26px;
    height: 26px;
    color: white;
}

.sub-card:hover .sub-card-icon {
    transform: scale(1.05) rotate(-3deg);
}

.sub-card-content {
    flex: 1;
}

.sub-card-content h3 {
    font-size: 1.1rem;
    color: var(--gold);
    font-weight: 600;
    margin: 0 0 3px 0;
}

.sub-card-content h4 {
    font-size: 0.85rem;
    color: var(--text-on-dark-dim);
    font-weight: 500;
    margin: 0 0 8px 0;
}

.sub-card-content p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin: 0;
}

.sub-card-arrow {
    font-size: 1.5rem;
    color: var(--gold);
    opacity: 0;
    transition: all 0.3s var(--ease-smooth);
    transform: translateX(10px);
}

[dir="ltr"] .sub-card-arrow {
    transform: translateX(-10px);
}

.sub-card:hover .sub-card-arrow {
    opacity: 0.7;
    transform: translateX(0);
}

@media (max-width: 768px) {
    .subsidiaries-elegant {
        padding: 0 15px;
    }

    .sub-card {
        padding: 20px;
        gap: 15px;
    }

    .sub-card-icon {
        width: 45px;
        height: 45px;
    }

    .sub-card-icon svg {
        width: 22px;
        height: 22px;
    }

    .sub-card-arrow {
        display: none;
    }
}

/* Compact Row Layout */
.subsidiaries-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.subsidiary-item {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 60px;
    padding: 12px 25px 12px 15px;
    transition: all 0.4s var(--ease-smooth);
}

[dir="rtl"] .subsidiary-item {
    padding: 12px 15px 12px 25px;
}

.subsidiary-item:hover {
    border-color: rgba(201, 162, 39, 0.4);
    background: rgba(201, 162, 39, 0.05);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 162, 39, 0.15);
}

.subsidiary-icon-mini {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dim) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s var(--ease-smooth);
}

.subsidiary-icon-mini.gold {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.subsidiary-icon-mini svg {
    width: 22px;
    height: 22px;
    color: white;
}

.subsidiary-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.subsidiary-info h3 {
    font-size: 1rem;
    color: white;
    font-weight: 600;
    margin: 0;
    transition: color 0.3s;
}

.subsidiary-item:hover .subsidiary-info h3 {
    color: var(--gold);
}

.subsidiary-info span {
    font-size: 0.8rem;
    color: var(--text-on-dark-dim);
}

.subsidiary-arrow {
    color: var(--gold);
    font-size: 1.2rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s var(--ease-smooth);
}

[dir="rtl"] .subsidiary-arrow {
    transform: translateX(10px);
}

.subsidiary-item:hover .subsidiary-arrow {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 768px) {
    .subsidiaries-row {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .subsidiary-item {
        width: 100%;
        max-width: 350px;
        justify-content: flex-start;
    }
}

/* Legacy styles for backward compatibility */
.subsidiaries-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.subsidiary-card {
    position: relative;
    display: block;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px 35px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s var(--ease-smooth);
    overflow: hidden;
    cursor: pointer;
}

/* Shine effect */
.subsidiary-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.1), transparent);
    transition: left 0.6s ease;
    pointer-events: none;
}

.subsidiary-card:hover::before {
    left: 100%;
}

.subsidiary-card:hover {
    transform: translateY(-10px);
    border-color: rgba(201, 162, 39, 0.4);
    box-shadow: 0 25px 60px rgba(201, 162, 39, 0.15);
}

.subsidiary-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dim) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(201, 162, 39, 0.3);
    transition: all 0.3s var(--ease-smooth);
}

.subsidiary-card:hover .subsidiary-icon {
    transform: scale(1.1) rotate(-5deg);
}

.subsidiary-icon.gold {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    box-shadow: 0 10px 30px rgba(45, 138, 128, 0.3);
}

.subsidiary-icon svg {
    width: 32px;
    height: 32px;
    color: white;
}

.subsidiary-card h3 {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 8px;
    font-weight: 700;
}

.subsidiary-card h4 {
    font-size: 1rem;
    color: var(--text-on-dark-dim);
    margin-bottom: 15px;
    font-weight: 500;
}

.subsidiary-card p {
    font-size: 0.95rem;
    color: var(--text-on-dark-dim);
    line-height: 1.8;
    margin-bottom: 25px;
}

.subsidiary-services {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.subsidiary-services li {
    background: rgba(201, 162, 39, 0.1);
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 0.85rem;
    color: var(--gold);
    border: 1px solid rgba(201, 162, 39, 0.3);
    transition: all 0.3s;
}

.subsidiary-services li:hover {
    background: rgba(201, 162, 39, 0.2);
    transform: translateY(-2px);
}

/* Subsidiary Link Hint */
.subsidiary-link-hint {
    display: block;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: var(--gold);
    font-weight: 600;
    opacity: 0.7;
    transition: all 0.3s var(--ease-smooth);
}

[dir="rtl"] .subsidiary-link-hint {
    direction: rtl;
}

.subsidiary-card:hover .subsidiary-link-hint {
    opacity: 1;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .subsidiaries-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .subsidiary-card {
        padding: 30px 25px;
    }
}

/* ==========================================
   WHY US SECTION - Premium Dark Theme
   ========================================== */
.why-us-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #111111 50%, #0a0a0a 100%) !important;
}

.why-us-header {
    text-align: center;
    margin-bottom: 50px;
}

.why-us-header .sub-label {
    color: var(--gold);
}

.why-us-header .section-title {
    color: var(--text-on-dark);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}

.why-us-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border-radius: 24px;
    padding: 40px 25px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s var(--ease-smooth);
    overflow: hidden;
}

/* Shine effect */
.why-us-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.1), transparent);
    transition: left 0.6s ease;
    pointer-events: none;
}

.why-us-card:hover::before {
    left: 100%;
}

.why-us-card:hover {
    transform: translateY(-12px);
    border-color: rgba(201, 162, 39, 0.5);
    box-shadow: 0 25px 60px rgba(201, 162, 39, 0.2);
}

.why-us-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dim) 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 15px 40px rgba(201, 162, 39, 0.4);
    transition: all 0.4s var(--ease-smooth);
}

.why-us-card:hover .why-us-icon {
    transform: scale(1.15) rotate(-8deg);
    box-shadow: 0 20px 50px rgba(201, 162, 39, 0.5);
}

.why-us-icon svg {
    width: 36px;
    height: 36px;
    color: white;
}

.why-us-card h3 {
    font-size: 1.3rem;
    color: var(--text-on-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.why-us-card p {
    font-size: 0.9rem;
    color: var(--text-on-dark-dim);
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .why-us-card {
        padding: 30px 20px;
    }

    .why-us-icon {
        width: 70px;
        height: 70px;
    }
}

/* ==========================================
   SERVICE FEATURES - Premium Styling
   ========================================== */
.service-features {
    margin: 25px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: var(--text-medium);
    background: rgba(45, 138, 128, 0.05);
    padding: 18px 22px;
    border-radius: 14px;
    border-right: 4px solid var(--gold);
    transition: all 0.3s var(--ease-smooth);
}

.feature-item:hover {
    background: rgba(45, 138, 128, 0.1);
    transform: translateX(-5px);
}

[dir="ltr"] .feature-item {
    border-right: none;
    border-left: 4px solid var(--gold);
}

[dir="ltr"] .feature-item:hover {
    transform: translateX(5px);
}

.feature-bullet {
    color: var(--gold);
    font-size: 1.5rem;
    line-height: 1;
}

/* ==========================================
   CONTACT INFO (Footer)
   ========================================== */
.contact-info {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px 50px;
    margin: 30px 0;
    text-align: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-on-dark-dim);
    font-size: 0.9rem;
}

.contact-item svg {
    width: 22px;
    height: 22px;
    color: var(--gold);
    flex-shrink: 0;
    filter: drop-shadow(0 0 8px rgba(201, 162, 39, 0.4));
    transition: all 0.3s var(--ease-smooth);
}

.contact-item:hover svg {
    filter: drop-shadow(0 0 15px rgba(201, 162, 39, 0.6));
    transform: scale(1.1);
}

.contact-item a {
    color: var(--text-on-dark);
    text-decoration: none;
    transition: all 0.3s var(--ease-smooth);
}

.contact-item a:hover {
    color: var(--gold);
    text-shadow: 0 0 20px rgba(201, 162, 39, 0.3);
}

@media (max-width: 768px) {
    .contact-info {
        flex-direction: column;
        gap: 15px;
    }

    .contact-item {
        font-size: 0.85rem;
        justify-content: center;
    }
}

/* ==========================================
   CONTACT FORM MODAL
   ========================================== */
.contact-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease-smooth);
}

.contact-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: var(--bg-light);
    border-radius: 16px;
    padding: 50px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(30px) scale(0.95);
    transition: all 0.4s var(--ease-out);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
}

.contact-modal.active .modal-content {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: none;
    background: var(--bg-section);
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--text-medium);
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

[dir="rtl"] .modal-close {
    right: auto;
    left: 20px;
}

.modal-close:hover {
    background: var(--primary);
    color: white;
    transform: rotate(90deg);
}

.modal-header {
    text-align: center;
    margin-bottom: 35px;
}

.modal-header h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.modal-header p {
    color: var(--text-light);
    font-size: 1rem;
    margin: 0;
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    color: var(--text-dark);
    background: var(--bg-light);
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(45, 138, 128, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 15px center;
    padding-left: 40px;
}

[dir="ltr"] .form-group select {
    background-position: right 15px center;
    padding-left: 18px;
    padding-right: 40px;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s var(--ease-smooth);
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(45, 138, 128, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn .btn-loading {
    display: none;
}

.submit-btn.loading .btn-text {
    display: none;
}

.submit-btn.loading .btn-loading {
    display: inline;
}

.submit-btn.loading {
    pointer-events: none;
    opacity: 0.8;
}

/* Success Message */
.form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.form-success.show {
    display: block;
}

.contact-form.hidden {
    display: none;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.5rem;
    color: white;
    animation: successPop 0.5s var(--ease-out);
}

@keyframes successPop {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.form-success h4 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.form-success p {
    color: var(--text-light);
    margin-bottom: 25px;
}

.close-success-btn {
    padding: 12px 35px;
    background: var(--primary);
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.close-success-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Mobile Contact Form */
@media (max-width: 768px) {
    .modal-content {
        padding: 35px 25px;
        margin: 15px;
        max-height: 85vh;
    }

    .modal-header h3 {
        font-size: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 15px;
    }

    .submit-btn {
        padding: 14px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .modal-content {
        padding: 25px 20px;
    }

    .modal-close {
        top: 15px;
        right: 15px;
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }

    [dir="rtl"] .modal-close {
        right: auto;
        left: 15px;
    }

    .modal-header {
        margin-bottom: 25px;
    }

    .modal-header h3 {
        font-size: 1.3rem;
    }

    .form-group label {
        font-size: 0.85rem;
    }

    .success-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }

    .form-success h4 {
        font-size: 1.2rem;
    }
}

/* ==========================================
   VALUES SECTION - PREMIUM DESIGN
   ========================================== */
.values-section {
    background: linear-gradient(180deg, #0a0a0a 0%, #111111 50%, #0a0a0a 100%) !important;
    position: relative;
    overflow: visible !important;
    min-height: 100vh;
    height: auto !important;
}

/* Override fullscreen-section constraints for values */
#values.fullscreen-section {
    height: auto !important;
    min-height: 100vh;
    overflow: visible !important;
}

.values-section .content-layer {
    padding-top: 50px;
    padding-bottom: 30px;
}

.values-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(201, 162, 39, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(45, 138, 128, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.values-header {
    text-align: center;
    margin-bottom: 20px;
}

.values-badge {
    display: inline-block;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 8px;
    padding: 4px 12px;
    background: rgba(201, 162, 39, 0.1);
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 30px;
}

.values-main-title {
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    color: white;
    font-weight: 700;
    margin-bottom: 6px;
}

.values-subtitle {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 400px;
    margin: 0 auto;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Value Card */
.value-card {
    position: relative;
    perspective: 1000px;
}

.value-card-inner {
    position: relative;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px 18px;
    height: 100%;
    min-height: 180px;
    overflow: hidden;
    transition: all 0.4s var(--ease-smooth);
    display: flex;
    flex-direction: column;
}

.value-card:hover .value-card-inner {
    transform: translateY(-10px);
    border-color: rgba(201, 162, 39, 0.4);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 80px rgba(201, 162, 39, 0.1);
}

/* Shine Effect */
.value-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transition: left 0.6s;
    pointer-events: none;
}

.value-card:hover .value-shine {
    left: 100%;
}

/* Value Icon */
.value-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.2) 0%, rgba(201, 162, 39, 0.05) 100%);
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    transition: all 0.4s var(--ease-smooth);
}

.value-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--gold);
    transition: all 0.3s;
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    box-shadow: 0 10px 30px rgba(201, 162, 39, 0.3);
}

.value-card:hover .value-icon svg {
    stroke: white;
}

/* Value Number */
.value-number {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 2rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    transition: all 0.4s;
}

[dir="rtl"] .value-number {
    right: auto;
    left: 15px;
}

.value-card:hover .value-number {
    color: rgba(201, 162, 39, 0.15);
}

/* Value Content */
.value-card h4 {
    font-size: 1rem;
    color: white;
    margin-bottom: 8px;
    font-weight: 600;
    transition: color 0.3s;
}

.value-card:hover h4 {
    color: var(--gold);
}

.value-card p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
}

/* Featured Card */
.value-card.featured .value-card-inner {
    background: linear-gradient(145deg, rgba(201, 162, 39, 0.12) 0%, rgba(201, 162, 39, 0.03) 100%);
    border-color: rgba(201, 162, 39, 0.3);
}

.value-card.featured .value-icon {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    box-shadow: 0 10px 30px rgba(201, 162, 39, 0.25);
}

.value-card.featured .value-icon svg {
    stroke: white;
}

.value-card.featured h4 {
    color: var(--gold);
}

/* Responsive Values Section */
@media (max-width: 1024px) {
    #values.fullscreen-section {
        height: auto !important;
        min-height: 100vh;
        overflow: visible !important;
    }

    .values-section .content-layer {
        padding-top: 60px;
        padding-bottom: 50px;
    }

    .values-header {
        margin-bottom: 30px;
    }

    .values-main-title {
        font-size: 1.8rem;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .value-card.featured {
        grid-column: span 2;
    }

    .value-card.featured .value-card-inner {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    #values.fullscreen-section {
        height: auto !important;
        min-height: auto;
        overflow: visible !important;
    }

    .values-section .content-layer {
        padding-top: 50px;
        padding-bottom: 40px;
    }

    .values-header {
        margin-bottom: 30px;
    }

    .values-main-title {
        font-size: 1.5rem;
    }

    .values-subtitle {
        font-size: 0.9rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 450px;
    }

    .value-card.featured {
        grid-column: span 1;
    }

    .value-card-inner {
        padding: 35px 25px;
        min-height: auto;
    }

    .value-icon {
        width: 55px;
        height: 55px;
        border-radius: 14px;
        margin-bottom: 20px;
    }

    .value-icon svg {
        width: 26px;
        height: 26px;
    }

    .value-number {
        font-size: 2.5rem;
        top: 15px;
        right: 20px;
    }

    [dir="rtl"] .value-number {
        right: auto;
        left: 20px;
    }

    .value-card h4 {
        font-size: 1.2rem;
    }

    .value-card p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .values-section .content-layer {
        padding-top: 40px;
        padding-bottom: 30px;
    }

    .values-header {
        margin-bottom: 25px;
    }

    .values-badge {
        font-size: 0.65rem;
        padding: 5px 14px;
    }

    .values-main-title {
        font-size: 1.3rem;
    }

    .values-subtitle {
        font-size: 0.85rem;
    }

    .value-card-inner {
        padding: 25px 18px;
    }

    .value-icon {
        width: 45px;
        height: 45px;
    }

    .value-icon svg {
        width: 20px;
        height: 20px;
    }

    .value-number {
        font-size: 1.8rem;
    }

    .value-card h4 {
        font-size: 1rem;
    }

    .value-card p {
        font-size: 0.85rem;
    }
}