/* =============================================================
   LCM Centre - Premium Professional Stylesheet
   Modern, elegant design with refined details
   ============================================================= */

/* CSS Variables */
:root {
    /* Brand Colors - Deep Navy with Gold accents */
    --color-primary: #0a3d62;
    --color-primary-dark: #051e30;
    --color-primary-light: #1e5a85;
    --color-accent: #d4a017;
    --color-accent-light: #f4c430;
    --color-accent-dark: #a67c00;

    /* Neutrals */
    --color-dark: #0f1419;
    --color-text: #2c3e50;
    --color-text-light: #5a6c7d;
    --color-border: #e1e8ed;
    --color-bg: #ffffff;
    --color-bg-alt: #f8fafc;
    --color-bg-dark: #0a3d62;

    /* Status */
    --color-success: #10b981;
    --color-warning: #f59e0b;
    --color-danger: #ef4444;
    --color-info: #3b82f6;

    /* Typography */
    --font-display: 'Playfair Display', 'Tajawal', serif;
    --font-body: 'Plus Jakarta Sans', 'Tajawal', sans-serif;
    --font-arabic: 'Tajawal', 'Cairo', sans-serif;

    /* Spacing */
    --container-max: 1280px;
    --section-padding: 100px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(10, 61, 98, 0.08);
    --shadow-md: 0 4px 20px rgba(10, 61, 98, 0.12);
    --shadow-lg: 0 12px 40px rgba(10, 61, 98, 0.15);
    --shadow-xl: 0 20px 60px rgba(10, 61, 98, 0.18);

    /* Transitions */
    --trans-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --trans-base: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --trans-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
}

/* Arabic font override */
.lang-ar {
    --font-display: 'Cairo', 'Tajawal', serif;
    --font-body: 'Tajawal', sans-serif;
}

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

*::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background: var(--color-bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

a:hover {
    color: var(--color-accent);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-dark);
    margin-bottom: 0.5em;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

p {
    margin-bottom: 1em;
}

/* ============ Container ============ */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

/* ============ Page Loader ============ */
.page-loader {
    position: fixed;
    inset: 0;
    background: var(--color-primary);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    position: relative;
    text-align: center;
}

.loader-circle {
    width: 80px;
    height: 80px;
    border: 3px solid rgba(212, 160, 23, 0.2);
    border-top-color: var(--color-accent);
    border-radius: 50%;
    margin: 0 auto 20px;
    animation: spin 1s linear infinite;
}

.loader-logo {
    color: white;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 4px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============ Top Bar ============ */
.top-bar {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1001;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.top-bar-info {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.info-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

.info-item i {
    color: var(--color-accent);
    font-size: 12px;
}

.info-item:hover { color: var(--color-accent); }

.top-bar-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

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

.social-links a {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 12px;
    transition: var(--trans-fast);
}

.social-links a:hover {
    background: var(--color-accent);
    color: var(--color-dark);
    transform: translateY(-2px);
}

.lang-switcher {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    padding-left: 20px;
}

.lang-switcher .lang-link {
    color: white;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 4px;
    background: rgba(212, 160, 23, 0.15);
    border: 1px solid rgba(212, 160, 23, 0.3);
}

.lang-switcher .lang-link:hover {
    background: var(--color-accent);
    color: var(--color-dark);
}

@media (max-width: 768px) {
    .d-none-mobile { display: none !important; }
    .top-bar { font-size: 12px; }
    .top-bar-info { gap: 14px; }
    .lang-switcher { border-left: none; padding-left: 0; }
}

/* ============ Main Header ============ */
.main-header {
    position: fixed;
    top: 41px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
    z-index: 1000;
    transition: all var(--trans-base);
}

.main-header.scrolled {
    box-shadow: var(--shadow-md);
    padding: 0;
}

.header-spacer {
    height: 121px; /* top-bar 41px + header 80px */
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

/* Logo */
.logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

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

.logo-main {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 900;
    color: var(--color-primary);
    letter-spacing: -1px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-sub {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    color: var(--color-accent);
    letter-spacing: 4px;
    margin-top: 2px;
}

/* Main Nav */
.main-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-menu {
    display: flex;
    gap: 4px;
}

.nav-menu a {
    display: inline-block;
    padding: 10px 16px;
    color: var(--color-text);
    font-weight: 600;
    font-size: 15px;
    position: relative;
    transition: color var(--trans-fast);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width var(--trans-base);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--color-primary);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 60%;
}

.nav-close {
    display: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 8px;
}

.nav-toggle span {
    width: 28px;
    height: 2.5px;
    background: var(--color-primary);
    border-radius: 2px;
    transition: var(--trans-base);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all var(--trans-base);
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-light) 100%);
    color: var(--color-dark);
    box-shadow: 0 4px 15px rgba(212, 160, 23, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--color-accent-light) 0%, var(--color-accent) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 160, 23, 0.4);
    color: var(--color-dark);
}

.btn-secondary {
    background: var(--color-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(10, 61, 98, 0.25);
}

.btn-secondary:hover {
    background: var(--color-primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(10, 61, 98, 0.35);
}

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

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

.btn-light {
    background: white;
    color: var(--color-primary);
    box-shadow: var(--shadow-md);
}

.btn-light:hover {
    background: var(--color-accent);
    color: var(--color-dark);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 38px;
    font-size: 15px;
}

/* ============ Hero Section ============ */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 50%, var(--color-primary-light) 100%);
    color: white;
    overflow: hidden;
    padding: 80px 0;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(212, 160, 23, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 160, 23, 0.1) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M0 0h50v50H0zM50 50h50v50H50z' fill='%23ffffff' fill-opacity='0.02'/%3E%3C/svg%3E");
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 100px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100' preserveAspectRatio='none'%3E%3Cpath fill='%23ffffff' d='M0 100V40q360-40 720-20t720 60v20z'/%3E%3C/svg%3E") no-repeat center bottom;
    background-size: cover;
}

.hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: rgba(212, 160, 23, 0.15);
    border: 1px solid rgba(212, 160, 23, 0.4);
    border-radius: 50px;
    color: var(--color-accent-light);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease;
}

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

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.05;
    color: white;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.1s both;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 36px;
    max-width: 600px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-features {
    margin-top: 60px;
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-feature i {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 160, 23, 0.15);
    color: var(--color-accent);
    border-radius: 12px;
    font-size: 18px;
}

.hero-feature-text {
    font-weight: 600;
    color: white;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Hero Decorative Elements */
.hero-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 160, 23, 0.15) 0%, transparent 70%);
    animation: float 8s ease-in-out infinite;
}

.hero-shape-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
}

.hero-shape-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: 5%;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -30px) scale(1.05); }
}

/* ============ Section Common ============ */
.section {
    padding: var(--section-padding) 0;
    position: relative;
}

.section-sm { padding: 60px 0; }

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-eyebrow {
    display: inline-block;
    color: var(--color-accent);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 12px;
    position: relative;
    padding: 0 30px;
}

.section-eyebrow::before,
.section-eyebrow::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 2px;
    background: var(--color-accent);
}

.section-eyebrow::before { left: 0; }
.section-eyebrow::after { right: 0; }

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--color-dark);
    margin-bottom: 16px;
}

.section-description {
    font-size: 1.05rem;
    color: var(--color-text-light);
    line-height: 1.8;
}

/* ============ Stats Section ============ */
.stats-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M0 0h50v50H0z' fill='%23ffffff' fill-opacity='0.02'/%3E%3C/svg%3E");
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
    padding: 24px;
    border-radius: var(--radius-lg);
    transition: var(--trans-base);
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-4px);
}

.stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-light) 100%);
    color: var(--color-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.stat-value {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* ============ About Section ============ */
.about-section {
    padding: var(--section-padding) 0;
    background: var(--color-bg-alt);
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

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

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

.about-image-placeholder {
    color: white;
    font-size: 6rem;
    opacity: 0.2;
}

.about-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 61, 98, 0.3) 0%, transparent 50%);
}

.about-experience {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-light) 100%);
    padding: 30px 36px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
    color: var(--color-dark);
}

.lang-ar .about-experience { right: auto; left: -30px; }

.about-experience-num {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
}

.about-experience-text {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 4px;
}

.about-content h2 {
    margin-bottom: 24px;
}

.about-content p {
    color: var(--color-text-light);
    font-size: 1.05rem;
    line-height: 1.85;
    margin-bottom: 20px;
}

.about-list {
    margin: 30px 0;
}

.about-list li {
    display: flex;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid var(--color-border);
}

.about-list li:last-child {
    border-bottom: none;
}

.about-list-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.about-list-text {
    font-weight: 600;
    color: var(--color-dark);
    line-height: 1.5;
}

/* ============ Services Section ============ */
.services-section {
    padding: var(--section-padding) 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    transition: all var(--trans-base);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--color-accent) 0%, var(--color-primary) 100%);
    transition: height var(--trans-base);
}

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

.service-card:hover::before {
    height: 100%;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: white;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 24px;
    position: relative;
    transition: var(--trans-base);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-light) 100%);
    color: var(--color-dark);
    transform: rotate(-5deg) scale(1.05);
}

.service-card h3 {
    font-size: 1.35rem;
    margin-bottom: 14px;
    color: var(--color-dark);
}

.service-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.75;
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-primary);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--trans-fast);
}

.service-link i {
    transition: transform var(--trans-fast);
}

.service-card:hover .service-link {
    color: var(--color-accent);
}

.service-card:hover .service-link i {
    transform: translateX(4px);
}

.lang-ar .service-card:hover .service-link i {
    transform: translateX(-4px);
}

/* ============ Why Choose Us ============ */
.why-section {
    padding: var(--section-padding) 0;
    background: var(--color-bg-alt);
    position: relative;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-features {
    display: grid;
    gap: 24px;
}

.why-feature {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--trans-base);
}

.why-feature:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.lang-ar .why-feature:hover {
    transform: translateX(-8px);
}

.why-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-light) 100%);
    color: var(--color-dark);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.why-feature h4 {
    font-size: 1.15rem;
    margin-bottom: 6px;
    color: var(--color-dark);
}

.why-feature p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin: 0;
}

/* ============ Clients Section ============ */
.clients-section {
    padding: var(--section-padding) 0;
    background: white;
}

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

.client-logo {
    background: white;
    border: 1px solid var(--color-border);
    padding: 30px 20px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    transition: var(--trans-base);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.client-logo:hover {
    transform: translateY(-4px);
    border-color: var(--color-accent);
    box-shadow: var(--shadow-md);
}

.client-logo img {
    max-height: 60px;
    width: auto;
    filter: grayscale(80%);
    opacity: 0.7;
    transition: var(--trans-base);
}

.client-logo:hover img {
    filter: grayscale(0);
    opacity: 1;
}

.client-name {
    font-weight: 700;
    color: var(--color-text);
    font-size: 0.95rem;
    line-height: 1.4;
}

/* ============ Testimonials ============ */
.testimonials-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, var(--color-bg-alt) 0%, white 100%);
    position: relative;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
    margin: 20px 0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    right: 30px;
    font-family: serif;
    font-size: 8rem;
    color: var(--color-accent);
    opacity: 0.15;
    line-height: 1;
}

.lang-ar .testimonial-card::before {
    right: auto;
    left: 30px;
}

.testimonial-rating {
    color: var(--color-accent);
    margin-bottom: 16px;
    font-size: 14px;
}

.testimonial-text {
    color: var(--color-text);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid var(--color-border);
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.testimonial-info h5 {
    font-size: 1rem;
    margin-bottom: 2px;
    color: var(--color-dark);
}

.testimonial-info p {
    margin: 0;
    color: var(--color-text-light);
    font-size: 0.875rem;
}

/* ============ CTA Section ============ */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 30% 50%, rgba(212, 160, 23, 0.2) 0%, transparent 50%);
}

.cta-inner {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    color: white;
    margin-bottom: 16px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.125rem;
    margin-bottom: 32px;
}

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

/* ============ Page Header (Inner Pages) ============ */
.page-header {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
    color: white;
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 70% 30%, rgba(212, 160, 23, 0.15) 0%, transparent 50%);
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 60px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60' preserveAspectRatio='none'%3E%3Cpath fill='%23ffffff' d='M0 60V20q360-20 720-10t720 30v20z'/%3E%3C/svg%3E") no-repeat center bottom;
    background-size: cover;
}

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

.page-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: white;
    margin-bottom: 16px;
}

.page-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 20px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.page-breadcrumb a, .page-breadcrumb span {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    font-weight: 500;
}

.page-breadcrumb a:hover {
    color: var(--color-accent);
}

.page-breadcrumb i {
    color: var(--color-accent);
    font-size: 10px;
}

/* ============ Contact Section ============ */
.contact-section {
    padding: var(--section-padding) 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
}

.contact-info {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: white;
    padding: 50px 40px;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212, 160, 23, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.contact-info h3 {
    color: white;
    margin-bottom: 16px;
    position: relative;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
    position: relative;
}

.contact-info-list {
    position: relative;
}

.contact-info-list li {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    align-items: flex-start;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    background: rgba(212, 160, 23, 0.2);
    border: 1px solid rgba(212, 160, 23, 0.4);
    color: var(--color-accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.contact-info-text h5 {
    color: white;
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.contact-info-text p, .contact-info-text a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    margin: 0;
}

.contact-info-text a:hover { color: var(--color-accent); }

.contact-form-wrap {
    background: white;
    padding: 50px 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.contact-form-wrap h3 {
    margin-bottom: 8px;
}

.contact-form-wrap > p {
    color: var(--color-text-light);
    margin-bottom: 32px;
}

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

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-label .required {
    color: var(--color-danger);
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--color-text);
    background: white;
    transition: var(--trans-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(10, 61, 98, 0.1);
}

textarea.form-control {
    min-height: 140px;
    resize: vertical;
}

.form-message {
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    font-weight: 500;
    display: none;
}

.form-message.success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #6ee7b7;
    display: block;
}

.form-message.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
    display: block;
}

/* Map */
.map-section {
    padding: 0;
}

.map-wrap {
    height: 450px;
    width: 100%;
    background: var(--color-bg-alt);
    overflow: hidden;
    position: relative;
}

.map-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(20%);
}

/* ============ Footer ============ */
.main-footer {
    background: var(--color-primary-dark);
    color: rgba(255, 255, 255, 0.8);
}

.footer-top {
    padding: 80px 0 50px;
    position: relative;
}

.footer-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-accent) 0%, var(--color-primary-light) 50%, var(--color-accent) 100%);
}

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

.footer-logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
    margin-bottom: 24px;
}

.footer-logo .logo-main {
    background: linear-gradient(135deg, white 0%, var(--color-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-desc {
    line-height: 1.8;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.7);
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: var(--trans-base);
}

.footer-social a:hover {
    background: var(--color-accent);
    color: var(--color-dark);
    transform: translateY(-3px);
    border-color: var(--color-accent);
}

.footer-title {
    color: white;
    font-size: 1.15rem;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--color-accent);
    display: inline-block;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 12px;
    padding-left: 0;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    transition: var(--trans-fast);
}

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

.lang-ar .footer-links a:hover {
    transform: translateX(-4px);
}

.footer-links i {
    font-size: 10px;
    color: var(--color-accent);
}

.footer-contact li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.footer-contact i {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: rgba(212, 160, 23, 0.15);
    color: var(--color-accent);
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    margin-top: 2px;
}

.footer-contact span,
.footer-contact a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-contact a:hover {
    color: var(--color-accent);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.copyright {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    transition: var(--trans-fast);
}

.footer-bottom-links a:hover {
    color: var(--color-accent);
}

/* ============ Floating Buttons ============ */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--color-primary);
    color: white;
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    z-index: 996;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--trans-base);
    cursor: pointer;
}

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

.scroll-top:hover {
    background: var(--color-accent);
    color: var(--color-dark);
    transform: translateY(-4px);
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 56px;
    height: 56px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    z-index: 996;
    transition: var(--trans-base);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
    background: #20bd5a;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ============ Responsive ============ */
@media (max-width: 992px) {
    :root {
        --section-padding: 70px;
    }

    .nav-toggle { display: flex; }

    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 320px;
        max-width: 85vw;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 121px 30px 30px; /* accounts for top-bar + header */
        box-shadow: var(--shadow-xl);
        transform: translateX(100%);
        transition: transform var(--trans-base);
        gap: 0;
        overflow-y: auto;
        z-index: 999;
    }

    .lang-ar .main-nav {
        right: auto;
        left: 0;
        transform: translateX(-100%);
    }

    .main-nav.active {
        transform: translateX(0);
    }

    .nav-close {
        display: flex;
        position: absolute;
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        background: var(--color-bg-alt);
        border-radius: 50%;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        color: var(--color-text);
    }

    .lang-ar .nav-close {
        right: auto;
        left: 20px;
    }

    .nav-menu {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--color-border);
    }

    .nav-menu a {
        display: block;
        padding: 14px 0;
        width: 100%;
    }

    .nav-cta {
        margin-top: 24px;
        width: 100%;
    }

    .nav-cta .btn {
        width: 100%;
    }

    .about-grid,
    .why-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

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

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }

    .top-bar {
        padding: 8px 0;
    }

    .main-header {
        top: 37px; /* mobile top-bar height */
    }

    .header-spacer {
        height: 117px; /* 37px + 80px */
    }

    .hero {
        min-height: 80vh;
        padding: 60px 0;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-features {
        gap: 16px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .footer-bottom-inner {
        text-align: center;
        flex-direction: column;
    }

    .footer-bottom-links {
        justify-content: center;
        flex-wrap: wrap;
    }

    .scroll-top, .whatsapp-float {
        width: 44px;
        height: 44px;
        bottom: 20px;
    }

    .scroll-top { right: 20px; }
    .whatsapp-float { left: 20px; font-size: 22px; }

    .contact-info, .contact-form-wrap {
        padding: 30px 24px;
    }

    .about-experience {
        right: 0;
        bottom: -20px;
        padding: 20px 24px;
    }

    .about-experience-num {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .top-bar-info {
        gap: 10px;
    }

    .top-bar-info .info-item span {
        display: none;
    }

    .info-item {
        width: 32px;
        height: 32px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        justify-content: center;
    }

    .lang-switcher {
        margin-left: auto;
    }
}

/* ============ Animations ============ */
[data-aos] {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Print Styles */
@media print {
    .top-bar, .main-header, .scroll-top, .whatsapp-float, .nav-toggle, .footer-bottom-links {
        display: none !important;
    }
}

/* Focus visible for accessibility */
*:focus-visible {
    outline: 3px solid var(--color-accent);
    outline-offset: 3px;
    border-radius: 4px;
}

/* ============================================================
   Inner Pages – Missing Component Styles
   ============================================================ */

/* --- Utilities --- */
.section-padding  { padding: var(--section-padding) 0; }
.text-center      { text-align: center; }
.bg-light         { background: var(--color-bg-alt); }
.text-muted       { color: var(--color-text-light); font-size: 0.9rem; }
.required         { color: var(--color-danger); }
.btn-block        { width: 100%; justify-content: center; }

.section-subtitle {
    display: inline-block;
    color: var(--color-accent);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 12px;
    position: relative;
    padding: 0 30px;
}
.section-subtitle::before,
.section-subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 2px;
    background: var(--color-accent);
}
.section-subtitle::before { left: 0; }
.section-subtitle::after  { right: 0; }

.section-desc {
    font-size: 1.05rem;
    color: var(--color-text-light);
    line-height: 1.8;
    max-width: 700px;
    margin: 16px auto 0;
}

/* --- Page Header (inner pages) --- */
.page-header h1 { color: white; margin-bottom: 16px; }

.page-header-bg {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 70% 30%, rgba(212,160,23,.15) 0%, transparent 50%),
        linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: auto, 60px 60px, 60px 60px;
    pointer-events: none;
}

.breadcrumb-nav {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,.1);
    padding: 8px 20px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    margin-top: 8px;
}
.breadcrumb-nav a {
    color: rgba(255,255,255,.85);
    font-size: 14px;
    font-weight: 500;
    transition: color var(--trans-fast);
}
.breadcrumb-nav a:hover { color: var(--color-accent); }
.breadcrumb-nav .separator { color: var(--color-accent); font-size: 10px; }
.breadcrumb-nav .current  { color: rgba(255,255,255,.65); font-size: 14px; }

/* --- About Page --- */
/* Override .about-image when used as column wrapper (not inner image box) */
.about-section .about-grid > .about-image {
    background: none;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
    aspect-ratio: auto;
    display: block;
    position: relative;
    padding-bottom: 44px;
}

.image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    aspect-ratio: 4/5;
    box-shadow: var(--shadow-xl);
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.image-wrapper::before {
    content: '\f1ad';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 7rem;
    color: rgba(255,255,255,.12);
}

.image-decoration {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,61,98,.25) 0%, transparent 55%);
}

.floating-badge {
    position: absolute;
    bottom: 0;
    right: -24px;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-light) 100%);
    padding: 24px 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
    color: var(--color-dark);
    z-index: 2;
}
.lang-ar .floating-badge { right: auto; left: -24px; }

.floating-badge .number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1;
}
.floating-badge .text {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 4px;
}

.content-text p { color: var(--color-text-light); font-size: 1.05rem; line-height: 1.85; }

.features-list { margin-top: 28px; display: flex; flex-direction: column; gap: 16px; }

.feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 18px 20px;
    background: var(--color-bg-alt);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--color-accent);
    transition: var(--trans-base);
}
.feature-item:hover {
    background: white;
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}
.lang-ar .feature-item { border-left: none; border-right: 3px solid var(--color-accent); }
.lang-ar .feature-item:hover { transform: translateX(-4px); }

.feature-icon {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}
.feature-text h4 { font-size: 1rem; color: var(--color-dark); margin-bottom: 4px; }
.feature-text p  { color: var(--color-text-light); font-size: 0.9rem; margin: 0; line-height: 1.6; }

/* Why items – card style used on About page */
.why-section.section-padding .why-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}
.why-item {
    background: white;
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    text-align: center;
    transition: var(--trans-base);
}
.why-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.why-item .why-icon { margin: 0 auto 18px; width: 64px; height: 64px; font-size: 24px; }
.why-item h3 { font-size: 1.15rem; color: var(--color-dark); margin-bottom: 10px; }
.why-item p  { color: var(--color-text-light); font-size: 0.9rem; margin: 0; line-height: 1.7; }

/* CTA wrapper – side-by-side layout on inner pages */
.cta-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}
.cta-content { flex: 1; min-width: 240px; }
.cta-content h2 { color: white; margin-bottom: 10px; }
.cta-content p  { color: rgba(255,255,255,.85); margin: 0; font-size: 1.05rem; }
@media (max-width: 768px) {
    .cta-wrapper { flex-direction: column; text-align: center; }
    .cta-wrapper .btn { width: 100%; }
}

/* --- Services Page --- */
.services-grid-full { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }

.service-details {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--color-border);
    color: var(--color-text-light);
    font-size: 0.9rem;
    line-height: 1.7;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 28px;
    margin-top: 50px;
}
.process-item {
    background: white;
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    position: relative;
    transition: var(--trans-base);
    border: 1px solid var(--color-border);
}
.process-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }

.process-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--color-border);
    line-height: 1;
    margin-bottom: 16px;
    transition: color var(--trans-base);
}
.process-item:hover .process-number { color: var(--color-accent); }

.process-icon {
    width: 68px;
    height: 68px;
    margin: 0 auto 18px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    transition: var(--trans-base);
}
.process-item:hover .process-icon {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-light) 100%);
    color: var(--color-dark);
}
.process-item h3 { font-size: 1.15rem; color: var(--color-dark); margin-bottom: 10px; }
.process-item p  { color: var(--color-text-light); font-size: 0.9rem; margin: 0; line-height: 1.7; }

/* --- Contact Page --- */
.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 24px;
}
.contact-card {
    background: white;
    padding: 36px 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    text-align: center;
    transition: var(--trans-base);
}
.contact-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }

.contact-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    transition: var(--trans-base);
}
.contact-card:hover .contact-card-icon {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-light) 100%);
    color: var(--color-dark);
}
.contact-card h3  { font-size: 1.15rem; color: var(--color-dark); margin-bottom: 10px; }
.contact-card p   { color: var(--color-text-light); font-size: 0.95rem; margin-bottom: 6px; }
.contact-card p a { color: var(--color-text-light); }
.contact-card p a:hover { color: var(--color-accent); }

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--color-primary);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 14px;
    transition: var(--trans-fast);
}
.card-link:hover { color: var(--color-accent); }
.card-link i { transition: transform var(--trans-fast); }
.card-link:hover i { transform: translateX(4px); }
.lang-ar .card-link:hover i { transform: translateX(-4px); }

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.contact-form-wrapper > p { color: var(--color-text-light); margin-bottom: 28px; }
.contact-form { margin-top: 28px; }

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--color-text);
    background: white;
    transition: var(--trans-fast);
}
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(10,61,98,.1);
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form label {
    display: block;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 8px;
    font-size: 0.95rem;
}
.form-group-checkbox { margin-top: 4px; }
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-weight: 400 !important;
    color: var(--color-text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}
.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: var(--color-primary);
}

.contact-map-wrapper { position: sticky; top: 120px; }
.map-container {
    position: relative;
    height: 520px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--color-bg-alt);
}
.map-container iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.map-container iframe:first-child  { z-index: 0; }
.map-container iframe:last-child   { z-index: 1; }

@media (max-width: 992px) {
    .contact-form-grid { grid-template-columns: 1fr; }
    .contact-map-wrapper { position: static; }
    .map-container { height: 350px; }
}
@media (max-width: 768px) {
    .contact-cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .contact-cards-grid { grid-template-columns: 1fr; }
}

/* --- Clients Page --- */
.clients-category { margin-bottom: 56px; }
.clients-category:last-child { margin-bottom: 0; }

.category-title {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 1.3rem;
    color: var(--color-dark);
    margin-bottom: 24px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--color-accent);
}
.title-icon {
    width: 34px;
    height: 34px;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-light) 100%);
    color: var(--color-dark);
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
}

.clients-grid-full { grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); }

.client-card {
    background: white;
    border: 1px solid var(--color-border);
    padding: 24px 16px;
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--trans-base);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.client-card:hover { transform: translateY(-4px); border-color: var(--color-accent); box-shadow: var(--shadow-md); }

.client-card img {
    max-height: 64px;
    width: auto;
    object-fit: contain;
    filter: grayscale(70%);
    opacity: 0.8;
    transition: var(--trans-base);
}
.client-card:hover img { filter: grayscale(0); opacity: 1; }

.client-card h4 { font-size: 0.9rem; color: var(--color-dark); margin: 0; font-weight: 600; line-height: 1.4; }
.client-card p  { font-size: 0.82rem; color: var(--color-text-light); margin: 0; line-height: 1.4; }

.client-placeholder {
    width: 64px;
    height: 64px;
    background: var(--color-bg-alt);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-light);
    font-size: 22px;
}

/* Testimonials swiper */
.quote-icon { font-size: 1.8rem; color: var(--color-accent); opacity: 0.4; margin-bottom: 14px; }
.testimonial-author .author-info h4 { font-size: 1rem; color: var(--color-dark); margin: 0 0 2px; }
.testimonial-author .author-info span { font-size: 0.875rem; color: var(--color-text-light); }
.rating { display: flex; gap: 3px; color: var(--color-accent); font-size: 13px; margin-top: 8px; }
.swiper-pagination { margin-top: 28px; position: static !important; }

/* --- Privacy / Terms Pages --- */
.page-header-section {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
    color: white;
    padding: 80px 0 70px;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.page-header-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 60% 40%, rgba(212,160,23,.15) 0%, transparent 55%);
    pointer-events: none;
}
.page-header-section::after {
    content: '';
    position: absolute;
    bottom: -1px; left: 0; right: 0;
    height: 50px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 50' preserveAspectRatio='none'%3E%3Cpath fill='%23ffffff' d='M0 50V20q360-20 720-10t720 20v20z'/%3E%3C/svg%3E") no-repeat center bottom;
    background-size: cover;
}
.page-header-section h1 {
    color: white;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}
.page-header-section .breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,.1);
    padding: 7px 18px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
}
.page-header-section .breadcrumb a {
    color: rgba(255,255,255,.85);
    font-size: 14px;
    font-weight: 500;
}
.page-header-section .breadcrumb a:hover { color: var(--color-accent); }
.page-header-section .breadcrumb .separator { color: var(--color-accent); font-size: 12px; }
.page-header-section .breadcrumb span:not(.separator) {
    color: rgba(255,255,255,.65);
    font-size: 14px;
}

.content-section { padding: var(--section-padding) 0; }

.legal-content {
    max-width: 860px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}
.legal-content .lead {
    font-size: 1.125rem;
    color: var(--color-text-light);
    line-height: 1.85;
    margin-bottom: 36px;
    padding-bottom: 28px;
    border-bottom: 2px solid var(--color-border);
}
.legal-content h2 {
    font-size: 1.4rem;
    color: var(--color-primary);
    margin: 36px 0 14px;
    padding-left: 16px;
    border-left: 4px solid var(--color-accent);
}
.lang-ar .legal-content h2 { padding-left: 0; padding-right: 16px; border-left: none; border-right: 4px solid var(--color-accent); }
.legal-content p { color: var(--color-text-light); line-height: 1.8; margin-bottom: 14px; }
.legal-content ul {
    list-style: disc;
    padding-left: 24px;
    margin-bottom: 16px;
}
.lang-ar .legal-content ul { padding-left: 0; padding-right: 24px; }
.legal-content ul li { color: var(--color-text-light); line-height: 1.8; margin-bottom: 6px; }
.legal-content small { color: var(--color-text-light); font-size: 0.85rem; }

@media (max-width: 768px) {
    .legal-content { padding: 32px 24px; }
    .legal-content h2 { font-size: 1.2rem; }
}
