/* ==========================================
   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 - Matching Bostan/Amanah teal */
    --primary: #2d8a80;
    --primary-dark: #1e5c55;
    --primary-light: #3aa99e;

    /* Accent - Now uses primary teal (no gold) */
    --gold: #2d8a80;
    --gold-dim: #1e5c55;
    --gold-light: #3aa99e;

    /* 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);
}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    font-family: var(--font-en);
    width: 100%;
    max-width: 100vw;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-overflow-scrolling: touch;
    /* REMOVED overflow-x: hidden; to fix iOS Safari scroll trap bug */
    overflow-x: clip;
}

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
   ========================================== */
.fullscreen-section {
    position: relative;
    width: 100%;
    padding: 80px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* Hero stays full viewport */
#hero {
    min-height: 100vh;
    min-height: 100dvh;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 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);
}

/* Override alternating backgrounds for specific sections */
.fullscreen-section.videos-section,
.fullscreen-section.videos-section:nth-child(even),
.fullscreen-section.videos-section:nth-child(odd) {
    background: linear-gradient(180deg, #0a1628 0%, #0f2942 100%) !important;
}

/* 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(45, 138, 128, 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;
    touch-action: none;
    opacity: 0.3;
}

#gold-dust {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    pointer-events: none;
    touch-action: none;
    z-index: 5;
    background: transparent;
}

[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%;
    padding: 60px 20px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.container {
    width: 85%;
    max-width: 1400px;
    margin: 0 auto;
}

/* ==========================================
   TYPOGRAPHY - EDITORIAL
   ========================================== */
h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.3;
}

.hero-title {
    margin-bottom: 20px;
    line-height: 1.2;
    padding-top: 0.15em;
    overflow: visible;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-title-line1 {
    display: block;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    color: var(--primary-light);
    -webkit-text-fill-color: var(--primary-light);
    line-height: 1.1;
    letter-spacing: 4px;
    text-shadow: 0 2px 40px rgba(58, 169, 158, 0.3);
}

.hero-title-line2 {
    display: block;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 500;
    color: var(--primary-light);
    -webkit-text-fill-color: var(--primary-light);
    line-height: 1.4;
    letter-spacing: 6px;
    margin-top: 5px;
}

.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(2rem, 3.5vw, 3rem);
}

.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;
}

/* Hero text wrap - force center and prevent Arabic diacritics from being clipped */
.hero-text-wrap {
    overflow: visible;
    padding-top: 10px;
    text-align: center !important;
    max-width: none !important;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-title,
.hero-subtitle,
.highlight-line {
    text-align: center !important;
}

/* 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(45, 138, 128, 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(45, 138, 128, 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(45, 138, 128, 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(45, 138, 128, 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: #fff;
    border: 1px solid rgba(45, 138, 128, 0.15);
    border-radius: 20px;
    transition: all 0.4s var(--ease-smooth);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.company-card:hover {
    border-color: rgba(45, 138, 128, 0.5);
    background: #fff;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(45, 138, 128, 0.15);
}

.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(45, 138, 128, 0.3);
}

.company-info h3 {
    color: var(--text-dark);
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 0 8px 0;
}

.company-info p {
    color: var(--text-medium, #555);
    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: 280px;
    height: auto;
    filter: brightness(1.2) contrast(1.15);
    object-fit: contain;
}

.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: #3aa99e;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(45, 138, 128, 0.25);
}

.footer-btn:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 5px 15px rgba(45, 138, 128, 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: 200px;
    }
}

@media (max-width: 480px) {
    .footer-contacts {
        flex-direction: column;
        gap: 10px;
    }

    .footer-contacts span {
        display: none;
    }

    .footer-logo-wrap .footer-logo {
        width: 160px;
    }

    .footer-email,
    .footer-addr {
        justify-content: center;
    }

    .footer-btn {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
}

/* 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(45, 138, 128, 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(45, 138, 128, 0.4);
}

.action-btn:active {
    transform: translateY(0) scale(0.97);
    box-shadow: 0 5px 20px rgba(45, 138, 128, 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: 150px;
    margin: -35px 0;
    object-fit: contain;
    filter: brightness(1.05) contrast(1.1);
}

.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;
}

#mobileGlobe {
    display: none !important;
}

#mobileLangPopup {
    display: none;
}

/* Create the mobile breakpoint */
@media (max-width: 1024px) {
    .mobile-lang {
        display: none !important;
        /* using globe popup instead */
    }

    #mobileGlobe {
        display: flex !important;
        position: relative;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: rgba(45, 138, 128, 0.1);
        align-items: center;
        justify-content: center;
        cursor: pointer;
        margin-inline-end: 15px;
        -webkit-tap-highlight-color: transparent;
        transition: background 0.3s;
        color: white;
    }

    #mobileGlobe svg {
        stroke: white;
    }

    #mobileGlobe:hover {
        background: rgba(45, 138, 128, 0.2);
    }

    .navbar--scrolled #mobileGlobe {
        background: rgba(0, 0, 0, 0.05);
        color: var(--text-dark);
    }

    .navbar--scrolled #mobileGlobe svg {
        stroke: var(--text-dark) !important;
    }

    #mobileLangPopup {
        position: absolute;
        top: 70px;
        right: 80px;
        background: white;
        border-radius: 12px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
        overflow: hidden;
        z-index: 99999;
        min-width: 150px;
        display: none;
    }

    [dir="ltr"] #mobileLangPopup {
        right: 80px;
        left: auto;
    }

    #mobileLangPopup button {
        padding: 12px 20px;
        width: 100%;
        text-align: right;
        border: none;
        background: none;
        font-size: 15px;
        cursor: pointer;
        display: block;
        color: var(--text-dark);
        font-family: inherit;
        border-bottom: 1px solid #f0f0f0;
    }

    [dir="ltr"] #mobileLangPopup button {
        text-align: left;
    }

    #mobileLangPopup button:last-child {
        border-bottom: none;
    }

    #mobileLangPopup button:hover {
        background: rgba(45, 138, 128, 0.05);
        color: var(--primary);
    }

    .mobile-lang .lang-btn {
        padding: 12px 24px;
        font-size: 1rem;
        border-radius: 8px;
        border: 1px solid rgba(45, 138, 128, 0.3);
        background: rgba(45, 138, 128, 0.05);
        color: var(--text-dark);
        font-weight: 500;
        transition: all 0.3s ease;
    }

    .mobile-lang .lang-btn:hover {
        background: rgba(45, 138, 128, 0.1);
        border-color: var(--primary);
    }

    .mobile-lang .lang-btn.active {
        background: var(--primary);
        color: white;
        border-color: var(--primary);
    }

    .editorial-grid {
        grid-template-columns: 1fr;
    }

    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 26px;
        height: 18px;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 1005;
        position: relative;
        padding: 0;
        outline: none;
        -webkit-appearance: none;
        appearance: none;
    }

    .menu-toggle span {
        display: block;
        width: 100%;
        height: 2px;
        background-color: var(--text-dark);
        transition: all 0.3s var(--ease-smooth);
        border-radius: 2px;
        transform-origin: center;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .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;
    }

    /* Fix: project page nav uses white text for dark navbar,
       but mobile menu has white bg — force dark text on mobile */
    .navbar--project .nav-link {
        color: var(--text-dark) !important;
    }

    .navbar--project .nav-link:hover,
    .navbar--project .nav-link:active {
        color: var(--primary) !important;
    }

    .navbar--project .lang-btn {
        color: var(--text-medium) !important;
    }

    .navbar--project .lang-btn:hover {
        color: var(--text-dark) !important;
        background: rgba(0, 0, 0, 0.05) !important;
    }

    .navbar--project .lang-btn.active {
        color: var(--primary) !important;
        background: rgba(45, 138, 128, 0.12) !important;
    }

    .navbar--project .menu-toggle span {
        background-color: #fff;
    }

    .navbar--project .menu-toggle.active span {
        background-color: var(--text-dark);
    }

    /* 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;
    }

    .geo-decor {
        width: 200px;
        height: 200px;
    }

    .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
   ========================================== */

@media (max-width: 768px) {

    #hero .content-layer {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 100px 20px 40px;
    }

    /* Lighten hero overlay so 3D model is more visible on mobile */
    #hero .overlay-layer {
        background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 100%) !important;
    }

    .container {
        width: 90%;
        max-width: 100%;
        padding: 0;
    }

    .content-layer {
        padding: 80px 15px 20px;
    }

    .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: 100px;
    }

    .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: 300px;
        height: 300px;
        margin-bottom: 20px;
    }

    .inner-logo {
        width: 150px;
    }

    /* 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) {
    .content-layer {
        padding: 60px 15px 15px;
    }

    .container {
        width: 95%;
        padding: 0 10px;
    }

    .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: 140px;
    }

    .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: 250px;
        height: 250px;
        margin-bottom: 20px;
    }

    .inner-logo {
        width: 120px;
    }

    .editorial-grid {
        gap: 20px;
    }

    .cards-row.seamless-row {
        gap: 20px;
    }

    /* 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(45, 138, 128, 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(45, 138, 128, 0.3);
    border-radius: 30px;
    background: rgba(45, 138, 128, 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(45, 138, 128, 0.3);
}

.strategy-card.featured {
    background: rgba(45, 138, 128, 0.08);
    border-color: rgba(45, 138, 128, 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(45, 138, 128, 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(45, 138, 128, 0.15);
    border-radius: 20px;
    border: 1px solid rgba(45, 138, 128, 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(45, 138, 128, 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(45, 138, 128, 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(45, 138, 128, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(45, 138, 128, 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(45, 138, 128, 0.3);
    border-radius: 16px;
    transition: all 0.4s var(--ease-smooth);
}

.value-simple:hover {
    border-color: rgba(45, 138, 128, 0.5);
    background: rgba(45, 138, 128, 0.03);
}

.value-simple-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    border: 1px solid rgba(45, 138, 128, 0.3);
    border-radius: 12px;
    transition: all 0.4s var(--ease-smooth);
}

.value-simple:hover .value-simple-icon {
    border-color: rgba(45, 138, 128, 0.6);
    background: rgba(45, 138, 128, 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, #f0f7f6 0%, #e8f4f2 50%, #f0f7f6 100%) !important;
}

.subsidiaries-compact {
    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(--primary);
    font-size: 1rem;
}

.subsidiaries-header .section-title {
    color: var(--text-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: #fff;
    border: 1px solid rgba(45, 138, 128, 0.15);
    border-radius: 16px;
    padding: 25px 30px;
    transition: all 0.4s var(--ease-smooth);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.sub-card:hover {
    border-color: rgba(45, 138, 128, 0.5);
    background: #fff;
    transform: translateX(-5px);
    box-shadow: 0 15px 40px rgba(45, 138, 128, 0.15);
}

[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(--text-dark);
    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(45, 138, 128, 0.4);
    background: rgba(45, 138, 128, 0.05);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(45, 138, 128, 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(45, 138, 128, 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(45, 138, 128, 0.4);
    box-shadow: 0 25px 60px rgba(45, 138, 128, 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(45, 138, 128, 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(45, 138, 128, 0.1);
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 0.85rem;
    color: var(--gold);
    border: 1px solid rgba(45, 138, 128, 0.3);
    transition: all 0.3s;
}

.subsidiary-services li:hover {
    background: rgba(45, 138, 128, 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, #f5f9f8 0%, #edf5f3 50%, #f5f9f8 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-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: #fff;
    border-radius: 24px;
    padding: 40px 25px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(45, 138, 128, 0.12);
    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(45, 138, 128, 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(45, 138, 128, 0.5);
    box-shadow: 0 20px 50px rgba(45, 138, 128, 0.15);
}

.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(45, 138, 128, 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(45, 138, 128, 0.5);
}

.why-us-icon svg {
    width: 36px;
    height: 36px;
    color: white;
}

.why-us-card h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.why-us-card p {
    font-size: 0.9rem;
    color: var(--text-medium, #555);
    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(45, 138, 128, 0.4));
    transition: all 0.3s var(--ease-smooth);
}

.contact-item:hover svg {
    filter: drop-shadow(0 0 15px rgba(45, 138, 128, 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(45, 138, 128, 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, #edf5f3 0%, #f0f7f6 50%, #edf5f3 100%) !important;
    position: relative;
}

.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(45, 138, 128, 0.12) 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(--primary);
    font-weight: 600;
    margin-bottom: 8px;
    padding: 4px 12px;
    background: rgba(45, 138, 128, 0.1);
    border: 1px solid rgba(45, 138, 128, 0.3);
    border-radius: 30px;
}

.values-main-title {
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 6px;
}

.values-subtitle {
    font-size: 0.8rem;
    color: var(--text-medium, #666);
    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: #fff;
    border: 1px solid rgba(45, 138, 128, 0.12);
    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;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.value-card:hover .value-card-inner {
    transform: translateY(-10px);
    border-color: rgba(45, 138, 128, 0.5);
    box-shadow:
        0 20px 40px rgba(45, 138, 128, 0.12),
        0 0 60px rgba(45, 138, 128, 0.06);
}

/* 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(45, 138, 128, 0.2) 0%, rgba(45, 138, 128, 0.05) 100%);
    border: 1px solid rgba(45, 138, 128, 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(45, 138, 128, 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(45, 138, 128, 0.06);
    line-height: 1;
    transition: all 0.4s;
}

[dir="rtl"] .value-number {
    right: auto;
    left: 15px;
}

.value-card:hover .value-number {
    color: rgba(45, 138, 128, 0.18);
}

/* Value Content */
.value-card h4 {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-weight: 600;
    transition: color 0.3s;
}

.value-card:hover h4 {
    color: var(--primary);
}

.value-card p {
    font-size: 0.85rem;
    color: var(--text-medium, #666);
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
}

/* Featured Card */
.value-card.featured .value-card-inner {
    background: linear-gradient(145deg, rgba(45, 138, 128, 0.12) 0%, rgba(45, 138, 128, 0.03) 100%);
    border-color: rgba(45, 138, 128, 0.3);
}

.value-card.featured .value-icon {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    box-shadow: 0 10px 30px rgba(45, 138, 128, 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-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-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;
    }
}

/* ==========================================
   WHATSAPP FLOATING BUTTON
   ========================================== */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    left: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    cursor: pointer;
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    color: white;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.whatsapp-float:active {
    transform: scale(0.95);
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        left: 20px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 15px;
        left: 15px;
    }

    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }
}

/* ==========================================
   PROJECTS GALLERY SECTION
   ========================================== */
.projects-section {
    background: linear-gradient(180deg, var(--bg-light) 0%, #f8f9fa 100%);
    padding: 80px 0 100px;
}

.projects-header {
    text-align: center;
    margin-bottom: 60px;
}

.projects-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-top: 15px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Projects Gallery Grid - Masonry Style */
.projects-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    padding: 0 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    aspect-ratio: 3/4;
    background: var(--bg-dark);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s var(--ease-smooth);
}

.gallery-item.featured {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-smooth), filter 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            transparent 0%,
            rgba(45, 138, 128, 0.1) 50%,
            rgba(45, 138, 128, 0.7) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-zoom {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    font-weight: 300;
    transform: scale(0.5);
    opacity: 0;
    transition: all 0.4s var(--ease-smooth);
}

.gallery-item:hover .gallery-zoom {
    transform: scale(1);
    opacity: 1;
}

/* Hover lift effect */
.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(45, 138, 128, 0.25);
    z-index: 10;
}

/* ==========================================
   LIGHTBOX MODAL
   ========================================== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
    position: relative;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: lightboxFadeIn 0.4s ease;
}

@keyframes lightboxFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10002;
}

.lightbox-close:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 2px;
}

/* ==========================================
   PROJECTS GALLERY - RESPONSIVE
   ========================================== */
@media (max-width: 1200px) {
    .projects-gallery {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery-item.featured {
        grid-column: span 2;
        grid-row: span 1;
        aspect-ratio: 16/9;
    }
}

@media (max-width: 768px) {
    .projects-section {
        padding: 60px 0;
    }

    .projects-gallery {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 0 15px;
    }

    .gallery-item {
        aspect-ratio: 1;
        border-radius: 10px;
        overflow: hidden;
    }

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .gallery-item.featured {
        grid-column: span 2;
        aspect-ratio: 16/9;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .lightbox-prev {
        left: 15px;
    }

    .lightbox-next {
        right: 15px;
    }

    .lightbox-close {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .projects-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .gallery-item {
        aspect-ratio: 1;
        border-radius: 8px;
    }

    .gallery-item.featured {
        grid-column: span 2;
        aspect-ratio: 16/10;
    }

    .gallery-zoom {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .projects-header h2 {
        font-size: 1.8rem;
    }
}

/* ==========================================
   PROJECT CARDS - Showcase Grid
   ========================================== */
.project-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 0 20px;
}

.project-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.4s var(--ease-smooth);
    text-decoration: none;
    color: inherit;
    display: block;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(45, 138, 128, 0.2);
}

.project-card__img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.project-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-smooth);
}

.project-card:hover .project-card__img img {
    transform: scale(1.08);
}

.project-card__badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(45, 138, 128, 0.9);
    color: #fff;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    backdrop-filter: blur(8px);
}

[dir="ltr"] .project-card__badge {
    right: auto;
    left: 16px;
}

.project-card__info {
    padding: 20px 24px 24px;
}

.project-card__info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--primary);
}

.project-card__info p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Project cards - arrow indicator */
.project-card__info::after {
    content: '←';
    display: block;
    margin-top: 12px;
    font-size: 1.2rem;
    color: var(--gold);
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
}

[dir="ltr"] .project-card__info::after {
    content: '→';
    transform: translateX(-10px);
}

.project-card:hover .project-card__info::after {
    opacity: 1;
    transform: translateX(0);
}

/* Project cards responsive */
@media (max-width: 1024px) {
    .project-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 640px) {
    .project-cards {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 16px;
    }

    .project-card__img {
        aspect-ratio: 16/10;
    }

    .project-card__info {
        padding: 16px 20px 20px;
    }

    .project-card__info h3 {
        font-size: 1.1rem;
    }

    .project-card__info p {
        font-size: 0.85rem;
    }
}

/* ==========================================
   PROJECT DETAIL PAGE STYLES
   ========================================== */
.project-hero {
    position: relative;
    padding: 140px 0 60px;
    background: linear-gradient(135deg, #0a1628 0%, #0f2942 50%, #1a4a5c 100%);
    text-align: center;
    overflow: hidden;
}

.project-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('') center/cover;
    opacity: 0.15;
}

.project-hero__content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.project-hero__back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 24px;
    transition: color 0.3s;
}

.project-hero__back:hover {
    color: #fff;
}

.project-hero__title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 8px;
}

.project-hero__location {
    font-size: 1.1rem;
    color: var(--gold-light);
    font-weight: 500;
}

/* Project Info Specs */
.project-specs {
    padding: 50px 0 36px;
    background: var(--bg-section);
}

.project-specs__grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Project Tabs */
.project-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 32px 20px 16px;
    flex-wrap: wrap;
    background: var(--bg-section);
}

.project-tab {
    padding: 10px 24px;
    border: 2px solid #ddd;
    border-radius: 50px;
    background: #fff;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    color: #666;
    transition: all 0.3s ease;
}

.project-tab:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.project-tab.active {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
}

/* Project Image Grid */
.project-gallery-section {
    padding: 24px 0 64px;
    background: var(--bg-section);
}

.project-gallery {
    display: none;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.project-gallery.active {
    display: grid;
}

@media (max-width: 1024px) {
    .project-gallery {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .project-hero__title {
        font-size: 1.8rem;
    }

    .project-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 0 16px;
    }

    .project-tabs {
        gap: 6px;
        padding: 24px 16px 12px;
    }

    .project-tab {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    .project-specs__grid {
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .project-hero {
        padding: 120px 0 40px;
    }

    .project-hero__title {
        font-size: 1.5rem;
    }

    .project-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
}

/* ==========================================
   PROJECT DESCRIPTION SECTION
   ========================================== */
.project-description {
    max-width: 750px;
    margin: 0 auto;
    padding: 40px 24px 16px;
    text-align: center;
    background: var(--bg-section);
}

.project-description p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #444;
    margin: 0;
}

/* ==========================================
   PROJECT SPECS - PREMIUM AMENITY CARDS
   ========================================== */
.project-specs {
    padding: 48px 0 36px;
    background: var(--bg-section);
}

.project-specs__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
    max-width: 960px;
    margin: 0 auto;
    padding: 0 24px;
}

.project-spec {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(45, 138, 128, 0.1);
    border-radius: 16px;
    padding: 18px 20px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1),
        box-shadow 0.4s cubic-bezier(0.19, 1, 0.22, 1),
        border-color 0.4s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04),
        0 4px 24px rgba(0, 0, 0, 0.02);
}

/* Decorative accent line on the right (RTL) */
.project-spec::before {
    content: '';
    position: absolute;
    top: 12px;
    bottom: 12px;
    right: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 3px 0 0 3px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

[dir="ltr"] .project-spec::before {
    right: auto;
    left: 0;
    border-radius: 0 3px 3px 0;
}

.project-spec:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(45, 138, 128, 0.15),
        0 16px 48px rgba(0, 0, 0, 0.06);
    border-color: rgba(45, 138, 128, 0.25);
}

.project-spec:hover::before {
    opacity: 1;
}

/* Gradient Icon Container */
.spec-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    min-width: 48px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 14px;
    color: #fff;
    fill: #fff;
    padding: 10px;
    box-shadow: 0 4px 12px rgba(45, 138, 128, 0.25);
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1),
        box-shadow 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.project-spec:hover .spec-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(45, 138, 128, 0.35);
}

.spec-icon path,
.spec-icon circle,
.spec-icon rect,
.spec-icon polygon {
    fill: #fff;
}

.project-spec span {
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.5;
    color: #1a2332;
    letter-spacing: -0.01em;
}

/* Tablet */
@media (max-width: 768px) {
    .project-specs__grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 12px;
        padding: 0 16px;
    }

    .project-spec {
        padding: 14px 16px;
        gap: 12px;
        border-radius: 14px;
    }

    .spec-icon {
        width: 42px;
        height: 42px;
        min-width: 42px;
        padding: 9px;
        border-radius: 12px;
    }

    .project-spec span {
        font-size: 0.88rem;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .project-specs {
        padding: 32px 0 24px;
    }

    .project-specs__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 0 14px;
    }

    .project-spec {
        padding: 14px;
        gap: 10px;
        border-radius: 12px;
    }

    .spec-icon {
        width: 38px;
        height: 38px;
        min-width: 38px;
        padding: 8px;
        border-radius: 10px;
    }

    .project-spec span {
        font-size: 0.8rem;
        font-weight: 600;
    }
}

/* ==========================================
   STICKY TABS + HORIZONTAL SCROLL ON MOBILE
   ========================================== */
.project-tabs {
    position: sticky;
    top: 70px;
    z-index: 50;
    background: var(--bg-section);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.project-tab {
    color: #555;
}

@media (max-width: 640px) {
    .project-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        justify-content: flex-start;
        padding: 20px 16px 12px;
    }

    .project-tabs::-webkit-scrollbar {
        display: none;
    }

    .project-tab {
        flex-shrink: 0;
        scroll-snap-align: start;
        white-space: nowrap;
    }
}

/* ==========================================
   GALLERY TAB TRANSITION ANIMATION
   ========================================== */
.project-gallery.active {
    display: grid;
    animation: galleryFadeIn 0.4s ease;
}

@keyframes galleryFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Gallery stagger animation */
.project-gallery.active .gallery-item {
    animation: galleryItemIn 0.5s ease both;
}

.project-gallery.active .gallery-item:nth-child(1) {
    animation-delay: 0s;
}

.project-gallery.active .gallery-item:nth-child(2) {
    animation-delay: 0.05s;
}

.project-gallery.active .gallery-item:nth-child(3) {
    animation-delay: 0.1s;
}

.project-gallery.active .gallery-item:nth-child(4) {
    animation-delay: 0.15s;
}

.project-gallery.active .gallery-item:nth-child(5) {
    animation-delay: 0.2s;
}

.project-gallery.active .gallery-item:nth-child(6) {
    animation-delay: 0.25s;
}

.project-gallery.active .gallery-item:nth-child(7) {
    animation-delay: 0.3s;
}

.project-gallery.active .gallery-item:nth-child(8) {
    animation-delay: 0.35s;
}

@keyframes galleryItemIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* All gallery items uniform — no featured first image */
.project-gallery .gallery-item:first-child {
    grid-column: span 1;
}

/* ==========================================
   GALLERY LOADING SKELETON
   ========================================== */
.gallery-item.loading {
    background: linear-gradient(90deg, #eee 25%, #f5f5f5 50%, #eee 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.gallery-item img.loaded {
    animation: imgFadeIn 0.3s ease;
}

@keyframes imgFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ==========================================
   INQUIRY CTA SECTION
   ========================================== */
.project-cta {
    background: linear-gradient(135deg, var(--primary) 0%, #1a6b60 100%);
    padding: 60px 24px;
    text-align: center;
}

.project-cta__inner {
    max-width: 600px;
    margin: 0 auto;
}

.project-cta h2 {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.project-cta p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    margin-bottom: 32px;
    line-height: 1.6;
}

.project-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #fff;
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.3);
}

.project-cta__btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(37, 211, 102, 0.4);
    background: #20bd5a;
}

.project-cta__btn svg {
    width: 22px;
    height: 22px;
}

@media (max-width: 640px) {
    .project-cta {
        padding: 48px 20px;
    }

    .project-cta h2 {
        font-size: 1.4rem;
    }

    .project-cta__btn {
        padding: 14px 28px;
        font-size: 1rem;
    }
}

/* ==========================================
   PROJECT FOOTER (Detail Pages) - Full Contact
   ========================================== */
.project-footer {
    background: linear-gradient(135deg, #0a1628 0%, #0f2942 100%);
    padding: 60px 20px 40px;
    text-align: center;
}

.project-footer__inner {
    max-width: 700px;
    margin: 0 auto;
}

.project-footer__contacts {
    display: flex;
    justify-content: center;
    gap: 28px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.project-footer__contacts a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
    direction: ltr;
    unicode-bidi: embed;
}

.project-footer__contacts a:hover {
    color: #fff;
}

.project-footer__contacts svg {
    flex-shrink: 0;
}

.project-footer__address {
    color: rgba(255, 255, 255, 0.5);
    font-style: normal;
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 28px;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
}

.project-footer__logo {
    margin-bottom: 16px;
    opacity: 0.9;
}

.project-footer__copy {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.8rem;
    margin: 0;
}

.project-footer__contacts span {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
}

.project-footer__email {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
    margin-bottom: 16px;
    direction: ltr;
    unicode-bidi: embed;
}

.project-footer__email:hover {
    color: #fff;
}

.project-footer .footer-btn {
    display: inline-block;
    padding: 14px 40px;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    margin: 20px 0;
    transition: background 0.3s, transform 0.2s;
}

.project-footer .footer-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.project-footer .footer-logo-wrap {
    margin-bottom: 20px;
}

/* Project Hero Status Badge */
.project-hero__badge-wrap {
    margin-bottom: 16px;
}

.project-hero__status {
    display: inline-block;
    background: rgba(255, 193, 7, 0.9);
    color: #1a1a1a;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.03em;
}

/* Project Hero Location with icon */
.project-hero__location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* Navbar on project pages - always visible dark bg */
.navbar--project {
    background: rgba(10, 22, 40, 0.95) !important;
    backdrop-filter: blur(10px);
}

.navbar--project .nav-link {
    color: rgba(255, 255, 255, 0.85);
}

.navbar--project .nav-link:hover {
    color: #fff;
}

.navbar--project .nav-link::after {
    background: var(--gold);
}

.navbar--project .lang-btn {
    color: rgba(255, 255, 255, 0.6);
}

.navbar--project .lang-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.navbar--project .lang-btn.active {
    color: var(--gold);
    background: rgba(45, 138, 128, 0.2);
}

.navbar--project .menu-toggle span {
    background-color: #fff;
}

.navbar--project .logo {
    height: 120px;
}

/* Gallery item aspect ratio for project pages */
.project-gallery .gallery-item {
    aspect-ratio: 16/10;
}

/* ==========================================
   FOCUS-VISIBLE STYLES (Accessibility)
   ========================================== */
.project-tab:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

.gallery-item:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

.lightbox-close:focus-visible,
.lightbox-prev:focus-visible,
.lightbox-next:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 3px;
}

.project-hero__back:focus-visible {
    outline: 2px solid var(--gold-light);
    outline-offset: 4px;
    border-radius: 4px;
}

.project-cta__btn:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 4px;
}

/* ==========================================
   PREFERS-REDUCED-MOTION
   ========================================== */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ==========================================
   CARD HOVER MICRO-INTERACTIONS (Index)
   ========================================== */
.project-card {
    perspective: 1000px;
}

.project-card:hover .project-card__img img {
    transform: scale(1.05);
}

/* ==========================================
   PROJECT PAGE MOBILE GALLERY
   ========================================== */
@media (max-width: 480px) {
    .project-gallery .gallery-item:first-child {
        grid-column: span 1;
    }

    .project-gallery .gallery-item {
        aspect-ratio: 16/10;
    }

    .project-description p {
        font-size: 1rem;
        line-height: 1.8;
    }
}

@media (max-width: 640px) {
    .project-footer__contacts {
        flex-direction: column;
        gap: 14px;
        align-items: center;
    }

    .project-gallery .gallery-item {
        aspect-ratio: 16/10;
    }
}

/* ==========================================
   VIDEO GALLERY SECTION
   ========================================== */
.videos-section {
    background: linear-gradient(180deg, #0a1628 0%, #0f2942 100%) !important;
    padding: 80px 0 100px;
}

.videos-section .content-layer {
    background: transparent;
}

.videos-header {
    text-align: center;
    margin-bottom: 60px;
}

.videos-section .sub-label,
.videos-header .sub-label {
    color: var(--primary) !important;
}

.videos-section .section-title,
.videos-header .section-title {
    color: white !important;
}

.videos-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7) !important;
    margin-top: 15px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Videos Grid */
.videos-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.video-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.4s var(--ease-smooth);
}

.video-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(45, 138, 128, 0.3);
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Video hover glow effect */
.video-item::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, var(--primary), transparent, var(--gold));
    border-radius: 18px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.video-item:hover::before {
    opacity: 1;
}

/* ==========================================
   VIDEO GALLERY - RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
    .videos-gallery {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .videos-section {
        padding: 60px 0 80px;
    }

    .videos-gallery {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }

    .video-item {
        border-radius: 12px;
    }

    .videos-header h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .videos-gallery {
        gap: 15px;
    }

    .video-item {
        border-radius: 10px;
    }
}

/* ==========================================
   VALUES SECTION V2 - CREATIVE REDESIGN
   ========================================== */
.values-section-v2 {
    background: linear-gradient(165deg, #0c1f2b 0%, #0a2a2a 40%, #132e24 100%) !important;
    position: relative;
}

.values-v2-bg {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(ellipse at 10% 20%, rgba(45, 138, 128, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 80%, rgba(218, 165, 32, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(45, 138, 128, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.values-section-v2 .content-layer {
    padding-top: 50px;
    padding-bottom: 30px;
}

/* Header */
.values-v2-header {
    text-align: center;
    margin-bottom: 50px;
}

.values-v2-label-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 16px;
}

.values-v2-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(45, 138, 128, 0.6), transparent);
}

.values-v2-badge {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #5cbfb5;
    font-weight: 600;
}

.values-v2-title {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    color: #fff;
    font-weight: 800;
    margin-bottom: 8px;
}

.values-v2-subtitle {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
    max-width: 400px;
    margin: 0 auto;
}

/* Values Grid */
.values-v2-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

/* Value Card */
.val-card {
    position: relative;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 32px 28px 28px;
    overflow: hidden;
    transition: all 0.45s cubic-bezier(.4, 0, .2, 1);
}

.val-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

/* Accent Border (left side) */
.val-card__accent {
    position: absolute;
    top: 20px;
    right: 0;
    width: 4px;
    height: 50px;
    border-radius: 4px 0 0 4px;
    transition: height 0.4s cubic-bezier(.4, 0, .2, 1);
}

[dir="ltr"] .val-card__accent {
    right: auto;
    left: 0;
    border-radius: 0 4px 4px 0;
}

.val-card:hover .val-card__accent {
    height: calc(100% - 40px);
}

/* Color variants */
.val-card--teal .val-card__accent {
    background: linear-gradient(180deg, #2d8a80, #5cbfb5);
}

.val-card--gold .val-card__accent {
    background: linear-gradient(180deg, #daa520, #f0d060);
}

.val-card--emerald .val-card__accent {
    background: linear-gradient(180deg, #2e8b57, #66cdaa);
}

.val-card--navy .val-card__accent {
    background: linear-gradient(180deg, #34495e, #5dade2);
}

/* Large Number Background */
.val-card__num {
    position: absolute;
    top: -10px;
    left: 10px;
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    pointer-events: none;
    transition: all 0.4s;
}

[dir="rtl"] .val-card__num {
    left: auto;
    right: 10px;
}

.val-card:hover .val-card__num {
    transform: scale(1.1);
}

/* Teal number glow per variant */
.val-card--teal:hover .val-card__num {
    background: linear-gradient(180deg, rgba(45, 138, 128, 0.2), transparent);
    -webkit-background-clip: text;
    background-clip: text;
}

.val-card--gold:hover .val-card__num {
    background: linear-gradient(180deg, rgba(218, 165, 32, 0.2), transparent);
    -webkit-background-clip: text;
    background-clip: text;
}

.val-card--emerald:hover .val-card__num {
    background: linear-gradient(180deg, rgba(46, 139, 87, 0.2), transparent);
    -webkit-background-clip: text;
    background-clip: text;
}

.val-card--navy:hover .val-card__num {
    background: linear-gradient(180deg, rgba(93, 173, 226, 0.2), transparent);
    -webkit-background-clip: text;
    background-clip: text;
}

/* Icon */
.val-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: all 0.4s;
    position: relative;
    z-index: 1;
}

.val-card__icon svg {
    width: 24px;
    height: 24px;
    transition: all 0.3s;
}

/* Icon color variants */
.val-card--teal .val-card__icon {
    background: linear-gradient(135deg, rgba(45, 138, 128, 0.2), rgba(45, 138, 128, 0.05));
    border: 1px solid rgba(45, 138, 128, 0.3);
}

.val-card--teal .val-card__icon svg {
    stroke: #5cbfb5;
}

.val-card--teal:hover .val-card__icon {
    background: linear-gradient(135deg, #2d8a80, #1f7a6e);
    box-shadow: 0 8px 25px rgba(45, 138, 128, 0.4);
}

.val-card--teal:hover .val-card__icon svg {
    stroke: #fff;
}

.val-card--gold .val-card__icon {
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.2), rgba(218, 165, 32, 0.05));
    border: 1px solid rgba(218, 165, 32, 0.3);
}

.val-card--gold .val-card__icon svg {
    stroke: #f0d060;
}

.val-card--gold:hover .val-card__icon {
    background: linear-gradient(135deg, #daa520, #b8860b);
    box-shadow: 0 8px 25px rgba(218, 165, 32, 0.4);
}

.val-card--gold:hover .val-card__icon svg {
    stroke: #fff;
}

.val-card--emerald .val-card__icon {
    background: linear-gradient(135deg, rgba(46, 139, 87, 0.2), rgba(46, 139, 87, 0.05));
    border: 1px solid rgba(46, 139, 87, 0.3);
}

.val-card--emerald .val-card__icon svg {
    stroke: #66cdaa;
}

.val-card--emerald:hover .val-card__icon {
    background: linear-gradient(135deg, #2e8b57, #1f6f40);
    box-shadow: 0 8px 25px rgba(46, 139, 87, 0.4);
}

.val-card--emerald:hover .val-card__icon svg {
    stroke: #fff;
}

.val-card--navy .val-card__icon {
    background: linear-gradient(135deg, rgba(52, 73, 94, 0.3), rgba(52, 73, 94, 0.08));
    border: 1px solid rgba(93, 173, 226, 0.3);
}

.val-card--navy .val-card__icon svg {
    stroke: #5dade2;
}

.val-card--navy:hover .val-card__icon {
    background: linear-gradient(135deg, #34495e, #2c3e50);
    box-shadow: 0 8px 25px rgba(93, 173, 226, 0.4);
}

.val-card--navy:hover .val-card__icon svg {
    stroke: #fff;
}

/* Card text */
.val-card__title {
    font-size: 1.15rem;
    color: #fff;
    font-weight: 700;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.val-card__desc {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Values responsive */
@media (max-width: 768px) {
    .values-v2-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0 10px;
    }

    .val-card__num {
        font-size: 3.5rem;
    }
}


/* ==========================================
   WHY US SECTION V2 - BENTO GRID
   ========================================== */
.whyus-v2 {
    background: linear-gradient(160deg, #0f2027 0%, #0a2a2a 50%, #1a3a2a 100%) !important;
    position: relative;
}

.whyus-v2-bg {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(ellipse at 70% 20%, rgba(45, 138, 128, 0.12) 0%, transparent 45%),
        radial-gradient(ellipse at 20% 80%, rgba(218, 165, 32, 0.06) 0%, transparent 45%);
    pointer-events: none;
}

.whyus-v2-header {
    text-align: center;
    margin-bottom: 50px;
}

.whyus-v2-label {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #5cbfb5;
    font-weight: 600;
    margin-bottom: 12px;
}

.whyus-v2-title {
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    color: #fff;
    font-weight: 800;
}

/* Bento Grid */
.whyus-v2-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Card */
.wu-card {
    position: relative;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 60px 28px 28px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(.4, 0, .2, 1);
}

.wu-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

/* Featured card spans full width */
.wu-card--featured {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 32px 36px;
}

.wu-card--featured .wu-card__badge {
    position: static;
    flex-shrink: 0;
}

/* Top gradient strip */
.wu-card__strip {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2d8a80, #5cbfb5);
    transition: height 0.35s cubic-bezier(.4, 0, .2, 1);
}

.wu-card:hover .wu-card__strip {
    height: 6px;
}

.wu-card__strip--emerald {
    background: linear-gradient(90deg, #2e8b57, #66cdaa);
}

.wu-card__strip--gold {
    background: linear-gradient(90deg, #daa520, #f0d060);
}

.wu-card__strip--blue {
    background: linear-gradient(90deg, #34495e, #5dade2);
}

/* Badge Icon */
.wu-card__badge {
    position: absolute;
    top: -1px;
    right: 28px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #2d8a80, #1f7a6e);
    border-radius: 0 0 16px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(45, 138, 128, 0.4);
    transition: all 0.4s;
}

[dir="ltr"] .wu-card__badge {
    right: auto;
    left: 28px;
}

.wu-card--featured .wu-card__badge {
    border-radius: 16px;
    width: 64px;
    height: 64px;
}

.wu-card__badge svg {
    width: 24px;
    height: 24px;
    stroke: #fff;
}

.wu-card:hover .wu-card__badge {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(45, 138, 128, 0.5);
}

/* Badge color variants */
.wu-card__badge--emerald {
    background: linear-gradient(135deg, #2e8b57, #1f6f40);
    box-shadow: 0 8px 25px rgba(46, 139, 87, 0.4);
}

.wu-card__badge--gold {
    background: linear-gradient(135deg, #daa520, #b8860b);
    box-shadow: 0 8px 25px rgba(218, 165, 32, 0.4);
}

.wu-card__badge--blue {
    background: linear-gradient(135deg, #34495e, #2c3e50);
    box-shadow: 0 8px 25px rgba(93, 173, 226, 0.3);
}

/* Card content */
.wu-card__content h3 {
    font-size: 1.2rem;
    color: #fff;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.wu-card__content p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    margin: 0;
}

/* Why Us responsive */
@media (max-width: 768px) {
    .whyus-v2-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0 10px;
    }

    .wu-card--featured {
        flex-direction: column;
        text-align: center;
        padding: 28px 24px;
    }

    .wu-card__badge {
        right: 20px;
    }

    [dir="ltr"] .wu-card__badge {
        left: 20px;
    }
}


/* ==========================================
   SUBSIDIARIES SECTION V2 - CREATIVE REDESIGN
   ========================================== */
.subs-section-v2 {
    background: linear-gradient(170deg, #0a1e28 0%, #0a2a2a 50%, #0f2820 100%) !important;
    position: relative;
}

.subs-v2-bg {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(ellipse at 30% 30%, rgba(45, 138, 128, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(44, 120, 80, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.subs-v2-header {
    text-align: center;
    margin-bottom: 50px;
}

.subs-v2-label {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #5cbfb5;
    font-weight: 600;
    margin-bottom: 12px;
}

.subs-v2-title {
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    color: #fff;
    font-weight: 800;
    margin-bottom: 8px;
}

.subs-v2-subtitle {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Subsidiary Cards */
.subs-v2-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 700px;
    margin: 0 auto;
}

.subs-v2-card {
    display: flex;
    align-items: center;
    gap: 24px;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 28px 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(.4, 0, .2, 1);
}

.subs-v2-card:hover {
    transform: translateY(-6px) scale(1.01);
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(45, 138, 128, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* Left gradient strip */
.subs-v2-card__gradient {
    position: absolute;
    top: 15%;
    right: 0;
    width: 4px;
    height: 70%;
    border-radius: 4px 0 0 4px;
    transition: all 0.4s;
}

[dir="ltr"] .subs-v2-card__gradient {
    right: auto;
    left: 0;
    border-radius: 0 4px 4px 0;
}

.subs-v2-card__gradient--green {
    background: linear-gradient(180deg, #4CAF50, #81C784);
}

.subs-v2-card__gradient--teal {
    background: linear-gradient(180deg, #2d8a80, #5cbfb5);
}

.subs-v2-card:hover .subs-v2-card__gradient {
    height: 85%;
    top: 8%;
    width: 5px;
}

/* Logo */
.subs-v2-card__logo {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s;
    padding: 10px;
}

.subs-v2-card__logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.subs-v2-card:hover .subs-v2-card__logo {
    transform: scale(1.08);
    border-color: rgba(45, 138, 128, 0.3);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Body */
.subs-v2-card__body {
    flex: 1;
}

.subs-v2-card__body h3 {
    font-size: 1.15rem;
    color: #fff;
    font-weight: 700;
    margin: 0 0 4px 0;
}

.subs-v2-card__body p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
    line-height: 1.5;
}

/* Arrow */
.subs-v2-card__arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(45, 138, 128, 0.15);
    border: 1px solid rgba(45, 138, 128, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s;
}

.subs-v2-card__arrow svg {
    width: 20px;
    height: 20px;
    stroke: #5cbfb5;
    transition: all 0.3s;
}

[dir="rtl"] .subs-v2-card__arrow svg {
    transform: rotate(180deg);
}

.subs-v2-card:hover .subs-v2-card__arrow {
    background: linear-gradient(135deg, #2d8a80, #1f7a6e);
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(45, 138, 128, 0.4);
    transform: scale(1.1);
}

.subs-v2-card:hover .subs-v2-card__arrow svg {
    stroke: #fff;
}

/* Subsidiaries responsive */
@media (max-width: 768px) {
    .subs-v2-cards {
        padding: 0 10px;
    }

    .subs-v2-card {
        padding: 20px 22px;
        gap: 16px;
    }

    .subs-v2-card__logo {
        width: 60px;
        height: 60px;
    }

    .subs-v2-card__arrow {
        width: 38px;
        height: 38px;
    }
}