/* ============================================
   ARKAN AL ITHBAT LAW FIRM
   PREMIUM LUXURY DESIGN SYSTEM
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
    --primary: #264B82;
    --primary-mid: #2E5A96;
    --primary-light: #3A6DB0;
    --primary-glow: #4A82C4;
    --accent: #C9A96E;
    --accent-light: #DBBF8A;
    --accent-dark: #B08C4A;
    --accent-glow: rgba(201, 169, 110, 0.25);
    --white: #FFFFFF;
    --off-white: #FAF9F7;
    --cream: #F5F0E8;
    --gray-50: #FAFAF9;
    --gray-100: #F3F3F2;
    --gray-200: #E8E7E5;
    --gray-300: #D4D3D0;
    --gray-400: #A3A19E;
    --gray-500: #7A7875;
    --gray-600: #5C5A57;
    --gray-700: #3D3B38;
    --gray-800: #2A2927;
    --gray-900: #1A1918;
    --text-dark: #1E3455;
    --text-body: #3D4555;
    --text-muted: #6B7185;
    --success: #2ECC71;
    --danger: #E74C3C;

    --shadow-xs: 0 1px 3px rgba(12, 27, 51, 0.04);
    --shadow-sm: 0 2px 12px rgba(12, 27, 51, 0.06);
    --shadow-md: 0 8px 30px rgba(12, 27, 51, 0.08);
    --shadow-lg: 0 16px 50px rgba(12, 27, 51, 0.10);
    --shadow-xl: 0 24px 70px rgba(12, 27, 51, 0.14);
    --shadow-2xl: 0 32px 90px rgba(12, 27, 51, 0.18);
    --shadow-gold: 0 8px 40px rgba(201, 169, 110, 0.20);
    --shadow-gold-lg: 0 16px 60px rgba(201, 169, 110, 0.30);

    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-2xl: 36px;

    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition: all 0.4s var(--ease-out);
    --transition-slow: all 0.6s var(--ease-out);
    --transition-fast: all 0.2s var(--ease-out);

    --font-ar: 'Tajawal', sans-serif;
    --font-en: 'Inter', sans-serif;
    --font-display: 'Playfair Display', serif;

    --nav-height: 80px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 17px;
    scrollbar-width: thin;
    scrollbar-color: var(--accent) var(--gray-100);
}

body {
    font-family: var(--font-ar);
    color: var(--text-body);
    background: var(--white);
    line-height: 1.85;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.no-scroll {
    overflow: hidden;
}

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

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

ul { list-style: none; }

/* ---------- Custom Scrollbar ---------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover { background: var(--accent-dark); }

::selection {
    background: rgba(201, 169, 110, 0.25);
    color: var(--primary);
}

/* ---------- Layout ---------- */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 32px;
}

.section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

/* ---------- Typography System ---------- */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.section-label::before {
    content: '';
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), transparent);
    display: block;
}

[dir="rtl"] .section-label::before {
    background: linear-gradient(-90deg, var(--accent), transparent);
}

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

.section-label-light::before {
    background: linear-gradient(-90deg, var(--accent-light), transparent);
}

.section-title {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 640px;
    margin: 0 auto;
    line-height: 2;
}

.section-header {
    margin-bottom: 72px;
}

.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.text-light { color: rgba(255,255,255,0.7) !important; }
.text-accent { color: var(--accent); }

.section-grid {
    display: grid;
    gap: 72px;
    align-items: center;
}

.two-col { grid-template-columns: 1fr 1fr; }

.section-text {
    font-size: 1.1rem;
    line-height: 2.1;
    color: var(--text-body);
    margin-bottom: 24px;
}

.lead-text {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 2;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 36px;
    font-family: var(--font-ar);
    font-size: 0.95rem;
    font-weight: 700;
    border: 2px solid transparent;
    border-radius: 60px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    justify-content: center;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.4s;
    z-index: -1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 4px 20px rgba(201, 169, 110, 0.25);
}

.btn-primary::before {
    background: linear-gradient(135deg, var(--accent-dark), #8A6E30);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold-lg);
}

.btn-primary:hover::before {
    opacity: 1;
}

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

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.3);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
    transform: translateY(-3px);
}

.btn-glass {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: var(--white);
    border-color: rgba(255,255,255,0.15);
}

.btn-glass:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.3);
    transform: translateY(-3px);
}

.btn-sm { padding: 10px 24px; font-size: 0.85rem; }
.btn-lg { padding: 18px 48px; font-size: 1.05rem; }
.btn-full { width: 100%; }

[dir="rtl"] .btn svg { transform: scaleX(-1); }

/* ---------- Preloader ---------- */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

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

.preloader-icon {
    font-size: 72px;
    color: var(--accent);
    animation: preloaderSpin 2s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(201, 169, 110, 0.4));
}

.preloader-text {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 300;
    margin-top: 20px;
    letter-spacing: 8px;
    text-transform: uppercase;
    opacity: 0.7;
}

.preloader-bar {
    width: 200px;
    height: 2px;
    background: rgba(255,255,255,0.1);
    margin: 24px auto 0;
    border-radius: 2px;
    overflow: hidden;
}

.preloader-bar-inner {
    width: 40%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    border-radius: 2px;
    animation: preloaderBar 1.5s ease-in-out infinite;
}

@keyframes preloaderSpin {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 1; }
    50% { transform: scale(1.1) rotate(5deg); opacity: 0.8; }
}

@keyframes preloaderBar {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(350%); }
}

/* ---------- Navbar ---------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 24px 0;
    transition: var(--transition-slow);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    padding: 10px 0;
    box-shadow: 0 1px 0 rgba(0,0,0,0.05), var(--shadow-md);
}

.navbar-inner {
    background: var(--white);
    box-shadow: 0 1px 0 rgba(0,0,0,0.05);
    padding: 10px 0;
}

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

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

.logo-icon {
    font-size: 36px;
    color: var(--accent);
    line-height: 1;
    filter: drop-shadow(0 2px 8px rgba(201, 169, 110, 0.3));
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.navbar:not(.scrolled):not(.navbar-inner) .logo-title {
    color: var(--white);
}

.logo-subtitle {
    font-size: 0.65rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.navbar:not(.scrolled):not(.navbar-inner) .logo-subtitle {
    color: rgba(255,255,255,0.5);
}

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

.nav-links a {
    padding: 10px 20px;
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--text-body);
    border-radius: 60px;
    transition: var(--transition);
    position: relative;
}

.navbar:not(.scrolled):not(.navbar-inner) .nav-links a {
    color: rgba(255,255,255,0.8);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 20px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
    transition: transform 0.3s var(--ease-out);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent);
}

.navbar:not(.scrolled):not(.navbar-inner) .nav-links a:hover,
.navbar:not(.scrolled):not(.navbar-inner) .nav-links a.active {
    color: var(--accent-light);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lang-toggle {
    padding: 7px 16px;
    background: transparent;
    border: 1.5px solid var(--gray-300);
    border-radius: 60px;
    font-family: var(--font-en);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 1px;
}

.navbar:not(.scrolled):not(.navbar-inner) .lang-toggle {
    border-color: rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.7);
}

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

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.menu-toggle span {
    width: 26px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
    transform-origin: center;
}

.navbar:not(.scrolled):not(.navbar-inner) .menu-toggle span {
    background: var(--white);
}

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

/* ---------- HERO SECTION ---------- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: var(--primary);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(160deg,
            rgba(12, 27, 51, 0.97) 0%,
            rgba(21, 39, 66, 0.90) 30%,
            rgba(30, 58, 95, 0.80) 60%,
            rgba(36, 59, 92, 0.85) 100%
        );
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(ellipse 600px 400px at 15% 85%, rgba(201, 169, 110, 0.12) 0%, transparent 70%),
        radial-gradient(ellipse 500px 500px at 85% 15%, rgba(201, 169, 110, 0.08) 0%, transparent 70%),
        radial-gradient(circle 300px at 50% 50%, rgba(201, 169, 110, 0.04) 0%, transparent 70%);
    animation: heroPulse 8s ease-in-out infinite alternate;
}

@keyframes heroPulse {
    0% { opacity: 0.7; }
    100% { opacity: 1; }
}

/* Geometric decorations */
.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    border: 1px solid rgba(201, 169, 110, 0.07);
    border-radius: 50%;
    z-index: 1;
    animation: heroCircle 20s linear infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    border: 1px solid rgba(201, 169, 110, 0.05);
    border-radius: 50%;
    z-index: 1;
    animation: heroCircle 25s linear infinite reverse;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 140px 0 100px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(201, 169, 110, 0.08);
    border: 1px solid rgba(201, 169, 110, 0.2);
    padding: 12px 28px;
    border-radius: 60px;
    color: var(--accent-light);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 36px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    letter-spacing: 1px;
}

.badge-icon {
    font-size: 1.3rem;
    filter: drop-shadow(0 0 8px rgba(201, 169, 110, 0.5));
}

.hero-title {
    font-size: clamp(2.4rem, 5.5vw, 4.5rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.hero-title-accent {
    display: block;
    background: linear-gradient(135deg, var(--accent-light), var(--accent), var(--accent-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: clamp(1.2rem, 2.8vw, 2rem);
    font-weight: 600;
    margin-top: 16px;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.8vw, 1.3rem);
    color: rgba(255, 255, 255, 0.65);
    max-width: 560px;
    margin: 0 auto 48px;
    line-height: 2;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 72px;
}

.hero-stats {
    display: inline-flex;
    align-items: center;
    gap: 0;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 80px;
    padding: 20px 8px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.stat-item {
    text-align: center;
    padding: 0 36px;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--accent);
    font-family: var(--font-en);
    line-height: 1;
    letter-spacing: -1px;
}

.stat-plus {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
}

.stat-label {
    display: block;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.82rem;
    margin-top: 6px;
    font-weight: 400;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.15), transparent);
}

.hero-scroll {
    position: absolute;
    bottom: 44px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: var(--transition);
}

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

.scroll-arrow {
    animation: scrollBounce 2.5s var(--ease-in-out) infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: 0.5; }
    50% { transform: translateY(10px); opacity: 1; }
}

/* ---------- About Brief ---------- */
.about-brief {
    background: var(--white);
}

.about-image-wrapper {
    position: relative;
}

.about-image-placeholder {
    width: 100%;
    aspect-ratio: 4/5;
    background: linear-gradient(160deg, var(--primary) 0%, var(--primary-light) 60%, var(--primary-glow) 100%);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 200px 200px at 30% 70%, rgba(201, 169, 110, 0.15), transparent),
        radial-gradient(ellipse 150px 150px at 70% 30%, rgba(201, 169, 110, 0.10), transparent);
}

.about-image-placeholder::after {
    content: '';
    position: absolute;
    inset: 16px;
    border: 1px solid rgba(201, 169, 110, 0.12);
    border-radius: calc(var(--radius-xl) - 8px);
}

.placeholder-icon {
    font-size: 140px;
    color: rgba(201, 169, 110, 0.12);
    position: relative;
    z-index: 1;
}

.placeholder-pattern {
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 30px, rgba(201, 169, 110, 0.02) 30px, rgba(201, 169, 110, 0.02) 31px);
}

.about-experience-badge {
    position: absolute;
    bottom: -24px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--white);
    padding: 28px 36px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-gold-lg);
    text-align: center;
}

[dir="rtl"] .about-experience-badge {
    right: -24px;
    left: auto;
}

[dir="ltr"] .about-experience-badge {
    left: -24px;
    right: auto;
}

.exp-number {
    display: block;
    font-size: 2.8rem;
    font-weight: 900;
    font-family: var(--font-en);
    line-height: 1;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.exp-text {
    font-size: 0.82rem;
    font-weight: 500;
    margin-top: 6px;
    line-height: 1.4;
    opacity: 0.9;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 36px 0;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
    padding: 12px 16px;
    background: var(--gray-50);
    border-radius: var(--radius-sm);
    border: 1px solid var(--gray-100);
    transition: var(--transition);
}

.about-feature:hover {
    border-color: var(--accent);
    background: rgba(201, 169, 110, 0.04);
    transform: translateX(-4px);
}

[dir="rtl"] .about-feature:hover {
    transform: translateX(4px);
}

.feature-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--white);
}

/* ---------- Services Section ---------- */
.services-section {
    background: var(--off-white);
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gray-200), transparent);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.services-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition-slow);
    border: 1px solid var(--gray-200);
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-dark));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s var(--ease-out);
}

[dir="rtl"] .service-card::before {
    transform-origin: left;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-2xl);
    border-color: transparent;
}

.service-card-inner {
    padding: 40px 32px;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.12), rgba(201, 169, 110, 0.04));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    transition: var(--transition);
    position: relative;
}

.service-icon::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: calc(var(--radius-md) + 4px);
    border: 1px solid rgba(201, 169, 110, 0.08);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    box-shadow: var(--shadow-gold);
}

.service-card:hover .service-icon::after {
    border-color: transparent;
}

.service-icon svg {
    stroke: var(--accent);
    transition: var(--transition);
}

.service-card:hover .service-icon svg {
    stroke: var(--white);
}

.service-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 14px;
}

.service-desc {
    font-size: 0.98rem;
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 24px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.service-link:hover {
    gap: 14px;
    color: var(--accent-dark);
}

[dir="rtl"] .service-link svg { transform: scaleX(-1); }

/* ---------- Why Choose Us ---------- */
.why-us-section {
    background: var(--primary);
    position: relative;
    overflow: hidden;
}

.why-us-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 800px 600px at 10% 90%, rgba(201, 169, 110, 0.10) 0%, transparent 60%),
        radial-gradient(ellipse 600px 600px at 90% 10%, rgba(201, 169, 110, 0.06) 0%, transparent 60%);
}

.why-us-section::before {
    content: '';
    position: absolute;
    top: -300px;
    right: -300px;
    width: 700px;
    height: 700px;
    border: 1px solid rgba(201, 169, 110, 0.04);
    border-radius: 50%;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.why-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-xl);
    padding: 36px 24px;
    text-align: center;
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.why-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(201, 169, 110, 0.06) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s;
}

.why-card:hover::before {
    opacity: 1;
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(201, 169, 110, 0.2);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.why-card-number {
    position: absolute;
    top: 16px;
    font-family: var(--font-en);
    font-size: 0.75rem;
    font-weight: 800;
    color: rgba(201, 169, 110, 0.25);
    letter-spacing: 2px;
}

[dir="rtl"] .why-card-number { right: 20px; }
[dir="ltr"] .why-card-number { left: 20px; }

.why-card-icon {
    margin-bottom: 24px;
    position: relative;
}

.why-card-icon svg {
    stroke: var(--accent);
    filter: drop-shadow(0 0 12px rgba(201, 169, 110, 0.2));
}

.why-card h3 {
    color: var(--white);
    font-size: 1.08rem;
    font-weight: 700;
    margin-bottom: 12px;
    position: relative;
}

.why-card p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.95rem;
    line-height: 1.9;
    position: relative;
}

/* ---------- Sectors ---------- */
.sectors-section {
    background: var(--white);
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 28px;
}

.sector-card {
    text-align: center;
    padding: 48px 24px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
}

.sector-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-dark));
    transform: scaleX(0);
    transition: transform 0.4s var(--ease-out);
}

.sector-card:hover::after {
    transform: scaleX(1);
}

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

.sector-icon {
    width: 80px;
    height: 80px;
    background: var(--off-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
    position: relative;
}

.sector-icon::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1px dashed var(--gray-200);
    transition: var(--transition);
}

.sector-card:hover .sector-icon {
    background: var(--primary);
    box-shadow: var(--shadow-lg);
}

.sector-card:hover .sector-icon::after {
    border-color: var(--accent);
    border-style: solid;
}

.sector-icon svg {
    stroke: var(--primary);
    transition: var(--transition);
}

.sector-card:hover .sector-icon svg {
    stroke: var(--accent);
}

.sector-card h3 {
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--text-dark);
}

/* ---------- Methodology ---------- */
.methodology-section {
    background: var(--off-white);
    position: relative;
}

.methodology-timeline {
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.timeline-line {
    position: absolute;
    top: 42px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--gray-200), var(--accent), var(--gray-200));
    z-index: 0;
}

.timeline-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 84px;
    height: 84px;
    background: var(--white);
    border: 3px solid var(--gray-200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-en);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--text-muted);
    margin: 0 auto 24px;
    transition: var(--transition-slow);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.step-number::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 1px solid transparent;
    transition: var(--transition);
}

.timeline-step:hover .step-number {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-color: var(--accent);
    color: var(--white);
    transform: scale(1.1);
    box-shadow: var(--shadow-gold);
}

.timeline-step:hover .step-number::after {
    border-color: rgba(201, 169, 110, 0.2);
}

.step-content h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.step-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.85;
}

/* ---------- Consultation Form ---------- */
.form-section {
    background: var(--primary);
    overflow: hidden;
    position: relative;
}

.form-section::before {
    content: '';
    position: absolute;
    top: -400px;
    right: -200px;
    width: 800px;
    height: 800px;
    border: 1px solid rgba(201, 169, 110, 0.04);
    border-radius: 50%;
}

.form-section::after {
    content: '';
    position: absolute;
    bottom: -300px;
    left: -200px;
    width: 600px;
    height: 600px;
    border: 1px solid rgba(201, 169, 110, 0.03);
    border-radius: 50%;
}

.form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.form-info .section-title {
    color: var(--white);
}

.form-contact-info {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(201, 169, 110, 0.2);
}

.contact-icon {
    width: 52px;
    height: 52px;
    background: rgba(201, 169, 110, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg { stroke: var(--accent); }

.contact-label {
    display: block;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 4px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.contact-value {
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: 48px;
    box-shadow: var(--shadow-2xl);
    position: relative;
}

.form-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: calc(var(--radius-2xl) + 1px);
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.3), transparent, rgba(201, 169, 110, 0.1));
    z-index: -1;
}

.consultation-form .form-group {
    margin-bottom: 22px;
}

.consultation-form label {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.consultation-form input,
.consultation-form select,
.consultation-form textarea {
    width: 100%;
    padding: 16px 20px;
    font-family: var(--font-ar);
    font-size: 0.95rem;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    background: var(--gray-50);
    color: var(--text-dark);
    transition: var(--transition);
    outline: none;
}

.consultation-form input:focus,
.consultation-form select:focus,
.consultation-form textarea:focus {
    border-color: var(--accent);
    background: var(--white);
    box-shadow: 0 0 0 5px rgba(201, 169, 110, 0.08);
}

.consultation-form input::placeholder,
.consultation-form textarea::placeholder {
    color: var(--gray-400);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

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

/* ---------- Map Section ---------- */
.map-section {
    background: var(--off-white);
}

.map-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-200);
}

.map-overlay-btn {
    position: absolute;
    bottom: 24px;
    z-index: 2;
    box-shadow: var(--shadow-lg);
}

[dir="rtl"] .map-overlay-btn { left: 24px; right: auto; }
[dir="ltr"] .map-overlay-btn { right: 24px; left: auto; }

/* ---------- Page Header ---------- */
.page-header {
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, var(--primary) 0%, var(--primary-light) 100%);
}

.page-header-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 600px 400px at 30% 70%, rgba(201, 169, 110, 0.10) 0%, transparent 60%),
        radial-gradient(ellipse 400px 400px at 70% 30%, rgba(201, 169, 110, 0.06) 0%, transparent 60%);
}

.page-header-bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--white) 0%, transparent 100%);
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb a { color: var(--accent-light); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb-sep { color: rgba(255, 255, 255, 0.2); }

.page-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.page-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 500px;
    margin: 0 auto;
    font-weight: 300;
}

/* ---------- About Page ---------- */
.about-image-large .about-image-placeholder {
    aspect-ratio: 3/4;
}

.founder-section {
    background: var(--off-white);
}

.founder-card {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 56px;
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: 56px;
    box-shadow: var(--shadow-lg);
    align-items: center;
    border: 1px solid var(--gray-100);
    position: relative;
    overflow: hidden;
}

.founder-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--primary), var(--accent));
}

.founder-placeholder {
    width: 240px;
    height: 240px;
    background: linear-gradient(160deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.founder-placeholder::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px dashed rgba(201, 169, 110, 0.3);
}

.founder-placeholder svg {
    stroke: rgba(201, 169, 110, 0.25);
}

.founder-name {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.founder-title {
    color: var(--accent);
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 24px;
    letter-spacing: 1px;
}

.founder-bio {
    color: var(--text-body);
    line-height: 2;
    margin-bottom: 28px;
    font-size: 1.05rem;
}

.founder-stats {
    display: flex;
    gap: 36px;
}

.f-stat {
    text-align: center;
    padding: 16px 20px;
    background: var(--off-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-100);
}

.f-stat-num {
    display: block;
    font-family: var(--font-en);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
}

.f-stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 4px;
    font-weight: 600;
}

/* ---------- VMV Section ---------- */
.vmv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.vmv-card {
    text-align: center;
    padding: 56px 36px;
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
}

.vmv-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-dark));
    border-radius: 2px;
    transition: width 0.4s var(--ease-out);
}

.vmv-card:hover::after {
    width: 100%;
}

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

.vmv-featured {
    background: linear-gradient(160deg, var(--primary) 0%, var(--primary-light) 100%);
    border-color: transparent;
    box-shadow: var(--shadow-xl);
}

.vmv-featured .vmv-title { color: var(--white); }
.vmv-featured .vmv-text { color: rgba(255, 255, 255, 0.65); }
.vmv-featured .vmv-icon svg { stroke: var(--accent); }
.vmv-featured::after { background: linear-gradient(90deg, var(--accent), var(--accent-light)); }

.vmv-icon {
    margin-bottom: 28px;
}

.vmv-icon svg { stroke: var(--primary); }

.vmv-title {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.vmv-text {
    color: var(--text-body);
    line-height: 2;
    font-size: 1rem;
}

/* ---------- About Timeline ---------- */
.timeline-section {
    background: var(--off-white);
}

.about-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.about-timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 50%;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent), var(--gray-200));
    transform: translateX(50%);
}

.timeline-item {
    position: relative;
    padding: 0 0 56px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
}

.timeline-item:nth-child(even) .timeline-card { grid-column: 2; }
.timeline-item:nth-child(odd) .timeline-card { grid-column: 1; }

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 12px;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border: 4px solid var(--off-white);
    border-radius: 50%;
    z-index: 1;
    box-shadow: 0 0 0 4px rgba(201, 169, 110, 0.15);
}

.timeline-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-100);
    transition: var(--transition);
}

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

.timeline-year {
    display: inline-block;
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.12), rgba(201, 169, 110, 0.04));
    color: var(--accent-dark);
    padding: 5px 18px;
    border-radius: 60px;
    font-size: 0.82rem;
    font-weight: 800;
    margin-bottom: 14px;
    letter-spacing: 1px;
}

.timeline-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.timeline-card p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* ---------- Values Section ---------- */
.values-section {
    background: var(--primary);
    position: relative;
    overflow: hidden;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.value-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-xl);
    padding: 40px 28px;
    text-align: center;
    transition: var(--transition-slow);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.value-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(201, 169, 110, 0.2);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.value-icon { margin-bottom: 24px; }
.value-icon svg { stroke: var(--accent); filter: drop-shadow(0 0 10px rgba(201, 169, 110, 0.15)); }
.value-card h3 { color: var(--white); font-size: 1.12rem; font-weight: 700; margin-bottom: 12px; }
.value-card p { color: rgba(255, 255, 255, 0.5); font-size: 0.9rem; line-height: 1.8; }

/* ---------- CTA Section ---------- */
.cta-section { padding: 80px 0; }

.cta-card {
    background: linear-gradient(160deg, var(--primary) 0%, var(--primary-light) 50%, var(--primary-glow) 100%);
    border-radius: var(--radius-2xl);
    padding: 72px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
}

.cta-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 400px 300px at 80% 20%, rgba(201, 169, 110, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 300px 300px at 20% 80%, rgba(201, 169, 110, 0.08) 0%, transparent 60%);
}

.cta-card::after {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: calc(var(--radius-2xl) - 1px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.cta-card h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 16px;
    position: relative;
}

.cta-card p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.1rem;
    margin-bottom: 36px;
    position: relative;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

/* ---------- Service Detail Page ---------- */
.service-detail-card {
    margin-bottom: 40px;
    padding: 56px;
    background: var(--white);
    border-radius: var(--radius-2xl);
    border: 1px solid var(--gray-100);
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
}

.service-detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.06), transparent 70%);
}

.service-detail-card:hover {
    box-shadow: var(--shadow-xl);
    border-color: rgba(201, 169, 110, 0.15);
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 48px;
    align-items: start;
}

.service-detail-grid.reverse { direction: rtl; }
.service-detail-grid.reverse .service-detail-content { direction: rtl; }

.service-detail-icon-col { text-align: center; }

.service-detail-icon {
    width: 130px;
    height: 130px;
    background: linear-gradient(160deg, rgba(201, 169, 110, 0.12), rgba(201, 169, 110, 0.04));
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    position: relative;
}

.service-detail-icon::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: calc(var(--radius-xl) + 4px);
    border: 1px solid rgba(201, 169, 110, 0.08);
}

.service-detail-icon svg { stroke: var(--accent); }

.service-number {
    font-family: var(--font-en);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--gray-200);
    letter-spacing: 2px;
}

.service-detail-title {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 18px;
}

.service-detail-desc {
    font-size: 1.1rem;
    color: var(--text-body);
    line-height: 2.1;
    margin-bottom: 28px;
}

.service-features-list { display: grid; gap: 14px; }

.service-features-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 600;
    padding: 10px 14px;
    background: var(--gray-50);
    border-radius: var(--radius-sm);
    border: 1px solid var(--gray-100);
    transition: var(--transition);
}

.service-features-list li:hover {
    border-color: var(--accent);
    background: rgba(201, 169, 110, 0.04);
}

.service-features-list svg {
    stroke: var(--accent);
    flex-shrink: 0;
}

/* ---------- Pricing Section ---------- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: start;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    border: 1px solid var(--gray-200);
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
    border-color: transparent;
}

.pricing-featured {
    border-color: var(--accent);
    transform: scale(1.04);
    box-shadow: var(--shadow-gold-lg);
}

.pricing-featured:hover {
    transform: scale(1.04) translateY(-10px);
}

.pricing-popular-badge {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, var(--accent), var(--accent-dark));
    color: var(--white);
    text-align: center;
    padding: 10px;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.pricing-card-inner { padding: 44px 36px; }
.pricing-featured .pricing-card-inner { padding-top: 60px; }

.pricing-header {
    text-align: center;
    margin-bottom: 36px;
}

.pricing-badge {
    display: inline-block;
    background: var(--off-white);
    color: var(--primary);
    padding: 6px 22px;
    border-radius: 60px;
    font-size: 0.82rem;
    font-weight: 800;
    margin-bottom: 14px;
    letter-spacing: 1px;
}

.pricing-badge-premium {
    background: rgba(201, 169, 110, 0.1);
    color: var(--accent-dark);
}

.pricing-name {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 8px;
}

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

.pricing-price {
    text-align: center;
    padding: 28px 0;
    margin-bottom: 28px;
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
}

.price-label {
    font-size: 0.82rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.price-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
    margin-top: 8px;
}

.price-currency { font-size: 1.1rem; font-weight: 700; color: var(--text-dark); }

.price-value {
    font-family: var(--font-en);
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.price-period { font-size: 0.88rem; color: var(--text-muted); }

.pricing-features { margin-bottom: 36px; }

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: 0.92rem;
}

.pricing-features li:last-child { border-bottom: none; }
.pricing-features .included svg { stroke: var(--success); }
.pricing-features .included span { color: var(--text-dark); font-weight: 500; }
.pricing-features .not-included svg { stroke: var(--gray-300); }
.pricing-features .not-included span { color: var(--gray-400); text-decoration: line-through; }

/* ---------- Comparison Table ---------- */
.comparison-section { background: var(--off-white); }

.comparison-table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
}

.comparison-table {
    width: 100%;
    background: var(--white);
    border-collapse: collapse;
    font-size: 0.92rem;
}

.comparison-table th,
.comparison-table td {
    padding: 18px 28px;
    text-align: center;
    border-bottom: 1px solid var(--gray-100);
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    text-align: right;
    font-weight: 700;
    color: var(--text-dark);
}

.comparison-table thead th {
    background: var(--primary);
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
}

.featured-col { background: rgba(201, 169, 110, 0.04); }
.comparison-table thead .featured-col { background: var(--accent); }
.comparison-table tbody tr:hover { background: var(--gray-50); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
    margin-bottom: 14px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover { border-color: rgba(201, 169, 110, 0.3); }
.faq-item.active { border-color: var(--accent); box-shadow: var(--shadow-md); }

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 28px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-ar);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: right;
    transition: var(--transition);
}

.faq-question svg {
    transition: transform 0.4s var(--ease-out);
    flex-shrink: 0;
    stroke: var(--accent);
}

.faq-item.active .faq-question svg { transform: rotate(180deg); }
.faq-item.active .faq-question { color: var(--accent-dark); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease-out);
}

.faq-item.active .faq-answer { max-height: 200px; }

.faq-answer p {
    padding: 0 28px 24px;
    color: var(--text-body);
    line-height: 2;
    font-size: 1rem;
}

/* ---------- Contact Page ---------- */
.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.contact-info-card {
    text-align: center;
    padding: 44px 28px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
}

.contact-info-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-dark));
    transform: scaleX(0);
    transition: transform 0.4s var(--ease-out);
}

.contact-info-card:hover::after { transform: scaleX(1); }

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.contact-info-icon {
    width: 80px;
    height: 80px;
    background: var(--off-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: var(--transition);
    position: relative;
}

.contact-info-icon::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1px dashed var(--gray-200);
    transition: var(--transition);
}

.contact-info-card:hover .contact-info-icon {
    background: var(--primary);
    box-shadow: var(--shadow-lg);
}

.contact-info-card:hover .contact-info-icon::after {
    border-color: var(--accent);
    border-style: solid;
}

.contact-info-icon svg { stroke: var(--primary); transition: var(--transition); }
.whatsapp-icon svg { fill: var(--primary); stroke: none; }
.contact-info-card:hover .contact-info-icon svg { stroke: var(--accent); }
.contact-info-card:hover .whatsapp-icon svg { fill: var(--accent); stroke: none; }

.contact-info-card h3 { font-size: 1.15rem; font-weight: 800; color: var(--text-dark); margin-bottom: 8px; }
.contact-info-card p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 14px; }
.contact-info-value { color: var(--accent); font-weight: 700; font-size: 0.95rem; }

.contact-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
}

.contact-map-wrapper { margin-bottom: 36px; }

.map-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 18px;
}

.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-md);
}

.map-btn { margin-top: 18px; }

.working-hours {
    background: var(--off-white);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--gray-100);
}

.working-hours h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 18px;
}

.working-hours ul li {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid var(--gray-200);
    font-size: 0.92rem;
}

.working-hours ul li:last-child { border-bottom: none; }

/* ---------- Footer ---------- */
.footer {
    background: var(--primary);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0.3;
}

.footer-top { padding: 88px 0 48px; }

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.footer-logo .logo-icon { color: var(--accent); }
.footer-logo .logo-title { color: var(--white); }
.footer-logo .logo-subtitle { color: rgba(255, 255, 255, 0.4); }

.footer-desc {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.98rem;
    line-height: 2;
    margin-bottom: 28px;
}

.social-links { display: flex; gap: 12px; }

.social-link {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: rgba(255, 255, 255, 0.6);
}

.social-link svg { fill: rgba(255, 255, 255, 0.6); stroke: rgba(255, 255, 255, 0.6); }

.social-link:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.social-link:hover svg { fill: var(--white); stroke: var(--white); }

.footer-title {
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 28px;
    position: relative;
    padding-bottom: 14px;
    letter-spacing: 0.5px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
}

.footer-links li { margin-bottom: 14px; }

.footer-links a {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.98rem;
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent);
    transform: translateX(-4px);
}

[dir="rtl"] .footer-links a:hover { transform: translateX(4px); }

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.88rem;
}

.footer-contact svg { flex-shrink: 0; margin-top: 3px; stroke: var(--accent); }
.footer-contact a { color: rgba(255, 255, 255, 0.5); }
.footer-contact a:hover { color: var(--accent); }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 28px 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.82rem;
    letter-spacing: 0.5px;
}

/* ---------- WhatsApp Float ---------- */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    left: 28px;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
    z-index: 999;
    transition: var(--transition);
    animation: whatsappPulse 3s ease-in-out infinite;
}

[dir="rtl"] .whatsapp-float { left: 28px; right: auto; }

.whatsapp-float svg { fill: var(--white); }

.whatsapp-float:hover {
    transform: scale(1.12) translateY(-4px);
    box-shadow: 0 10px 40px rgba(37, 211, 102, 0.5);
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35); }
    50% { box-shadow: 0 6px 40px rgba(37, 211, 102, 0.55); }
}

/* ---------- Back to Top ---------- */
.back-to-top {
    position: fixed;
    bottom: 28px;
    left: 28px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
}

[dir="rtl"] .back-to-top { left: 28px; right: auto; }

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}

.back-to-top svg { stroke: var(--white); }

/* ---------- Animations ---------- */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

.delay-1 { transition-delay: 0.12s !important; }
.delay-2 { transition-delay: 0.24s !important; }
.delay-3 { transition-delay: 0.36s !important; }
.delay-4 { transition-delay: 0.48s !important; }
.delay-5 { transition-delay: 0.60s !important; }

.reveal-up,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal-up { transform: translateY(50px); }
.reveal-left { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }

[dir="rtl"] .reveal-left { transform: translateX(50px); }
[dir="rtl"] .reveal-right { transform: translateX(-50px); }

.reveal-up.revealed,
.reveal-left.revealed,
.reveal-right.revealed {
    opacity: 1;
    transform: translate(0, 0);
}

/* ---------- Form Success ---------- */
.form-success { text-align: center; padding: 48px; }

.form-success-icon {
    width: 88px;
    height: 88px;
    background: rgba(46, 204, 113, 0.08);
    border: 2px solid rgba(46, 204, 113, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.form-success-icon svg { stroke: var(--success); }

.form-success h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-success p { color: var(--text-muted); font-size: 1rem; }

/* ---------- Mobile Overlay ---------- */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(12, 27, 51, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .services-grid, .services-grid-3 { grid-template-columns: repeat(2, 1fr); }
    .why-us-grid { grid-template-columns: repeat(3, 1fr); }
    .sectors-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .founder-card { grid-template-columns: 1fr; text-align: center; }
    .vmv-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-cards-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-featured { transform: scale(1); }
    .pricing-featured:hover { transform: translateY(-10px); }
}

@media (max-width: 768px) {
    .section { padding: 80px 0; }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 340px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 110px 36px 36px;
        gap: 0;
        box-shadow: var(--shadow-2xl);
        transition: var(--transition-slow);
        z-index: 1000;
    }

    .nav-links.active { right: 0; }

    .nav-links a {
        color: var(--text-dark) !important;
        display: block;
        padding: 16px 0;
        font-size: 1.1rem;
        border-bottom: 1px solid var(--gray-100);
        width: 100%;
    }

    .nav-links a::after { display: none; }

    .menu-toggle { display: flex; }
    .nav-actions .btn { display: none; }
    .two-col { grid-template-columns: 1fr; }
    .services-grid, .services-grid-3 { grid-template-columns: 1fr; }
    .why-us-grid { grid-template-columns: 1fr 1fr; }
    .sectors-grid { grid-template-columns: repeat(2, 1fr); }

    .methodology-timeline { flex-direction: column; gap: 36px; }
    .timeline-line { display: none; }

    .form-wrapper { grid-template-columns: 1fr; gap: 48px; }
    .form-row { grid-template-columns: 1fr; }

    .hero-stats {
        flex-direction: column;
        border-radius: var(--radius-xl);
        padding: 24px 16px;
        gap: 8px;
    }

    .stat-item { padding: 16px 0; }
    .stat-divider { width: 60px; height: 1px; }
    .stat-number { font-size: 2.2rem; }

    .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .contact-cards-grid { grid-template-columns: 1fr 1fr; }
    .contact-main-grid { grid-template-columns: 1fr; }

    .about-timeline { padding-right: 36px; }
    .about-timeline-line { right: 0; transform: none; }
    .timeline-item { grid-template-columns: 1fr; gap: 0; }
    .timeline-item:nth-child(even) .timeline-card,
    .timeline-item:nth-child(odd) .timeline-card { grid-column: 1; text-align: right; }
    .timeline-dot { left: 0; right: auto; }

    [dir="rtl"] .about-timeline { padding-right: 0; padding-left: 36px; }
    [dir="rtl"] .about-timeline-line { right: auto; left: 0; }
    [dir="rtl"] .timeline-dot { left: auto; right: 0; }

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

    .service-detail-grid { grid-template-columns: 1fr; }
    .service-detail-grid.reverse { direction: rtl; }
    .service-detail-icon-col { display: flex; align-items: center; gap: 16px; flex-direction: row-reverse; }
    .founder-card { padding: 36px 28px; }
}

@media (max-width: 480px) {
    .container { padding: 0 20px; }
    .section { padding: 64px 0; }
    .hero-content { padding: 120px 0 70px; }
    .hero-buttons .btn { width: 100%; }

    .why-us-grid,
    .sectors-grid,
    .contact-cards-grid { grid-template-columns: 1fr; }

    .about-features { grid-template-columns: 1fr; }
    .form-card { padding: 28px 20px; }
    .cta-card { padding: 48px 24px; }
    .page-header { padding: 140px 0 80px; }
    .founder-stats { flex-wrap: wrap; justify-content: center; }
    .service-detail-card { padding: 32px 20px; }
    .values-grid { grid-template-columns: 1fr; }

    .comparison-table th,
    .comparison-table td { padding: 12px 10px; font-size: 0.82rem; }
}

/* ============================================
   LTR (English) Layout Overrides
   ============================================ */
html.lang-en {
    font-family: 'Inter', 'Playfair Display', sans-serif;
}

html.lang-en body {
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.01em;
}

html.lang-en .hero-title,
html.lang-en .section-title,
html.lang-en .page-title,
html.lang-en .founder-name,
html.lang-en .vmv-title {
    font-family: 'Playfair Display', serif;
}

html.lang-en .logo-title {
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.02em;
}

html.lang-en .hero-subtitle {
    border-left: none;
    border-right: 2px solid var(--accent);
    padding-left: 0;
    padding-right: 4px;
}

html.lang-en .nav-links {
    direction: ltr;
}

html.lang-en .footer-contact li svg {
    margin-right: 10px;
    margin-left: 0;
}

html.lang-en .about-feature .feature-icon {
    margin-right: 0;
    margin-left: 12px;
}

html.lang-en .service-link svg {
    transform: rotate(180deg);
}

html.lang-en .btn svg {
    margin-left: 0;
    margin-right: 8px;
}

html.lang-en .breadcrumb-sep {
    margin: 0 8px;
}

html.lang-en .contact-item .contact-icon {
    margin-right: 0;
    margin-left: 12px;
}

html.lang-en .service-features-list svg {
    margin-right: 0;
    margin-left: 10px;
}

html.lang-en .timeline-step .step-number {
    margin-right: 0;
    margin-left: 20px;
}

html.lang-en .scroll-indicator span {
    letter-spacing: 2px;
}