/* ==========================================================
   شركة تقارب للمحاماة - تصميم احترافي مع أنيميشن متقدم
   لوحة ألوان متناسقة مع اللوجو
   ========================================================== */

/* ===== متغيرات ===== */
:root {
    /* الألوان الأساسية */
    --navy: #0d1b2a;
    --navy-deep: #06101c;
    --navy-light: #1b2a3f;

    /* لون اللوجو */
    --bronze: #8b5a2b;
    --bronze-dark: #6d4520;
    --bronze-light: #a87141;

    /* الذهبي */
    --gold: #c9a961;
    --gold-light: #e0c47a;
    --gold-dark: #a88940;

    /* الخلفيات */
    --white: #ffffff;
    --cream: #faf6ef;
    --cream-dark: #f3ede0;
    --ivory: #fefdfa;
    --warm-gray: #e8e4dd;

    /* النصوص */
    --text: #2c2620;
    --text-soft: #5a5247;
    --text-muted: #8a8175;

    /* الحدود والظلال */
    --border-soft: #e8e0d2;
    --shadow-xs: 0 1px 2px rgba(13, 27, 42, 0.04);
    --shadow-sm: 0 4px 14px rgba(13, 27, 42, 0.06);
    --shadow-md: 0 10px 35px rgba(13, 27, 42, 0.08);
    --shadow-lg: 0 25px 60px rgba(13, 27, 42, 0.14);
    --shadow-bronze: 0 10px 30px rgba(139, 90, 43, 0.28);
    --shadow-glow: 0 0 30px rgba(201, 169, 97, 0.3);

    /* القياسات */
    --radius-sm: 4px;
    --radius-md: 10px;
    --radius-lg: 18px;
    --radius-xl: 26px;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-smooth: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --container-max: 1280px;

    /* الخطوط */
    --font-arabic: 'Tajawal', 'Segoe UI', Tahoma, sans-serif;
    --font-display: 'Cairo', 'Tajawal', sans-serif;
    --font-elegant: 'Amiri', 'Tajawal', serif;
}

/* ===== إعادة الضبط ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

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

img { max-width: 100%; display: block; height: auto; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: 1rem; color: var(--text); }

/* ===== شاشة التحميل ===== */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--white);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

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

.preloader-logo {
    height: 80px;
    animation: preloaderPulse 1.5s ease-in-out infinite;
}

.preloader-bar {
    width: 200px;
    height: 2px;
    background: var(--cream-dark);
    border-radius: 2px;
    overflow: hidden;
    margin-top: 30px;
    position: relative;
}

.preloader-bar::after {
    content: '';
    position: absolute;
    top: 0;
    right: -50%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--bronze), transparent);
    animation: preloaderProgress 1.4s linear infinite;
}

@keyframes preloaderPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.96); }
}

@keyframes preloaderProgress {
    0% { right: -50%; }
    100% { right: 100%; }
}

/* ===== الحاويات والأقسام ===== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 32px;
    width: 100%;
}

.section {
    padding: 130px 0;
    position: relative;
}

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

.section-tag {
    display: inline-block;
    color: var(--bronze);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 20px;
    text-transform: uppercase;
    position: relative;
}

.section-tag::before,
.section-tag::after {
    content: '';
    display: inline-block;
    width: 40px;
    height: 1px;
    background: var(--bronze);
    vertical-align: middle;
    margin: 0 16px;
    opacity: 0.6;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3.1rem);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 24px;
    line-height: 1.25;
    letter-spacing: -0.5px;
}

.text-bronze { color: var(--bronze); }
.text-gold { color: var(--gold); }

.section-divider {
    width: 60px;
    height: 2px;
    background: var(--bronze);
    margin: 0 auto 28px;
    position: relative;
}

.section-divider::before,
.section-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--bronze);
    border-radius: 50%;
}

.section-divider::before { right: -16px; }
.section-divider::after { left: -16px; }

.section-subtitle {
    color: var(--text-soft);
    font-size: 1.1rem;
    line-height: 1.85;
    max-width: 620px;
    margin: 0 auto;
}

/* ===== الأزرار ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    font-size: 0.98rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    line-height: 1;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
    z-index: 1;
}

.btn-sm { padding: 11px 24px; font-size: 0.88rem; }
.btn-lg { padding: 20px 44px; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* تأثير اللمعان عند التحويم */
.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
}

.btn:hover::before {
    width: 350px;
    height: 350px;
}

/* الزر البرونزي */
.btn-bronze {
    background: var(--bronze);
    color: var(--ivory);
    box-shadow: var(--shadow-bronze);
}

.btn-bronze:hover {
    background: var(--bronze-dark);
    transform: translateY(-3px);
    box-shadow: 0 14px 35px rgba(139, 90, 43, 0.4);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--ivory);
    box-shadow: var(--shadow-glow);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 35px rgba(201, 169, 97, 0.45);
}

.btn-navy {
    background: var(--navy);
    color: var(--ivory);
}

.btn-navy:hover {
    background: var(--navy-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

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

.btn-outline:hover {
    background: var(--ivory);
    color: var(--navy);
    transform: translateY(-3px);
}

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

.btn-outline-bronze:hover {
    background: var(--bronze);
    color: var(--ivory);
    transform: translateY(-3px);
}

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

.btn-outline-navy:hover {
    background: var(--navy);
    color: var(--ivory);
    transform: translateY(-3px);
}

/* ===== شريط التنقل - أبيض ثابت ===== */
.navbar {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    padding: 16px 0;
    background: var(--white);
    box-shadow: 0 1px 0 rgba(232, 224, 210, 0.6);
    transition: padding 0.4s ease, box-shadow 0.4s ease;
}

.navbar.scrolled,
.navbar.navbar-solid {
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(13, 27, 42, 0.08);
}

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

/* اللوجو */
.logo {
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.logo-img {
    height: 60px;
    width: auto;
    transition: var(--transition);
}

.navbar.scrolled .logo-img {
    height: 50px;
}

.logo:hover {
    transform: scale(1.02);
}

/* قائمة التنقل */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--navy);
    position: relative;
    padding: 8px 0;
    letter-spacing: 0.2px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--bronze);
    transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-link:hover,
.nav-link.active {
    color: var(--bronze);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    margin-right: 8px;
}

.nav-cta::after { display: none; }

/* زر القائمة للجوال */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    z-index: 1001;
}

.menu-toggle span {
    width: 100%;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: var(--transition);
    transform-origin: center;
}

.menu-toggle span:nth-child(2) { width: 70%; margin-right: auto; }

.menu-toggle.active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
    background: var(--bronze);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
    background: var(--bronze);
}

/* ===== HERO SECTION مع أنيميشن قوي ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--navy);
    color: var(--ivory);
    padding-top: 140px;
    padding-bottom: 100px;
    overflow: hidden;
}

/* خلفية متحركة */
.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 80% 20%, rgba(139, 90, 43, 0.3) 0%, transparent 55%),
        radial-gradient(ellipse at 20% 80%, rgba(201, 169, 97, 0.2) 0%, transparent 55%),
        linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 50%, var(--navy-light) 100%);
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 60% 40%, rgba(201, 169, 97, 0.08) 0%, transparent 40%);
    animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0% { transform: translate(0, 0) scale(1); opacity: 0.6; }
    100% { transform: translate(40px, -30px) scale(1.1); opacity: 1; }
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.6;
    animation: patternMove 60s linear infinite;
}

@keyframes patternMove {
    0% { background-position: 0 0; }
    100% { background-position: 60px 60px; }
}

/* عناصر زخرفية متحركة */
.hero-decor {
    position: absolute;
    pointer-events: none;
}

.hero-decor.circle-1 {
    top: 100px;
    right: 30px;
    width: 240px;
    height: 240px;
    border: 1px solid rgba(201, 169, 97, 0.18);
    border-radius: 50%;
    animation: rotateSlow 30s linear infinite;
}

.hero-decor.circle-1::after {
    content: '';
    position: absolute;
    inset: 25px;
    border: 1px dashed rgba(201, 169, 97, 0.15);
    border-radius: 50%;
    animation: rotateReverse 25s linear infinite;
}

.hero-decor.circle-2 {
    bottom: 80px;
    left: 5%;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(139, 90, 43, 0.22) 0%, transparent 60%);
    border-radius: 50%;
    filter: blur(40px);
    animation: float 8s ease-in-out infinite;
}

.hero-decor.circle-3 {
    top: 30%;
    left: 15%;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--gold);
    animation: floatDot 6s ease-in-out infinite;
}

.hero-decor.circle-4 {
    bottom: 25%;
    right: 12%;
    width: 6px;
    height: 6px;
    background: var(--bronze-light);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--bronze);
    animation: floatDot 7s ease-in-out infinite 2s;
}

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

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

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

@keyframes floatDot {
    0%, 100% { transform: translate(0, 0); opacity: 0.7; }
    50% { transform: translate(20px, -15px); opacity: 1; }
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
}

.hero-content { max-width: 720px; }

/* أنيميشن العناصر داخل الـ Hero */
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 22px;
    background: rgba(201, 169, 97, 0.1);
    color: var(--gold-light);
    border: 1px solid rgba(201, 169, 97, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
    letter-spacing: 0.5px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s 0.2s forwards cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-tag i {
    color: var(--gold);
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5.5vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 28px;
    color: var(--ivory);
    letter-spacing: -1px;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s 0.4s forwards cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-title .highlight {
    color: var(--gold);
    position: relative;
    display: inline-block;
    background: linear-gradient(120deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-description {
    font-size: clamp(1rem, 1.8vw, 1.18rem);
    line-height: 1.9;
    color: rgba(254, 253, 250, 0.78);
    margin-bottom: 40px;
    max-width: 620px;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s 0.6s forwards cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-buttons {
    display: flex;
    gap: 18px;
    margin-bottom: 70px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s 0.8s forwards cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* البطاقات الجانبية */
.hero-stats-side {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 300px;
}

.stat-card {
    padding: 24px 28px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 16px;
    opacity: 0;
    transform: translateX(-50px);
    position: relative;
    overflow: hidden;
}

.stat-card.visible { animation: slideInRight 0.8s forwards cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.stat-card:nth-child(1) { animation-delay: 1s; }
.stat-card:nth-child(2) { animation-delay: 1.15s; }
.stat-card:nth-child(3) { animation-delay: 1.3s; }

@keyframes slideInRight {
    to { opacity: 1; transform: translateX(0); }
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100%;
    width: 3px;
    height: 100%;
    background: var(--gold);
    transition: right 0.4s ease;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(201, 169, 97, 0.4);
    transform: translateX(-6px);
}

.stat-card:hover::before { right: 0; }

.stat-card-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--bronze) 0%, var(--bronze-dark) 100%);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ivory);
    font-size: 1.35rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.stat-card:hover .stat-card-icon {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
}

.stat-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--ivory);
    margin-bottom: 4px;
}

.stat-card p {
    font-size: 0.85rem;
    color: rgba(254, 253, 250, 0.65);
    line-height: 1.5;
}

/* مؤشر التمرير */
.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    opacity: 0;
    animation: fadeUp 1s 1.5s forwards;
}

.hero-scroll a {
    display: block;
    width: 26px;
    height: 44px;
    border: 2px solid rgba(254, 253, 250, 0.25);
    border-radius: 14px;
    position: relative;
    transition: var(--transition);
}

.hero-scroll a:hover { border-color: var(--gold); }

.hero-scroll span {
    display: block;
    width: 3px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    margin: 6px auto;
    animation: scroll-down 1.8s infinite;
}

@keyframes scroll-down {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(20px); opacity: 0; }
}

/* ===== شريط الثقة المتحرك ===== */
.trust-bar {
    background: var(--cream);
    padding: 30px 0;
    border-bottom: 1px solid var(--border-soft);
    overflow: hidden;
    position: relative;
}

.trust-bar::before,
.trust-bar::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.trust-bar::before {
    right: 0;
    background: linear-gradient(270deg, var(--cream), transparent);
}

.trust-bar::after {
    left: 0;
    background: linear-gradient(90deg, var(--cream), transparent);
}

.trust-bar-track {
    display: flex;
    gap: 60px;
    animation: marquee 30s linear infinite;
    width: max-content;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--navy);
    flex-shrink: 0;
}

.trust-item i {
    font-size: 1.4rem;
    color: var(--bronze);
}

.trust-item span {
    font-weight: 600;
    font-size: 0.95rem;
    white-space: nowrap;
}

.trust-divider {
    width: 6px;
    height: 6px;
    background: var(--bronze);
    border-radius: 50%;
    align-self: center;
    opacity: 0.5;
    flex-shrink: 0;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(50%); }
}

.trust-bar:hover .trust-bar-track { animation-play-state: paused; }

/* ===== قسم من نحن ===== */
.about {
    background: var(--ivory);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 90, 43, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 12s ease-in-out infinite;
}

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

.about-content .section-tag { margin-bottom: 16px; }
.about-content .section-tag::before,
.about-content .section-tag::after { display: none; }

.about-content .section-title {
    text-align: right;
    margin-bottom: 20px;
}

.about-content > .section-divider { margin: 0 0 28px; }
.about-content > .section-divider::before { right: -16px; }
.about-content > .section-divider::after { display: none; }

.about-lead {
    font-size: 1.18rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 22px;
    line-height: 1.85;
    padding-right: 24px;
    border-right: 3px solid var(--bronze);
}

.about-content p {
    color: var(--text-soft);
    margin-bottom: 22px;
    font-size: 1rem;
    line-height: 1.95;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    background: var(--cream);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-soft);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 90, 43, 0.06));
    transition: width 0.5s ease;
}

.feature-item:hover {
    background: var(--ivory);
    border-color: var(--bronze);
    box-shadow: var(--shadow-sm);
    transform: translateX(-4px);
}

.feature-item:hover::before { width: 100%; }

.feature-icon {
    width: 32px;
    height: 32px;
    background: var(--bronze);
    color: var(--ivory);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.feature-item:hover .feature-icon {
    transform: rotate(360deg);
    background: var(--gold-dark);
}

.feature-item span:last-child {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

/* الجانب البصري */
.about-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 480px;
}

.visual-frame {
    position: relative;
    width: 100%;
    max-width: 460px;
}

.visual-card {
    position: relative;
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    z-index: 2;
    transition: var(--transition-slow);
}

.visual-frame:hover .visual-card {
    transform: rotate(-2deg) scale(1.02);
}

.visual-card::before {
    content: '';
    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: 30px 30px;
}

.visual-icon {
    font-size: 9rem;
    color: var(--gold);
    opacity: 0.95;
    z-index: 1;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
    animation: floatIcon 6s ease-in-out infinite;
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
}

.visual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(13, 27, 42, 0.85) 100%);
    z-index: 1;
}

.visual-quote {
    position: absolute;
    bottom: 30px;
    right: 30px;
    left: 30px;
    color: var(--ivory);
    z-index: 2;
}

.visual-quote-mark {
    font-size: 2.8rem;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
    font-family: var(--font-elegant);
}

.visual-quote p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(254, 253, 250, 0.92);
    margin-bottom: 0 !important;
    font-style: italic;
}

/* العناصر الزخرفية */
.visual-decor-1,
.visual-decor-2 {
    position: absolute;
    z-index: 1;
    transition: var(--transition-slow);
}

.visual-decor-1 {
    top: -25px;
    right: -25px;
    width: 100px;
    height: 100px;
    border: 2px solid var(--bronze);
    border-radius: var(--radius-lg);
    animation: rotate3d 8s linear infinite;
}

.visual-decor-2 {
    bottom: -25px;
    left: -25px;
    width: 140px;
    height: 140px;
    background: var(--bronze);
    opacity: 0.08;
    border-radius: var(--radius-lg);
    animation: rotate3dReverse 10s linear infinite;
}

@keyframes rotate3d {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(15deg); }
}

@keyframes rotate3dReverse {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(-10deg) scale(1.05); }
}

.visual-badge {
    position: absolute;
    top: 30px;
    left: -20px;
    background: var(--ivory);
    padding: 16px 22px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: badgeBounce 4s ease-in-out infinite;
}

@keyframes badgeBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.visual-badge-icon {
    width: 40px;
    height: 40px;
    background: var(--bronze);
    color: var(--ivory);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-badge-text strong {
    display: block;
    color: var(--navy);
    font-size: 0.95rem;
    font-weight: 800;
}

.visual-badge-text span {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* ===== قسم الرؤية والرسالة - تصميم سينمائي ===== */
.vision-mission {
    background: var(--navy-deep);
    color: var(--ivory);
    position: relative;
    overflow: hidden;
    padding: 140px 0 150px;
}

/* خلفية متدرجة فاخرة */
.vm-bg-mesh {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(at 20% 30%, rgba(201, 169, 97, 0.18) 0%, transparent 50%),
        radial-gradient(at 80% 20%, rgba(139, 90, 43, 0.22) 0%, transparent 50%),
        radial-gradient(at 50% 80%, rgba(201, 169, 97, 0.12) 0%, transparent 50%),
        linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 50%, var(--navy-deep) 100%);
    animation: meshShift 20s ease-in-out infinite alternate;
}

@keyframes meshShift {
    0% { transform: scale(1) rotate(0deg); }
    100% { transform: scale(1.1) rotate(2deg); }
}

/* طبقة Noise خفيفة */
.vm-bg-noise {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
    pointer-events: none;
}

/* كرات ضوئية متحركة Orbs */
.vm-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    opacity: 0.5;
}

.vm-orb-1 {
    top: 5%;
    right: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--bronze) 0%, transparent 70%);
    animation: orbFloat 16s ease-in-out infinite;
}

.vm-orb-2 {
    bottom: 10%;
    left: 5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
    opacity: 0.3;
    animation: orbFloat 20s ease-in-out infinite reverse;
}

.vm-orb-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--bronze-light) 0%, transparent 60%);
    opacity: 0.15;
    animation: orbPulse 8s ease-in-out infinite;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(60px, -40px) scale(1.1); }
    66% { transform: translate(-40px, 60px) scale(0.95); }
}

@keyframes orbPulse {
    0%, 100% { opacity: 0.15; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.25; transform: translate(-50%, -50%) scale(1.15); }
}

/* جزيئات ذهبية متحركة */
.vm-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.vm-particles span {
    position: absolute;
    display: block;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--gold), 0 0 20px var(--gold-light);
    opacity: 0;
    animation: particleRise 12s linear infinite;
}

.vm-particles span:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 14s; }
.vm-particles span:nth-child(2) { left: 20%; animation-delay: 2s; animation-duration: 16s; width: 3px; height: 3px; }
.vm-particles span:nth-child(3) { left: 30%; animation-delay: 4s; animation-duration: 12s; }
.vm-particles span:nth-child(4) { left: 45%; animation-delay: 1s; animation-duration: 18s; width: 5px; height: 5px; }
.vm-particles span:nth-child(5) { left: 55%; animation-delay: 6s; animation-duration: 13s; }
.vm-particles span:nth-child(6) { left: 65%; animation-delay: 3s; animation-duration: 15s; width: 3px; height: 3px; }
.vm-particles span:nth-child(7) { left: 75%; animation-delay: 5s; animation-duration: 17s; }
.vm-particles span:nth-child(8) { left: 85%; animation-delay: 7s; animation-duration: 14s; width: 4px; height: 4px; }
.vm-particles span:nth-child(9) { left: 92%; animation-delay: 2.5s; animation-duration: 16s; }
.vm-particles span:nth-child(10) { left: 5%; animation-delay: 8s; animation-duration: 13s; width: 3px; height: 3px; }

@keyframes particleRise {
    0% { bottom: -20px; opacity: 0; transform: translateX(0); }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { bottom: 110%; opacity: 0; transform: translateX(40px); }
}

/* ترويسة القسم - متناسبة مع الخلفية الداكنة */
.vm-header { margin-bottom: 90px; position: relative; z-index: 2; }

.vm-tag-light {
    color: var(--gold);
}

.vm-tag-light::before,
.vm-tag-light::after {
    background: var(--gold);
}

.vm-title-light {
    color: var(--ivory);
}

.vm-divider-light {
    background: var(--gold);
}

.vm-divider-light::before,
.vm-divider-light::after {
    background: var(--gold);
}

.vm-subtitle-light {
    color: rgba(254, 253, 250, 0.78);
}

/* ===== Showcase احترافي - بطاقات سينمائية ===== */
.vm-connector {
    position: absolute;
    top: 100px;
    right: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 1;
    pointer-events: none;
    opacity: 0.4;
    animation: connectorPulse 4s ease-in-out infinite;
}

@keyframes connectorPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

.vm-showcase {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 30px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* البطاقة الفاخرة */
.vm-pro {
    position: relative;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 50px 36px 40px;
    text-align: center;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    isolation: isolate;
}

.vm-pro::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.05) 0%, transparent 50%, rgba(139, 90, 43, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: -1;
}

.vm-pro::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: scaleX(0);
    transition: transform 0.6s ease;
}

.vm-pro:hover {
    transform: translateY(-15px);
    border-color: rgba(201, 169, 97, 0.4);
    background: rgba(255, 255, 255, 0.06);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(201, 169, 97, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.vm-pro:hover::before { opacity: 1; }
.vm-pro:hover::after { transform: scaleX(1); }

/* البطاقة المميزة في الوسط */
.vm-pro-featured {
    background: linear-gradient(180deg, rgba(201, 169, 97, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
    border-color: rgba(201, 169, 97, 0.3);
    transform: scale(1.05);
    padding: 60px 36px 45px;
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.35),
        0 0 0 1px rgba(201, 169, 97, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.vm-pro-featured:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(201, 169, 97, 0.4),
        0 0 50px rgba(201, 169, 97, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* هالة ضوئية حول البطاقة */
.vm-pro-aura {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(201, 169, 97, 0.15) 0%, transparent 40%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
    z-index: -1;
}

.vm-pro:hover .vm-pro-aura { opacity: 1; }

.vm-pro-aura-strong {
    background: radial-gradient(circle at center, rgba(201, 169, 97, 0.25) 0%, transparent 50%);
    opacity: 0.4;
    animation: auraPulse 3s ease-in-out infinite;
}

@keyframes auraPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.1); }
}

/* Spotlight متحرك خلف البطاقة المميزة */
.vm-pro-spotlight {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 300px;
    background: linear-gradient(180deg, var(--gold) 0%, transparent 100%);
    opacity: 0.15;
    filter: blur(60px);
    pointer-events: none;
    animation: spotlightSweep 6s ease-in-out infinite;
}

@keyframes spotlightSweep {
    0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.15; }
    50% { transform: translateX(-30%) scale(1.2); opacity: 0.25; }
}

/* الرقم الروماني الكبير */
.vm-pro-roman {
    position: absolute;
    top: 22px;
    right: 30px;
    font-family: var(--font-elegant);
    font-size: 4rem;
    font-weight: 700;
    color: rgba(201, 169, 97, 0.15);
    line-height: 1;
    pointer-events: none;
    transition: all 0.6s ease;
    letter-spacing: -2px;
}

.vm-pro-featured .vm-pro-roman {
    font-size: 5rem;
    color: rgba(201, 169, 97, 0.25);
    top: 30px;
}

.vm-pro:hover .vm-pro-roman {
    color: rgba(201, 169, 97, 0.35);
    transform: scale(1.1);
}

/* badge في أعلى البطاقة المميزة */
.vm-pro-badge-top {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--navy);
    padding: 8px 22px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 800;
    box-shadow: 0 8px 25px rgba(201, 169, 97, 0.4);
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    z-index: 3;
    animation: badgeShine 3s ease-in-out infinite;
}

.vm-pro-badge-top i {
    font-size: 0.85rem;
    color: var(--navy);
}

/* الإطار السداسي للأيقونة */
.vm-pro-hex-wrap {
    position: relative;
    width: 110px;
    height: 110px;
    margin: 20px auto 30px;
    z-index: 1;
}

.vm-pro-hex {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bronze) 0%, var(--bronze-dark) 100%);
    color: var(--ivory);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2;
}

.vm-pro-hex-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--navy);
}

.vm-pro-hex-ring {
    position: absolute;
    inset: -10px;
    border: 2px solid rgba(201, 169, 97, 0.4);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: transparent;
    animation: hexRotate 12s linear infinite;
    transition: all 0.6s ease;
}

.vm-pro-hex-ring-gold {
    border-color: rgba(201, 169, 97, 0.6);
    inset: -12px;
}

.vm-pro-hex-ring-outer {
    inset: -22px;
    border: 1px dashed rgba(201, 169, 97, 0.3);
    animation: hexRotate 18s linear infinite reverse;
}

@keyframes hexRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.vm-pro:hover .vm-pro-hex {
    transform: scale(1.1) rotate(180deg);
    box-shadow: 0 15px 40px rgba(139, 90, 43, 0.5);
}

.vm-pro:hover .vm-pro-hex-gold {
    box-shadow: 0 15px 40px rgba(201, 169, 97, 0.6);
}

.vm-pro:hover .vm-pro-hex-ring {
    inset: -16px;
    border-color: rgba(201, 169, 97, 0.7);
}

/* تاج علوي */
.vm-pro-tag-top {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 5px;
    color: var(--gold);
    margin-bottom: 12px;
    padding: 5px 16px;
    background: rgba(201, 169, 97, 0.1);
    border-radius: 50px;
    text-transform: uppercase;
    border: 1px solid rgba(201, 169, 97, 0.25);
    position: relative;
    z-index: 1;
}

/* العنوان */
.vm-pro-title {
    font-family: var(--font-display);
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--ivory);
    margin-bottom: 18px;
    letter-spacing: -0.5px;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.vm-pro-featured .vm-pro-title {
    font-size: 2.1rem;
    background: linear-gradient(135deg, var(--ivory) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* خط فاصل */
.vm-pro-divider {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0 auto 22px;
    position: relative;
    transition: width 0.6s ease;
}

.vm-pro:hover .vm-pro-divider {
    width: 90px;
}

/* النص */
.vm-pro-text {
    color: rgba(254, 253, 250, 0.78);
    line-height: 1.95;
    font-size: 0.97rem;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

.vm-pro-featured .vm-pro-text {
    color: rgba(254, 253, 250, 0.88);
    font-size: 1rem;
}

/* تذييل البطاقة */
.vm-pro-footer {
    position: relative;
    z-index: 1;
}

.vm-pro-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: var(--gold-light);
    font-size: 0.85rem;
    font-weight: 700;
    transition: var(--transition);
}

.vm-pro-pill i { font-size: 0.85rem; transition: var(--transition); }

.vm-pro:hover .vm-pro-pill {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
    transform: scale(1.05);
}

.vm-pro:hover .vm-pro-pill i { transform: rotate(360deg); }

.vm-pro-pill-gold {
    background: rgba(201, 169, 97, 0.15);
    border-color: rgba(201, 169, 97, 0.4);
    color: var(--gold);
}

.vm-pro-featured:hover .vm-pro-pill {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
    box-shadow: 0 10px 25px rgba(201, 169, 97, 0.4);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .vm-showcase {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
        gap: 40px;
    }

    .vm-pro-featured {
        transform: scale(1);
        order: -1;
    }

    .vm-pro-featured:hover {
        transform: translateY(-15px) scale(1);
    }

    .vm-connector { display: none; }
}

@media (max-width: 768px) {
    .vision-mission { padding: 90px 0 100px; }
    .vm-pro { padding: 44px 26px 32px; }
    .vm-pro-featured { padding: 56px 26px 36px; }
    .vm-pro-roman { font-size: 3rem; }
    .vm-pro-featured .vm-pro-roman { font-size: 4rem; }
    .vm-pro-title { font-size: 1.6rem; }
    .vm-pro-featured .vm-pro-title { font-size: 1.85rem; }
    .vm-pro-hex-wrap { width: 90px; height: 90px; }
    .vm-orb { display: none; }
}

/* ===== Responsive لـ Team والصفحات ===== */
@media (max-width: 1024px) {
    .team-grid,
    .team-grid.team-grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 26px;
    }

    .team-stats { grid-template-columns: repeat(2, 1fr); }
    .team-stat { border-left: none; border-bottom: 1px solid var(--border-soft); padding-bottom: 24px; }
    .team-stat:nth-child(odd) { border-left: 1px solid var(--border-soft); }
    .team-stat:nth-last-child(-n+2) { border-bottom: none; padding-bottom: 0; }

    .team-join-grid { grid-template-columns: 1fr; text-align: center; gap: 30px; }
    .team-join { padding: 50px 30px; }

    .page-hero { padding: 150px 0 70px; }
}

@media (max-width: 768px) {
    .team-grid,
    .team-grid.team-grid-4 {
        grid-template-columns: 1fr;
        max-width: 380px;
        margin: 0 auto;
    }

    .team-stats {
        grid-template-columns: 1fr;
        padding: 20px;
        gap: 0;
    }

    .team-stat {
        border-left: none !important;
        border-bottom: 1px solid var(--border-soft);
        padding: 18px 0;
    }

    .team-stat:last-child { border-bottom: none; }

    .team-stat-number { font-size: 2.2rem; }

    .page-hero { padding: 130px 0 60px; }
}

.vm-bento-card {
    background: var(--ivory);
    border-radius: var(--radius-lg);
    padding: 42px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-soft);
    transition: var(--transition-slow);
    display: flex;
    flex-direction: column;
}

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

/* البطاقة الكبيرة - الرؤية */
.vm-large {
    grid-row: 1 / 3;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
    color: var(--ivory);
    border-color: transparent;
    padding: 50px;
    box-shadow: var(--shadow-md);
}

.vm-large:hover {
    box-shadow: 0 30px 70px rgba(13, 27, 42, 0.35);
    transform: translateY(-10px);
}

/* البطاقتان الصغيرتان */
.vm-small {
    background: var(--ivory);
}

/* بطاقة القيم بلون برونزي */
.vm-bronze {
    background: linear-gradient(135deg, var(--bronze) 0%, var(--bronze-dark) 100%);
    color: var(--ivory);
    border-color: transparent;
}

.vm-bronze:hover {
    box-shadow: 0 25px 60px rgba(139, 90, 43, 0.4);
}

/* خلفية بنمط شبكي */
.vm-card-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.7;
    pointer-events: none;
}

/* توهج زخرفي */
.vm-card-glow {
    position: absolute;
    top: -100px;
    left: -100px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, var(--bronze) 0%, transparent 70%);
    opacity: 0.25;
    border-radius: 50%;
    pointer-events: none;
    transition: var(--transition-slow);
    animation: float 10s ease-in-out infinite;
}

.vm-large:hover .vm-card-glow {
    opacity: 0.4;
    transform: scale(1.2);
}

/* رقم البطاقة الكبير في الخلفية */
.vm-card-number {
    position: absolute;
    top: 18px;
    left: 32px;
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 800;
    color: rgba(13, 27, 42, 0.05);
    line-height: 1;
    letter-spacing: -2px;
    pointer-events: none;
    transition: var(--transition);
}

.vm-large .vm-card-number {
    color: rgba(201, 169, 97, 0.15);
    font-size: 8rem;
    top: 25px;
    left: 40px;
}

.vm-bronze .vm-card-number {
    color: rgba(255, 255, 255, 0.12);
}

.vm-bento-card:hover .vm-card-number {
    transform: scale(1.05) translateY(-4px);
}

.vm-large:hover .vm-card-number {
    color: rgba(201, 169, 97, 0.22);
}

/* الجزء العلوي للبطاقة */
.vm-card-top {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

.vm-card-icon-wrap {
    position: relative;
    display: inline-flex;
    flex-shrink: 0;
}

.vm-card-icon {
    width: 70px;
    height: 70px;
    background: var(--bronze);
    color: var(--ivory);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    box-shadow: var(--shadow-bronze);
    transition: var(--transition-slow);
    position: relative;
    z-index: 1;
}

.vm-card-icon-wrap::after {
    content: '';
    position: absolute;
    top: 8px;
    right: 8px;
    width: 70px;
    height: 70px;
    border: 2px solid var(--bronze);
    border-radius: var(--radius-md);
    opacity: 0.4;
    transition: var(--transition-slow);
}

/* أيقونة البطاقة الكبيرة */
.vm-large .vm-card-icon {
    background: var(--gold);
    color: var(--navy);
    box-shadow: 0 12px 30px rgba(201, 169, 97, 0.45);
    width: 76px;
    height: 76px;
    font-size: 1.85rem;
}

.vm-large .vm-card-icon-wrap::after {
    width: 76px;
    height: 76px;
    border-color: var(--gold);
    opacity: 0.5;
}

/* أيقونة بطاقة القيم البرونزية */
.vm-bronze .vm-card-icon {
    background: var(--ivory);
    color: var(--bronze-dark);
}

.vm-bronze .vm-card-icon-wrap::after {
    border-color: var(--ivory);
    opacity: 0.5;
}

.vm-bento-card:hover .vm-card-icon {
    transform: rotate(-10deg) scale(1.08);
}

.vm-bento-card:hover .vm-card-icon-wrap::after {
    top: 14px;
    right: 14px;
    opacity: 0.7;
    transform: scale(1.05);
}

/* تاج التصنيف */
.vm-card-tag {
    display: inline-flex;
    align-items: center;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 4px;
    color: var(--bronze);
    padding: 6px 14px;
    background: rgba(139, 90, 43, 0.08);
    border-radius: 50px;
    text-transform: uppercase;
    border: 1px solid rgba(139, 90, 43, 0.2);
    transition: var(--transition);
}

.vm-large .vm-card-tag {
    background: rgba(201, 169, 97, 0.18);
    color: var(--gold);
    border-color: rgba(201, 169, 97, 0.35);
}

.vm-bronze .vm-card-tag {
    background: rgba(255, 255, 255, 0.15);
    color: var(--ivory);
    border-color: rgba(255, 255, 255, 0.25);
}

.vm-bento-card:hover .vm-card-tag {
    transform: translateX(-4px);
    background: var(--bronze);
    color: var(--ivory);
    border-color: var(--bronze);
}

.vm-large:hover .vm-card-tag {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}

.vm-bronze:hover .vm-card-tag {
    background: var(--ivory);
    color: var(--bronze-dark);
    border-color: var(--ivory);
}

/* محتوى البطاقة */
.vm-card-content {
    position: relative;
    z-index: 1;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.vm-card-title {
    font-family: var(--font-display);
    font-size: 1.65rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    line-height: 1.3;
}

.vm-large .vm-card-title {
    color: var(--ivory);
    font-size: 2.2rem;
    margin-bottom: 18px;
}

.vm-bronze .vm-card-title {
    color: var(--ivory);
}

.vm-card-text {
    color: var(--text-soft);
    line-height: 1.95;
    font-size: 0.98rem;
    margin-bottom: 0;
}

.vm-large .vm-card-text {
    color: rgba(254, 253, 250, 0.85);
    font-size: 1.05rem;
    margin-bottom: 28px;
}

.vm-bronze .vm-card-text {
    color: rgba(254, 253, 250, 0.92);
}

/* قائمة النقاط للبطاقة الكبيرة */
.vm-card-points {
    list-style: none;
    margin-top: auto;
    padding: 24px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    border: 1px solid rgba(201, 169, 97, 0.2);
    backdrop-filter: blur(10px);
}

.vm-card-points li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: rgba(254, 253, 250, 0.92);
    font-size: 0.96rem;
    transition: var(--transition);
}

.vm-card-points li:last-child { margin-bottom: 0; }
.vm-card-points li:hover { transform: translateX(-6px); color: var(--gold); }

.vm-card-points li i {
    color: var(--gold);
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.vm-card-points li:hover i {
    transform: scale(1.2) rotate(360deg);
}

/* عنصر زخرفي دائري للبطاقة الكبيرة */
.vm-card-decor-circle {
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 280px;
    height: 280px;
    border: 2px solid rgba(201, 169, 97, 0.15);
    border-radius: 50%;
    pointer-events: none;
    animation: rotateSlow 40s linear infinite;
}

.vm-card-decor-circle::after {
    content: '';
    position: absolute;
    inset: 30px;
    border: 1px dashed rgba(201, 169, 97, 0.12);
    border-radius: 50%;
    animation: rotateReverse 30s linear infinite;
}

/* ===== Responsive للـ Bento ===== */
@media (max-width: 992px) {
    .vm-bento {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        min-height: auto;
    }

    .vm-large {
        grid-row: auto;
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .vm-bento { gap: 18px; }
    .vm-bento-card { padding: 32px 26px; }
    .vm-large { padding: 36px 26px; }
    .vm-large .vm-card-title { font-size: 1.8rem; }
    .vm-card-number { font-size: 4rem; }
    .vm-large .vm-card-number { font-size: 6rem; }
    .vm-card-points { padding: 18px; }
}

/* ===== قسم الخدمات ===== */
.services {
    background: var(--ivory);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    transform: translateY(-50%);
    animation: float 16s ease-in-out infinite;
}

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

.service-card {
    background: var(--ivory);
    border-radius: var(--radius-lg);
    padding: 0;
    position: relative;
    border: 1px solid var(--border-soft);
    transition: var(--transition-slow);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.service-card.featured {
    border-color: var(--bronze);
    box-shadow: var(--shadow-md);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
}

.service-card-header {
    padding: 36px 36px 0;
    position: relative;
}

.service-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    background: var(--bronze);
    color: var(--ivory);
    padding: 7px 16px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    box-shadow: var(--shadow-bronze);
    letter-spacing: 0.3px;
    animation: badgeShine 3s ease-in-out infinite;
}

@keyframes badgeShine {
    0%, 100% { box-shadow: var(--shadow-bronze); }
    50% { box-shadow: 0 12px 35px rgba(139, 90, 43, 0.45); }
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--cream);
    border: 2px solid var(--bronze);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bronze);
    font-size: 2rem;
    margin-bottom: 26px;
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
}

.service-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--bronze) 0%, var(--bronze-dark) 100%);
    transform: scale(0);
    border-radius: var(--radius-md);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 0;
}

.service-icon i { position: relative; z-index: 1; transition: var(--transition); }

.service-card:hover .service-icon::before { transform: scale(1); }
.service-card:hover .service-icon { color: var(--ivory); border-color: var(--bronze-dark); }
.service-card:hover .service-icon i { transform: rotateY(180deg); }

.service-card.placeholder {
    border-style: dashed;
    border-color: var(--border-soft);
    background: var(--cream);
    align-items: center;
    text-align: center;
    justify-content: center;
    padding: 50px 36px;
}

.service-card.placeholder .service-icon {
    background: var(--ivory);
    border-color: var(--text-muted);
    color: var(--text-muted);
    margin: 0 auto 24px;
}

.service-card.placeholder .service-title,
.service-card.placeholder .service-description { text-align: center; }

.service-title {
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 16px;
    line-height: 1.4;
}

.service-card-body {
    padding: 0 36px 36px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-description {
    color: var(--text-soft);
    line-height: 1.9;
    margin-bottom: 28px;
    font-size: 0.98rem;
    flex-grow: 1;
}

.service-stages {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 30px;
    padding: 24px;
    background: var(--cream);
    border-radius: var(--radius-md);
    border-right: 3px solid var(--bronze);
}

.stage {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--navy);
    font-weight: 600;
    font-size: 0.94rem;
    transition: var(--transition);
}

.stage:hover { transform: translateX(-4px); }

.stage-num {
    width: 32px;
    height: 32px;
    background: var(--navy);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 800;
    flex-shrink: 0;
    transition: var(--transition);
}

.stage:hover .stage-num {
    background: var(--bronze);
    color: var(--ivory);
    transform: scale(1.1);
}

.service-price {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
    color: var(--ivory);
    padding: 30px;
    border-radius: var(--radius-md);
    text-align: center;
    margin-bottom: 26px;
    position: relative;
    overflow: hidden;
}

.service-price::before {
    content: '';
    position: absolute;
    top: -40px;
    left: -40px;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, var(--bronze) 0%, transparent 70%);
    opacity: 0.4;
    animation: float 6s ease-in-out infinite;
}

.service-price::after {
    content: '';
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
    opacity: 0.2;
}

.price-label {
    display: block;
    font-size: 0.82rem;
    color: rgba(254, 253, 250, 0.7);
    margin-bottom: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
}

.price-value {
    display: block;
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
    position: relative;
}

.price-value small {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ivory);
    margin-right: 6px;
}

.price-note {
    font-size: 0.85rem;
    color: rgba(254, 253, 250, 0.7);
    position: relative;
}

.service-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: auto;
}

.service-actions .btn {
    flex: 1;
    min-width: 140px;
    padding: 14px 20px;
    font-size: 0.92rem;
}

/* ===== شريط CTA ===== */
.cta-banner {
    background: var(--navy);
    color: var(--ivory);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 80% 50%, rgba(139, 90, 43, 0.25) 0%, transparent 60%),
        radial-gradient(ellipse at 20% 50%, rgba(201, 169, 97, 0.15) 0%, transparent 60%);
    animation: ctaGlow 10s ease-in-out infinite alternate;
}

@keyframes ctaGlow {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-30px, 20px); }
}

.cta-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.5;
    animation: patternMove 50s linear infinite;
}

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

.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 800;
    margin-bottom: 18px;
    line-height: 1.4;
    color: var(--ivory);
    letter-spacing: -0.5px;
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(254, 253, 250, 0.78);
    margin-bottom: 36px;
    line-height: 1.8;
}

/* ===== قسم طاقم العمل - تصميم احترافي متقدم ===== */
.team {
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.team::before {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 90, 43, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 18s ease-in-out infinite;
}

.team::after {
    content: '';
    position: absolute;
    top: 100px;
    left: -100px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 22s ease-in-out infinite reverse;
}

/* إحصائيات الفريق */
.team-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 70px;
    padding: 30px;
    background: var(--ivory);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-soft);
    position: relative;
}

.team-stat {
    text-align: center;
    padding: 20px 16px;
    border-left: 1px solid var(--border-soft);
    transition: var(--transition);
}

.team-stat:last-child { border-left: none; }

.team-stat:hover { transform: translateY(-4px); }

.team-stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--bronze);
    line-height: 1;
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--bronze) 0%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.team-stat-label {
    font-size: 0.92rem;
    color: var(--text-soft);
    font-weight: 600;
}

/* فلاتر التخصصات */
.team-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 50px;
}

.team-filter {
    padding: 10px 22px;
    background: var(--ivory);
    border: 1.5px solid var(--border-soft);
    color: var(--text-soft);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.team-filter:hover {
    border-color: var(--bronze);
    color: var(--bronze);
    transform: translateY(-2px);
}

.team-filter.active {
    background: var(--bronze);
    border-color: var(--bronze);
    color: var(--ivory);
    box-shadow: var(--shadow-bronze);
}

/* الشبكة الأساسية */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.team-grid.team-grid-4 {
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}

/* البطاقة الاحترافية */
.team-card {
    background: var(--ivory);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-soft);
    transition: var(--transition-slow);
    position: relative;
    display: flex;
    flex-direction: column;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--bronze) 0%, var(--gold) 50%, var(--bronze) 100%);
    transform: scaleX(0);
    transition: transform 0.5s ease;
    transform-origin: right;
    z-index: 5;
}

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

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

/* الصورة */
.team-image {
    aspect-ratio: 4/4.5;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
    position: relative;
    overflow: hidden;
}

.team-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 7rem;
    transition: var(--transition-slow);
}

.team-card:hover .team-placeholder {
    transform: scale(1.1);
}

.team-placeholder i {
    color: var(--gold);
    opacity: 0.85;
    filter: drop-shadow(0 8px 16px rgba(0,0,0,0.3));
}

.team-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 25px 25px;
}

.team-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(13, 27, 42, 0.85) 100%);
    opacity: 0.8;
    transition: var(--transition);
}

.team-card:hover .team-image::after { opacity: 1; }

/* Badge للتخصص */
.team-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--gold);
    color: var(--navy);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 800;
    z-index: 3;
    box-shadow: 0 4px 12px rgba(201, 169, 97, 0.4);
    backdrop-filter: blur(10px);
}

/* اسم وأوسمة على الصورة */
.team-overlay {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    padding: 20px;
    z-index: 2;
    color: var(--ivory);
    transform: translateY(20px);
    opacity: 0.85;
    transition: var(--transition);
}

.team-card:hover .team-overlay {
    transform: translateY(0);
    opacity: 1;
}

.team-overlay-name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.team-overlay-role {
    font-size: 0.85rem;
    color: var(--gold-light);
    font-weight: 600;
}

/* روابط اجتماعية على الصورة */
.team-social {
    position: absolute;
    bottom: -60px;
    left: 16px;
    display: flex;
    gap: 8px;
    z-index: 4;
    transition: bottom 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.team-card:hover .team-social { bottom: 16px; }

.team-social a {
    width: 38px;
    height: 38px;
    background: var(--ivory);
    color: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transition: var(--transition);
    transform: scale(0);
}

.team-card:hover .team-social a { transform: scale(1); }
.team-card:hover .team-social a:nth-child(1) { transition-delay: 0.1s; }
.team-card:hover .team-social a:nth-child(2) { transition-delay: 0.18s; }
.team-card:hover .team-social a:nth-child(3) { transition-delay: 0.26s; }

.team-social a:hover {
    background: var(--bronze);
    color: var(--ivory);
    transform: scale(1.15) !important;
}

/* محتوى البطاقة */
.team-info {
    padding: 26px 24px 28px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.team-role {
    display: inline-block;
    color: var(--bronze);
    font-size: 0.78rem;
    font-weight: 700;
    margin-bottom: 8px;
    padding: 4px 12px;
    background: rgba(139, 90, 43, 0.1);
    border-radius: 50px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    align-self: flex-start;
}

.team-name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 14px;
    transition: color 0.3s ease;
}

.team-card:hover .team-name { color: var(--bronze); }

.team-bio {
    color: var(--text-soft);
    font-size: 0.92rem;
    line-height: 1.75;
    margin-bottom: 18px;
}

/* شريط معلومات */
.team-meta {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
    padding: 14px;
    background: var(--cream);
    border-radius: var(--radius-md);
    border-right: 3px solid var(--bronze);
}

.team-meta-item {
    flex: 1;
    text-align: center;
}

.team-meta-num {
    display: block;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--bronze);
    line-height: 1;
    margin-bottom: 4px;
}

.team-meta-label {
    font-size: 0.78rem;
    color: var(--text-soft);
    font-weight: 600;
}

.team-meta-divider {
    width: 1px;
    background: var(--border-soft);
}

/* تخصصات/مهارات */
.team-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}

.team-skill {
    padding: 4px 10px;
    background: var(--cream);
    color: var(--navy);
    font-size: 0.78rem;
    font-weight: 600;
    border-radius: 4px;
    border: 1px solid var(--border-soft);
    transition: var(--transition);
}

.team-skill:hover {
    background: var(--bronze);
    color: var(--ivory);
    border-color: var(--bronze);
}

/* زر تواصل */
.team-cta {
    margin-top: auto;
    padding: 12px 18px;
    background: var(--cream);
    color: var(--navy);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 700;
    text-align: center;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.team-cta:hover {
    background: var(--bronze);
    color: var(--ivory);
    border-color: var(--bronze);
    transform: translateY(-2px);
    box-shadow: var(--shadow-bronze);
}

/* قسم انضم لفريقنا */
.team-join {
    margin-top: 80px;
    padding: 60px 50px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
    border-radius: var(--radius-lg);
    color: var(--ivory);
    position: relative;
    overflow: hidden;
}

.team-join::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--bronze) 0%, transparent 70%);
    opacity: 0.25;
    animation: float 8s ease-in-out infinite;
}

.team-join-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
}

.team-join-content h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 14px;
    color: var(--ivory);
}

.team-join-content p {
    color: rgba(254, 253, 250, 0.78);
    line-height: 1.85;
    font-size: 1rem;
}

.team-join-actions {
    text-align: center;
}

/* ===== Page Header للصفحات الفرعية ===== */
.page-hero {
    position: relative;
    padding: 180px 0 90px;
    background: var(--navy);
    color: var(--ivory);
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(at 20% 30%, rgba(139, 90, 43, 0.25) 0%, transparent 50%),
        radial-gradient(at 80% 70%, rgba(201, 169, 97, 0.15) 0%, transparent 50%);
    animation: meshShift 18s ease-in-out infinite alternate;
}

.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
    animation: patternMove 60s linear infinite;
}

.page-hero > .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(201, 169, 97, 0.12);
    color: var(--gold-light);
    border: 1px solid rgba(201, 169, 97, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 18px;
}

.page-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 800;
    margin-bottom: 18px;
    line-height: 1.25;
    letter-spacing: -0.5px;
}

.page-hero-subtitle {
    font-size: 1.15rem;
    color: rgba(254, 253, 250, 0.78);
    line-height: 1.75;
    max-width: 700px;
    margin: 0 auto;
}

.page-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
    font-size: 0.9rem;
    flex-wrap: wrap;
}

.page-breadcrumb a {
    color: rgba(254, 253, 250, 0.65);
}

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

.page-breadcrumb .separator {
    color: rgba(254, 253, 250, 0.35);
    font-size: 0.7rem;
}

.page-breadcrumb .current { color: var(--gold); font-weight: 600; }

/* ===== قسم التواصل ===== */
.contact {
    background: var(--ivory);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 14s ease-in-out infinite;
}

.contact-grid {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 40px;
    align-items: stretch;
}

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

.contact-info::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, var(--bronze) 0%, transparent 70%);
    opacity: 0.25;
    animation: float 8s ease-in-out infinite;
}

.contact-info::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
    opacity: 0.15;
    animation: float 10s ease-in-out infinite reverse;
}

.contact-info > * { position: relative; }

.contact-info h3 {
    font-family: var(--font-display);
    font-size: 1.7rem;
    font-weight: 800;
    margin-bottom: 14px;
    color: var(--ivory);
}

.contact-info-text {
    color: rgba(254, 253, 250, 0.78);
    line-height: 1.85;
    margin-bottom: 32px;
    font-size: 0.98rem;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
}

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

.contact-item:not(.static):hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--bronze);
    transform: translateX(-6px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--bronze);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ivory);
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-item:hover .contact-icon {
    transform: rotate(360deg);
    background: var(--gold-dark);
}

.contact-item h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--ivory);
}

.contact-item span {
    font-size: 0.88rem;
    color: rgba(254, 253, 250, 0.65);
    line-height: 1.5;
}

.contact-cta-box {
    padding: 22px;
    background: rgba(201, 169, 97, 0.12);
    border: 1px solid rgba(201, 169, 97, 0.3);
    border-radius: var(--radius-md);
}

.contact-cta-box h4 {
    color: var(--gold);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-cta-box p {
    font-size: 0.92rem;
    color: rgba(254, 253, 250, 0.78);
    line-height: 1.7;
}

/* نموذج التواصل */
.contact-form-wrapper {
    background: var(--ivory);
    padding: 50px 44px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-soft);
}

.contact-form h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 8px;
}

.contact-form-subtitle {
    color: var(--text-soft);
    margin-bottom: 32px;
    font-size: 0.95rem;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--border-soft);
}

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

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

.form-group label {
    display: block;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}

.required { color: var(--bronze); }

.input-wrapper { position: relative; }

.input-icon {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 1rem;
    pointer-events: none;
    transition: var(--transition);
}

.textarea-wrapper .input-icon { top: 20px; transform: none; }

.input-wrapper input,
.input-wrapper textarea {
    width: 100%;
    padding: 16px 50px 16px 18px;
    border: 1.5px solid var(--border-soft);
    border-radius: var(--radius-md);
    background: var(--cream);
    transition: var(--transition);
    line-height: 1.6;
    font-size: 0.98rem;
}

.input-wrapper textarea { resize: vertical; min-height: 130px; }

.input-wrapper input:focus,
.input-wrapper textarea:focus {
    outline: none;
    border-color: var(--bronze);
    background: var(--ivory);
    box-shadow: 0 0 0 4px rgba(139, 90, 43, 0.1);
}

.input-wrapper input:focus ~ .input-icon,
.input-wrapper textarea:focus ~ .input-icon {
    color: var(--bronze);
    transform: translateY(-50%) scale(1.1);
}

.textarea-wrapper input:focus ~ .input-icon,
.textarea-wrapper textarea:focus ~ .input-icon {
    transform: scale(1.1);
}

.error-message {
    display: block;
    color: #c0392b;
    font-size: 0.85rem;
    margin-top: 6px;
    min-height: 1em;
}

.input-wrapper.has-error input,
.input-wrapper.has-error textarea {
    border-color: #c0392b;
    background: #fef5f4;
    animation: shake 0.4s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(6px); }
    75% { transform: translateX(-6px); }
}

.success-message {
    display: none;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
    padding: 22px;
    background: #ecfdf5;
    border: 2px solid #10b981;
    border-radius: var(--radius-md);
    color: #065f46;
}

.success-message.show {
    display: flex;
    animation: successPop 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.success-icon {
    font-size: 2.4rem;
    color: #10b981;
    flex-shrink: 0;
    animation: successCheck 0.7s ease;
}

@keyframes successPop {
    0% { opacity: 0; transform: scale(0.8) translateY(20px); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes successCheck {
    0% { transform: scale(0) rotate(-180deg); }
    60% { transform: scale(1.2) rotate(20deg); }
    100% { transform: scale(1) rotate(0); }
}

.success-message h4 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.success-message p {
    font-size: 0.92rem;
    color: #047857;
}

/* ===== التذييل Footer ===== */
.footer {
    background: var(--navy-deep);
    color: rgba(254, 253, 250, 0.75);
    padding: 90px 0 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--bronze) 0%, var(--gold) 50%, var(--bronze) 100%);
    background-size: 200% 100%;
    animation: gradientShift 5s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 50px;
    padding-bottom: 60px;
    position: relative;
}

.footer-logo-wrap {
    display: inline-block;
    margin-bottom: 22px;
    transition: var(--transition);
}

.footer-logo-wrap:hover {
    transform: translateY(-3px);
}

.footer-logo-img {
    height: 80px;
    width: auto;
    display: block;
    transition: var(--transition);
    filter: drop-shadow(0 4px 12px rgba(201, 169, 97, 0.2));
}

.footer-about {
    color: rgba(254, 253, 250, 0.65);
    line-height: 1.9;
    font-size: 0.95rem;
}

.footer-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--ivory);
    margin-bottom: 26px;
    position: relative;
    padding-bottom: 14px;
}

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

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

.footer-links a,
.footer-contact a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(254, 253, 250, 0.65);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--gold);
    transform: translateX(-6px);
}

.footer-links i {
    font-size: 0.7rem;
    color: var(--bronze);
    transition: var(--transition);
}

.footer-links a:hover i {
    transform: translateX(-3px);
    color: var(--gold);
}

.footer-contact i {
    color: var(--bronze);
    width: 18px;
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 22px;
}

.footer-socials a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(254, 253, 250, 0.7);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.footer-socials a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--bronze);
    transform: scale(0);
    border-radius: 50%;
    transition: transform 0.4s ease;
}

.footer-socials a i { position: relative; z-index: 1; transition: var(--transition); }

.footer-socials a:hover {
    color: var(--ivory);
    border-color: var(--bronze);
    transform: translateY(-4px);
}

.footer-socials a:hover::before { transform: scale(1.5); }
.footer-socials a:hover i { transform: rotate(360deg); }

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

.footer-bottom p {
    font-size: 0.92rem;
    color: rgba(254, 253, 250, 0.55);
}

.footer-bottom strong { color: var(--gold); }

.footer-bottom-sub {
    font-size: 0.82rem !important;
    color: rgba(254, 253, 250, 0.4) !important;
    margin-top: 6px;
}

/* ===== زر العودة للأعلى ===== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 52px;
    height: 52px;
    background: var(--bronze);
    color: var(--ivory);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: var(--shadow-bronze);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px) scale(0.8);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.scroll-top:hover {
    background: var(--bronze-dark);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 14px 35px rgba(139, 90, 43, 0.45);
}

/* ===== صفحة تفاصيل الخدمة ===== */
.page-header {
    background: var(--navy);
    color: var(--ivory);
    padding: 180px 0 70px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 80% 50%, rgba(139, 90, 43, 0.25) 0%, transparent 60%),
        radial-gradient(ellipse at 20% 50%, rgba(201, 169, 97, 0.12) 0%, transparent 60%);
    animation: ctaGlow 12s ease-in-out infinite alternate;
}

.page-header-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.5;
    animation: patternMove 50s linear infinite;
}

.page-header > .container { position: relative; }

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    font-size: 0.9rem;
    flex-wrap: wrap;
}

.breadcrumb a { color: rgba(254, 253, 250, 0.65); }
.breadcrumb a:hover { color: var(--gold); }

.breadcrumb .separator {
    color: rgba(254, 253, 250, 0.35);
    font-size: 0.7rem;
}

.breadcrumb .current { color: var(--gold); font-weight: 600; }

.page-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 800;
    margin-bottom: 14px;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.page-subtitle {
    font-size: 1.1rem;
    color: rgba(254, 253, 250, 0.78);
    line-height: 1.75;
    max-width: 700px;
}

.service-details { background: var(--cream); }

.service-details-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: flex-start;
}

.service-detail-card {
    background: var(--ivory);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.service-detail-header {
    padding: 40px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
    color: var(--ivory);
    display: flex;
    align-items: center;
    gap: 26px;
    position: relative;
    overflow: hidden;
}

.service-detail-header::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--bronze) 0%, transparent 70%);
    opacity: 0.3;
    animation: float 8s ease-in-out infinite;
}

.service-detail-header > * { position: relative; }

.service-detail-icon {
    width: 90px;
    height: 90px;
    background: var(--bronze);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ivory);
    font-size: 2.3rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
    animation: iconFloat 4s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(5deg); }
}

.service-tag-small {
    display: inline-block;
    background: rgba(201, 169, 97, 0.2);
    color: var(--gold-light);
    padding: 5px 16px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 0.3px;
}

.service-detail-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    font-weight: 800;
    line-height: 1.4;
}

.service-detail-body { padding: 44px 40px; }

.service-detail-body p {
    color: var(--text-soft);
    line-height: 1.95;
    margin-bottom: 18px;
    font-size: 1rem;
}

.block-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--navy);
    margin: 36px 0 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding-right: 16px;
    border-right: 3px solid var(--bronze);
}

.block-title i { color: var(--bronze); }

.stages-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 20px;
}

.stage-detail {
    display: flex;
    gap: 22px;
    padding: 24px;
    background: var(--cream);
    border-radius: var(--radius-md);
    border-right: 3px solid var(--bronze);
    transition: var(--transition);
}

.stage-detail:hover {
    background: var(--cream-dark);
    transform: translateX(-6px);
    box-shadow: var(--shadow-sm);
}

.stage-detail-num {
    width: 54px;
    height: 54px;
    background: var(--navy);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 800;
    flex-shrink: 0;
    transition: var(--transition);
}

.stage-detail:hover .stage-detail-num {
    background: var(--bronze);
    color: var(--ivory);
    transform: rotateY(180deg);
}

.stage-detail-content h4 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 8px;
}

.stage-detail-content p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.payment-stages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.payment-card {
    padding: 24px;
    background: var(--cream);
    border-radius: var(--radius-md);
    border-top: 3px solid var(--bronze);
    transition: var(--transition);
}

.payment-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-sm);
}

.payment-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px dashed var(--border-soft);
}

.payment-step {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text-soft);
}

.payment-amount {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--bronze);
}

.payment-amount small {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-soft);
    margin-right: 4px;
}

.payment-card p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.info-box {
    display: flex;
    gap: 16px;
    padding: 22px 24px;
    background: rgba(139, 90, 43, 0.07);
    border-right: 3px solid var(--bronze);
    border-radius: var(--radius-md);
    margin: 24px 0;
}

.info-box i {
    font-size: 1.5rem;
    color: var(--bronze);
    flex-shrink: 0;
    margin-top: 4px;
}

.info-box strong {
    display: block;
    color: var(--navy);
    margin-bottom: 4px;
    font-size: 1rem;
}

.info-box span {
    color: var(--text-soft);
    font-size: 0.95rem;
    line-height: 1.7;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 14px;
    margin: 16px 0;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text);
    font-size: 0.96rem;
    line-height: 1.6;
    transition: var(--transition);
}

.features-list li:hover { transform: translateX(-4px); }

.features-list li i {
    color: var(--bronze);
    background: rgba(139, 90, 43, 0.1);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.features-list li:hover i {
    background: var(--bronze);
    color: var(--ivory);
    transform: scale(1.15);
}

.service-sidebar {
    display: flex;
    flex-direction: column;
    gap: 22px;
    position: sticky;
    top: 110px;
}

.sidebar-card {
    background: var(--ivory);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-soft);
    transition: var(--transition);
}

.sidebar-card:hover { box-shadow: var(--shadow-md); }

.sidebar-card h3,
.sidebar-card h4 {
    color: var(--navy);
    font-weight: 800;
    font-family: var(--font-display);
}

.price-card {
    border-top: 3px solid var(--bronze);
    text-align: center;
}

.price-card h3 {
    font-size: 1.2rem;
    margin-bottom: 18px;
}

.price-big {
    font-family: var(--font-display);
    font-size: 3.4rem;
    font-weight: 800;
    color: var(--bronze);
    line-height: 1;
    margin-bottom: 6px;
    background: linear-gradient(135deg, var(--bronze) 0%, var(--bronze-light) 50%, var(--bronze-dark) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.price-big small {
    display: block;
    font-size: 0.95rem;
    color: var(--text-soft);
    font-weight: 600;
    margin-top: 8px;
    font-family: var(--font-arabic);
    -webkit-text-fill-color: var(--text-soft);
}

.price-desc {
    color: var(--text-soft);
    font-size: 0.92rem;
    margin-bottom: 22px;
}

.price-card hr {
    border: none;
    border-top: 1px dashed var(--border-soft);
    margin: 22px 0;
}

.sidebar-list {
    margin-bottom: 26px;
    text-align: right;
}

.sidebar-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 0;
    font-size: 0.95rem;
    color: var(--text);
    border-bottom: 1px dashed var(--border-soft);
}

.sidebar-list li:last-child { border-bottom: none; }
.sidebar-list li i { color: var(--bronze); font-size: 0.8rem; }

.help-card {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
    color: var(--ivory);
    text-align: center;
    border: none;
    position: relative;
    overflow: hidden;
}

.help-card::before {
    content: '';
    position: absolute;
    top: -60px;
    left: -60px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, var(--bronze) 0%, transparent 70%);
    opacity: 0.3;
    animation: float 8s ease-in-out infinite;
}

.help-card > * { position: relative; }

.help-card h4 {
    color: var(--ivory);
    font-size: 1.18rem;
    margin: 14px 0 8px;
}

.help-card p {
    color: rgba(254, 253, 250, 0.78);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.help-icon {
    width: 64px;
    height: 64px;
    background: rgba(201, 169, 97, 0.18);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    margin: 0 auto;
    animation: iconPulse 2.5s ease-in-out infinite;
}

.help-card .btn-outline-navy {
    background: transparent;
    color: var(--ivory);
    border-color: var(--gold);
}

.help-card .btn-outline-navy:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
}

/* ===== أنيميشن العناصر عند ظهورها ===== */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
    transition-duration: 0.9s;
    transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-aos="fade-up"] { transform: translateY(40px); }
[data-aos="fade-down"] { transform: translateY(-40px); }
[data-aos="fade-right"] { transform: translateX(-40px); }
[data-aos="fade-left"] { transform: translateX(40px); }
[data-aos="zoom-in"] { transform: scale(0.85); }
[data-aos="zoom-out"] { transform: scale(1.15); }
[data-aos="flip-up"] { transform: perspective(1000px) rotateX(-30deg); }

[data-aos].aos-animate {
    opacity: 1;
    transform: translate(0) scale(1) rotateX(0);
}

[data-aos-delay="100"] { transition-delay: 0.1s; }
[data-aos-delay="200"] { transition-delay: 0.2s; }
[data-aos-delay="300"] { transition-delay: 0.3s; }
[data-aos-delay="400"] { transition-delay: 0.4s; }
[data-aos-delay="500"] { transition-delay: 0.5s; }
[data-aos-delay="600"] { transition-delay: 0.6s; }

/* Reveal animations القديمة */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============== Responsive ============== */
@media (max-width: 1024px) {
    .section { padding: 90px 0; }
    .section-header { margin-bottom: 60px; }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-stats-side { flex-direction: row; min-width: 0; }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-visual { min-height: 380px; }

    .vm-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }

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

    .team-grid { grid-template-columns: repeat(2, 1fr); }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-details-grid { grid-template-columns: 1fr; }

    .service-sidebar {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .sidebar-card { flex: 1; min-width: 280px; }

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

@media (max-width: 768px) {
    .container { padding: 0 20px; }
    .section { padding: 70px 0; }
    .section-header { margin-bottom: 50px; }

    .menu-toggle { display: flex; }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 88%;
        max-width: 380px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 110px 32px 32px;
        box-shadow: -10px 0 40px rgba(13, 27, 42, 0.12);
        transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        overflow-y: auto;
    }

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

    .nav-link {
        width: 100%;
        padding: 16px 0;
        border-bottom: 1px solid var(--border-soft);
        font-size: 1.05rem;
        opacity: 0;
        transform: translateX(-20px);
        transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s ease;
    }

    .nav-menu.active .nav-link {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-menu.active .nav-link:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu.active .nav-link:nth-child(2) { transition-delay: 0.15s; }
    .nav-menu.active .nav-link:nth-child(3) { transition-delay: 0.2s; }
    .nav-menu.active .nav-link:nth-child(4) { transition-delay: 0.25s; }
    .nav-menu.active .nav-link:nth-child(5) { transition-delay: 0.3s; }
    .nav-menu.active .nav-link:nth-child(6) { transition-delay: 0.35s; }

    .nav-link::after { display: none; }

    .nav-cta {
        margin: 24px 0 0;
        width: 100%;
        justify-content: center;
        opacity: 0;
        transform: translateX(-20px);
        transition: opacity 0.3s ease 0.45s, transform 0.3s ease 0.45s;
    }

    .nav-menu.active .nav-cta {
        opacity: 1;
        transform: translateX(0);
    }

    .logo-img { height: 50px; }
    .navbar.scrolled .logo-img { height: 44px; }

    .hero { padding-top: 110px; min-height: auto; padding-bottom: 70px; }
    .hero-buttons { flex-direction: column; align-items: stretch; }
    .hero-buttons .btn { justify-content: center; }
    .hero-stats-side { flex-direction: column; }
    .hero-scroll { display: none; }

    .about-features { grid-template-columns: 1fr; }

    .vm-card { padding: 36px 26px; }

    .service-card-header,
    .service-card-body { padding-left: 26px; padding-right: 26px; }
    .service-card-header { padding-top: 32px; }
    .service-card.placeholder { padding: 40px 26px; }

    .service-actions { flex-direction: column; }
    .service-actions .btn { width: 100%; }

    .team-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }

    .contact-info,
    .contact-form-wrapper { padding: 32px 26px; }

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

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

    .footer { padding-top: 70px; }

    .service-detail-header {
        flex-direction: column;
        text-align: center;
        padding: 32px 26px;
    }

    .service-detail-body { padding: 32px 26px; }

    .stage-detail { flex-direction: column; text-align: center; gap: 16px; }
    .stage-detail-num { margin: 0 auto; }

    .scroll-top { width: 46px; height: 46px; bottom: 20px; left: 20px; }

    .section-tag::before,
    .section-tag::after { width: 24px; margin: 0 10px; }

    .visual-badge {
        position: static;
        margin-top: 20px;
        justify-content: center;
    }

    .visual-decor-1, .visual-decor-2 { display: none; }

    .preloader-bar { width: 160px; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .section { padding: 60px 0; }

    .hero-tag { font-size: 0.8rem; padding: 8px 16px; }
    .btn { padding: 14px 26px; font-size: 0.92rem; }
    .btn-lg { padding: 16px 32px; font-size: 0.98rem; }

    .price-value { font-size: 2rem; }
    .price-big { font-size: 2.6rem; }
    .visual-icon { font-size: 6rem; }

    .service-detail-icon { width: 70px; height: 70px; font-size: 1.7rem; }
}

/* ==========================================================
   تحسينات بصرية احترافية إضافية
   ========================================================== */

/* ===== Custom Cursor (هادئ وخفيف) ===== */
.cursor-follower,
.cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 99998;
    transition: transform 0.2s ease, opacity 0.3s ease, width 0.4s ease, height 0.4s ease, background 0.4s ease, border-color 0.4s ease;
}

.cursor-follower {
    width: 28px;
    height: 28px;
    border: 1px solid rgba(201, 169, 97, 0.6);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.7;
}

.cursor-dot {
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.7;
}

.cursor-follower.hover {
    width: 40px;
    height: 40px;
    background: rgba(201, 169, 97, 0.06);
    border-color: rgba(201, 169, 97, 0.7);
    opacity: 0.9;
}

.cursor-follower.click {
    width: 22px;
    height: 22px;
    background: rgba(201, 169, 97, 0.5);
}

.cursor-follower.text {
    width: 50px;
    height: 50px;
    background: rgba(201, 169, 97, 0.06);
    border-color: rgba(201, 169, 97, 0.3);
    opacity: 0.6;
}

.cursor-dot.hidden,
.cursor-follower.hidden {
    opacity: 0;
}

@media (max-width: 1024px), (pointer: coarse) {
    .cursor-follower, .cursor-dot { display: none; }
}

/* ===== Page Transition ===== */
.page-transition {
    position: fixed;
    inset: 0;
    z-index: 99999;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
}

.page-transition::before,
.page-transition::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 50%;
    background: var(--navy);
    transition: transform 0.7s cubic-bezier(0.76, 0, 0.24, 1);
}

.page-transition::before {
    top: 0;
    transform: translateY(-100%);
}

.page-transition::after {
    bottom: 0;
    transform: translateY(100%);
}

.page-transition .pt-logo {
    position: relative;
    z-index: 2;
    height: 70px;
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.4s ease 0.3s, transform 0.5s ease 0.3s;
    filter: drop-shadow(0 4px 12px rgba(201, 169, 97, 0.4));
}

.page-transition.active {
    visibility: visible;
    pointer-events: all;
}

.page-transition.active::before { transform: translateY(0); }
.page-transition.active::after { transform: translateY(0); }
.page-transition.active .pt-logo { opacity: 1; transform: scale(1); }

/* ===== WhatsApp Floating Button ===== */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    z-index: 998;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    animation: whatsappPulse 2.5s ease-in-out infinite;
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, 0.5);
    animation: whatsappRing 2.5s ease-out infinite;
}

.whatsapp-float::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, 0.4);
    animation: whatsappRing 2.5s ease-out infinite 1s;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(-8deg);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
}

.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--navy);
    color: var(--ivory);
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, right 0.3s ease;
    box-shadow: var(--shadow-md);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 6px solid var(--navy);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    right: 80px;
}

@keyframes whatsappPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.06); }
}

@keyframes whatsappRing {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* ===== Image / Card Reveal Effect ===== */
.reveal-img {
    position: relative;
    overflow: hidden;
}

.reveal-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--bronze);
    transform: scaleX(1);
    transform-origin: left;
    transition: transform 1s cubic-bezier(0.76, 0, 0.24, 1);
    z-index: 2;
}

.reveal-img.revealed::before {
    transform: scaleX(0);
    transform-origin: right;
}

/* ===== Split Text Reveal ===== */
.split-text {
    overflow: hidden;
    display: inline-block;
}

.split-text > span {
    display: inline-block;
    transform: translateY(120%);
    opacity: 0;
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1), opacity 1s ease;
}

.split-text.visible > span {
    transform: translateY(0);
    opacity: 1;
}

/* ===== Glow on hover للأزرار المهمة ===== */
.btn-bronze,
.btn-gold {
    position: relative;
}

.btn-bronze::after,
.btn-gold::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: inherit;
    background: inherit;
    filter: blur(15px);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -2;
}

.btn-bronze:hover::after,
.btn-gold:hover::after {
    opacity: 0.5;
}

/* ===== Section dividers - SVG style ===== */
.section-divider-svg {
    position: relative;
    height: 60px;
    overflow: hidden;
    margin-top: -1px;
}

.section-divider-svg svg {
    position: absolute;
    width: 100%;
    height: 100%;
}

/* ===== Hero badges المحسّنة ===== */
.hero-badges {
    position: absolute;
    bottom: 100px;
    right: 5%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 2;
    pointer-events: none;
}

.hero-badge-item {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(201, 169, 97, 0.25);
    backdrop-filter: blur(10px);
    padding: 12px 18px;
    border-radius: 50px;
    color: var(--ivory);
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    pointer-events: auto;
    animation: floatSide 6s ease-in-out infinite;
}

.hero-badge-item:nth-child(2) { animation-delay: 1.5s; }
.hero-badge-item:nth-child(3) { animation-delay: 3s; }

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

@keyframes floatSide {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-12px); }
}

/* ===== تحسينات Hover سينمائية على الكروت ===== */
.service-card,
.team-card,
.vm-pro {
    will-change: transform;
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 30%, rgba(201, 169, 97, 0.04) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    border-radius: inherit;
}

.service-card:hover::after { opacity: 1; }

/* ===== Spotlight cursor effect على القسم البطل ===== */
.hero {
    --mouse-x: 50%;
    --mouse-y: 50%;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle 400px at var(--mouse-x) var(--mouse-y), rgba(201, 169, 97, 0.1), transparent 80%);
    pointer-events: none;
    z-index: 1;
    transition: opacity 0.3s ease;
}

/* ===== تحسين smooth scroll مع Lenis ===== */
html.lenis {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

/* ===== Floating action buttons stack ===== */
.scroll-top { bottom: 30px; }

@media (max-width: 768px) {
    .whatsapp-float {
        width: 52px;
        height: 52px;
        bottom: 80px;
        left: 16px;
        font-size: 1.4rem;
    }
    .scroll-top { bottom: 20px; }
}

/* ===== Hero text gradient عند الكتابة ===== */
.hero-title-line {
    display: inline-block;
    overflow: hidden;
}

.hero-title-line > span {
    display: inline-block;
    animation: heroSlideUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    transform: translateY(110%);
    opacity: 0;
}

.hero-title-line:nth-child(1) > span { animation-delay: 0.4s; }
.hero-title-line:nth-child(2) > span { animation-delay: 0.6s; }

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

/* ==========================================================
   الصور القانونية الاحترافية
   ========================================================== */

/* روابط الصور القانونية - قابلة للاستبدال بصور الشركة الحقيقية */
:root {
    /* مطرقة قاضي على كتب قانونية - مثالي للمحاماة */
    --img-hero: url('https://images.unsplash.com/photo-1505664063603-28e48ca204eb?w=1920&q=80&fm=jpg&fit=crop&auto=format');

    /* تمثال العدل وميزان - رمز المحاماة */
    --img-about: url('https://images.unsplash.com/photo-1505664194779-8beaceb93744?w=1200&q=80&fm=jpg&fit=crop&auto=format');

    /* مكتبة قانونية - كتب وأحكام */
    --img-service: url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?w=1200&q=80&fm=jpg&fit=crop&auto=format');

    /* تمثال العدالة الكلاسيكي - CTA */
    --img-cta: url('https://images.unsplash.com/photo-1589216532372-1c2a367900d9?w=1920&q=80&fm=jpg&fit=crop&auto=format');

    /* مصافحة محامين - رمز الاتفاق والثقة - صفحة الفريق */
    --img-team: url('https://images.unsplash.com/photo-1521791136064-7986c2920216?w=1920&q=80&fm=jpg&fit=crop&auto=format');

    /* كتب قانونية قديمة بإضاءة فاخرة - صفحة التواصل */
    --img-contact: url('https://images.unsplash.com/photo-1532012197267-da84d127e765?w=1920&q=80&fm=jpg&fit=crop&auto=format');

    /* مطرقة قاضي بإضاءة دراماتيكية - صفحة الخدمات */
    --img-services-page: url('https://images.unsplash.com/photo-1505664063603-28e48ca204eb?w=1920&q=80&fm=jpg&fit=crop&auto=format');

    /* تمثال العدالة الكلاسيكي - صفحة من نحن */
    --img-about-page: url('https://images.unsplash.com/photo-1589216532372-1c2a367900d9?w=1920&q=80&fm=jpg&fit=crop&auto=format');
}

/* ===== صورة خلفية Hero ===== */
.hero-image-bg {
    position: absolute;
    inset: 0;
    background-image: var(--img-hero);
    background-size: cover;
    background-position: center;
    opacity: 0.18;
    z-index: 0;
    mix-blend-mode: luminosity;
    filter: contrast(1.1);
    pointer-events: none;
}

.hero-image-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--navy-deep) 0%, transparent 50%, var(--navy) 100%);
}

/* ===== صورة About مع إطار فاخر ===== */
.about-real-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.about-real-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-real-image:hover img {
    transform: scale(1.05);
}

.about-real-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(13, 27, 42, 0.7) 100%);
    z-index: 1;
}

.about-real-image .visual-quote {
    position: absolute;
    bottom: 30px;
    right: 30px;
    left: 30px;
    color: var(--ivory);
    z-index: 2;
}

.about-real-image .visual-badge {
    z-index: 3;
}

/* ===== صورة فوق بطاقة الخدمة ===== */
.service-card-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-top-left-radius: var(--radius-lg);
    border-top-right-radius: var(--radius-lg);
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card:hover .service-card-image img {
    transform: scale(1.08);
}

.service-card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(13, 27, 42, 0.4) 0%, rgba(13, 27, 42, 0.85) 100%);
}

.service-card-image .service-img-label {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--bronze);
    color: var(--ivory);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    z-index: 2;
    box-shadow: var(--shadow-bronze);
}

/* عند وجود صورة، نزيل الـ padding-top الأصلي للـ header */
.service-card.has-image .service-card-header {
    padding-top: 30px;
}

.service-card.has-image .service-badge {
    display: none;
}

/* ===== خلفيات صور للأقسام (CTA, Page Hero) ===== */
.cta-banner.with-image {
    background:
        linear-gradient(135deg, rgba(13, 27, 42, 0.93) 0%, rgba(6, 16, 28, 0.95) 100%),
        var(--img-cta);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.page-hero.hero-with-image,
.page-header.hero-with-image {
    background:
        linear-gradient(135deg, rgba(13, 27, 42, 0.88) 0%, rgba(6, 16, 28, 0.92) 100%),
        var(--img-page-hero, var(--img-hero));
    background-size: cover;
    background-position: center;
}

.page-hero.about-bg,
.page-header.about-bg { --img-page-hero: var(--img-about-page); }
.page-hero.services-bg,
.page-header.services-bg { --img-page-hero: var(--img-services-page); }
.page-hero.team-bg,
.page-header.team-bg { --img-page-hero: var(--img-team); }
.page-hero.contact-bg,
.page-header.contact-bg { --img-page-hero: var(--img-contact); }

/* ===== قسم معرض الصور الفاخر ===== */
.gallery-section {
    background: var(--ivory);
    position: relative;
    overflow: hidden;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 200px 200px;
    gap: 16px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(13, 27, 42, 0.85) 100%);
    opacity: 0.7;
    transition: opacity 0.4s ease;
}

.gallery-item:hover::after {
    opacity: 0.95;
}

.gallery-item-content {
    position: absolute;
    bottom: 20px;
    right: 20px;
    left: 20px;
    color: var(--ivory);
    z-index: 2;
    transform: translateY(20px);
    opacity: 0.85;
    transition: var(--transition);
}

.gallery-item:hover .gallery-item-content {
    transform: translateY(0);
    opacity: 1;
}

.gallery-item-content h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 6px;
}

.gallery-item:nth-child(1) .gallery-item-content h4 {
    font-size: 1.6rem;
}

.gallery-item-content span {
    font-size: 0.85rem;
    color: var(--gold-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .gallery-item:nth-child(1) {
        grid-column: span 2;
        grid-row: auto;
        aspect-ratio: 16/9;
    }

    .gallery-item {
        aspect-ratio: 4/3;
    }
}

@media (max-width: 568px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item:nth-child(1) { grid-column: auto; }
}

/* تعطيل الـ background-attachment fixed على الجوال */
@media (max-width: 768px) {
    .cta-banner.with-image,
    .page-hero.hero-with-image {
        background-attachment: scroll;
    }
}

/* ===== تقليل الحركة لمن يفضلون ذلك ===== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ==========================================================
   إضافات: المدونة - يوتيوب - شركاء النجاح - تعليقات العملاء
   ========================================================== */

/* ===== شارة الفئتين (أفراد وشركات) ===== */
.audience-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 22px;
}
.audience-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 10px 22px;
    background: var(--white);
    border: 1px solid var(--border-soft);
    border-radius: 50px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--navy);
    box-shadow: var(--shadow-xs);
    transition: var(--transition);
}
.audience-badge i { color: var(--bronze); font-size: 1.05rem; }
.audience-badge:hover {
    border-color: var(--bronze);
    box-shadow: var(--shadow-bronze);
    transform: translateY(-3px);
}

/* ===== شبكة المدونة ===== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.blog-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.blog-card-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}
.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}
.blog-card:hover .blog-card-image img { transform: scale(1.07); }
.blog-category {
    position: absolute;
    top: 14px;
    inset-inline-start: 14px;
    background: var(--bronze);
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.78rem;
    padding: 6px 14px;
    border-radius: 50px;
    box-shadow: var(--shadow-bronze);
}
.blog-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 24px;
}
.blog-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}
.blog-meta span { display: inline-flex; align-items: center; gap: 6px; }
.blog-meta i { color: var(--bronze); }
.blog-card-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.18rem;
    line-height: 1.5;
    color: var(--navy);
    margin-bottom: 12px;
    transition: var(--transition);
}
.blog-card:hover .blog-card-title { color: var(--bronze); }
.blog-excerpt {
    color: var(--text-soft);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 20px;
    flex: 1;
}
.blog-readmore {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--bronze);
    align-self: flex-start;
}
.blog-readmore i { transition: var(--transition); }
.blog-readmore:hover { color: var(--bronze-dark); }
.blog-readmore:hover i { transform: translateX(-5px); }

/* ===== قسم يوتيوب ===== */
.youtube-section { background: var(--navy); position: relative; overflow: hidden; }
.youtube-section .section-tag { background: rgba(255,0,0,0.14); color: #ff6b6b; }
.youtube-section .section-title,
.youtube-section .section-subtitle { color: var(--white); }
.youtube-section .section-subtitle { color: rgba(255,255,255,0.72); }
.youtube-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.video-card {
    display: flex;
    flex-direction: column;
    background: var(--navy-light);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}
.video-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255,0,0,0.5);
    box-shadow: 0 25px 50px rgba(0,0,0,0.45);
}
.video-thumb {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}
.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}
.video-card:hover .video-thumb img { transform: scale(1.08); }
.video-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13,27,42,0.6), transparent 60%);
}
.video-play {
    position: absolute;
    top: 50%;
    inset-inline-start: 50%;
    transform: translate(50%, -50%);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #ff0000;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    z-index: 2;
    box-shadow: 0 8px 24px rgba(255,0,0,0.5);
    transition: var(--transition);
}
.video-play i { margin-inline-start: -3px; }
.video-card:hover .video-play { transform: translate(50%, -50%) scale(1.12); }
.video-info {
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.video-info i { color: #ff0000; font-size: 1.4rem; flex-shrink: 0; }
.video-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.98rem;
    color: var(--white);
    line-height: 1.5;
}
.youtube-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-top: 46px;
}
.btn-youtube {
    background: #ff0000;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(255,0,0,0.35);
}
.btn-youtube:hover {
    background: #d90000;
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(255,0,0,0.45);
}
.youtube-handle {
    color: rgba(255,255,255,0.6);
    font-family: var(--font-display);
    font-size: 0.95rem;
}

/* ===== شركاء النجاح ===== */
.partners-section { background: var(--cream); }
.partners-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
}
.partner-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    aspect-ratio: 3/2;
    background: var(--white);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-md);
    color: var(--text-muted);
    box-shadow: var(--shadow-xs);
    filter: grayscale(1);
    opacity: 0.75;
    transition: var(--transition);
}
.partner-logo i { font-size: 2rem; color: var(--bronze); }
.partner-logo span { font-family: var(--font-display); font-weight: 700; font-size: 0.82rem; }
.partner-logo:hover {
    filter: grayscale(0);
    opacity: 1;
    transform: translateY(-6px);
    border-color: var(--bronze);
    box-shadow: var(--shadow-md);
}

/* ===== تعليقات العملاء ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.testimonial-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    padding: 34px 30px 28px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.testimonial-quote-icon {
    position: absolute;
    top: 22px;
    inset-inline-end: 28px;
    font-size: 2.6rem;
    color: var(--warm-gray);
    line-height: 1;
}
.testimonial-stars {
    display: flex;
    gap: 4px;
    color: var(--gold);
    margin-bottom: 16px;
    font-size: 0.95rem;
}
.testimonial-text {
    color: var(--text-soft);
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 24px;
    flex: 1;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 18px;
    border-top: 1px solid var(--border-soft);
}
.testimonial-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bronze), var(--bronze-light));
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.testimonial-name {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.02rem;
    color: var(--navy);
}
.testimonial-role { font-size: 0.85rem; color: var(--text-muted); }

/* ===== تجاوب الإضافات ===== */
@media (max-width: 992px) {
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .youtube-grid { grid-template-columns: repeat(2, 1fr); }
    .partners-grid { grid-template-columns: repeat(3, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
}
@media (max-width: 620px) {
    .blog-grid { grid-template-columns: 1fr; }
    .youtube-grid { grid-template-columns: 1fr; }
    .partners-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ==========================================================
   صفحة المقالة (Article)
   ========================================================== */
.article-hero-meta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 22px;
    margin-top: 20px;
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
}
.article-hero-meta span { display: inline-flex; align-items: center; gap: 8px; }
.article-hero-meta i { color: var(--gold); }

.article-section { background: var(--ivory); }
.article-container { max-width: 860px; margin-inline: auto; }
.article-cover {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin-bottom: 38px;
}
.article-content { font-size: 1.06rem; }
.article-content > p {
    color: var(--text-soft);
    line-height: 2.1;
    margin-bottom: 22px;
}
.article-content .article-lead {
    font-size: 1.18rem;
    color: var(--navy);
    font-weight: 600;
    line-height: 2;
    margin-bottom: 30px;
}
.article-content h2 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.55rem;
    color: var(--navy);
    margin: 40px 0 16px;
    padding-inline-start: 16px;
    border-inline-start: 4px solid var(--bronze);
}
.article-content h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.22rem;
    color: var(--bronze-dark);
    margin: 28px 0 12px;
}
.article-content ul, .article-content ol {
    margin: 0 0 24px;
    padding-inline-start: 6px;
}
.article-content li {
    position: relative;
    padding-inline-start: 30px;
    margin-bottom: 12px;
    color: var(--text-soft);
    line-height: 1.9;
}
.article-content ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    inset-inline-start: 0;
    top: 2px;
    color: var(--bronze);
    font-size: 0.85rem;
}
.article-content ol { counter-reset: art; }
.article-content ol li { counter-increment: art; }
.article-content ol li::before {
    content: counter(art);
    position: absolute;
    inset-inline-start: 0;
    top: 0;
    width: 22px;
    height: 22px;
    background: var(--bronze);
    color: var(--white);
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}
.article-content blockquote {
    margin: 30px 0;
    padding: 22px 26px;
    background: var(--cream);
    border-inline-start: 4px solid var(--gold);
    border-radius: var(--radius-md);
    font-family: var(--font-elegant);
    font-size: 1.15rem;
    color: var(--navy);
    line-height: 1.9;
}
.article-content blockquote i { color: var(--gold); margin-inline-end: 8px; }

.article-share {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 44px;
    padding-top: 28px;
    border-top: 1px solid var(--border-soft);
}
.article-share-label { font-family: var(--font-display); font-weight: 700; color: var(--navy); }
.article-share a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    color: var(--navy);
    border: 1px solid var(--border-soft);
}
.article-share a:hover { background: var(--bronze); color: var(--white); transform: translateY(-3px); border-color: transparent; }
.back-to-blog {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-inline-start: auto;
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--bronze);
}
.back-to-blog i { transition: var(--transition); }
.back-to-blog:hover i { transform: translateX(6px); }

@media (max-width: 620px) {
    .article-cover { margin-bottom: 26px; }
    .article-content h2 { font-size: 1.32rem; }
    .back-to-blog { margin-inline-start: 0; width: 100%; }
}

/* ==========================================================
   مجموعات الخدمات (شركات / أفراد)
   ========================================================== */
.services-switch {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin: 0 auto 50px;
}
.services-switch-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 26px;
    border-radius: 50px;
    background: var(--cream);
    border: 1px solid var(--border-soft);
    color: var(--navy);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition);
}
.services-switch-btn:hover { background: var(--bronze); color: var(--white); border-color: transparent; transform: translateY(-3px); box-shadow: var(--shadow-bronze); }
.services-switch-btn i { color: var(--gold); }
.services-switch-btn:hover i { color: var(--white); }

.services-group { margin-bottom: 70px; scroll-margin-top: 110px; }
.services-group-head {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 28px;
    margin-bottom: 36px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    border-radius: var(--radius-lg);
    border-inline-start: 5px solid var(--gold);
    box-shadow: var(--shadow-md);
}
.services-group-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201,169,97,0.15);
    color: var(--gold);
    font-size: 1.6rem;
}
.services-group-title { font-family: var(--font-display); font-weight: 800; font-size: 1.6rem; color: var(--white); margin: 0 0 6px; }
.services-group-sub { color: rgba(255,255,255,0.78); font-size: 0.98rem; line-height: 1.8; margin: 0; }

.services-mini-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-mini {
    background: var(--white);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    padding: 28px 26px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.service-mini::before {
    content: '';
    position: absolute;
    top: 0; inset-inline-start: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--bronze), var(--gold));
    transform: scaleX(0);
    transform-origin: inline-start;
    transition: var(--transition);
}
.service-mini:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-mini:hover::before { transform: scaleX(1); }
.service-mini-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    color: var(--bronze);
    font-size: 1.35rem;
    margin-bottom: 18px;
    transition: var(--transition);
}
.service-mini:hover .service-mini-icon { background: var(--bronze); color: var(--white); transform: rotate(-6deg); }
.service-mini-title { font-family: var(--font-display); font-weight: 700; font-size: 1.08rem; color: var(--navy); line-height: 1.6; margin: 0 0 10px; }
.service-mini-desc { color: var(--text-soft); font-size: 0.92rem; line-height: 1.85; margin: 0; }

.services-packages-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 20px;
    padding: 34px 40px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
    border: 1px dashed var(--bronze-light);
    border-radius: var(--radius-lg);
}
.services-packages-text h3 { font-family: var(--font-display); font-weight: 800; color: var(--navy); font-size: 1.3rem; margin: 0 0 8px; }
.services-packages-text h3 i { color: var(--bronze); margin-inline-end: 8px; }
.services-packages-text p { color: var(--text-soft); margin: 0; }

/* ==========================================================
   صفحة الباقات
   ========================================================== */
.pkg-section { background: var(--ivory); }
.pkg-featured {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-soft);
    overflow: hidden;
}
.pkg-featured-ribbon {
    position: absolute;
    top: 26px; inset-inline-start: -42px;
    background: linear-gradient(135deg, var(--bronze), var(--gold-dark));
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.82rem;
    padding: 8px 52px;
    transform: rotate(-45deg);
    box-shadow: var(--shadow-sm);
    z-index: 3;
}
.pkg-featured-grid { display: grid; grid-template-columns: 1.7fr 1fr; }
.pkg-featured-main { padding: 46px 44px; }
.pkg-featured-title { font-family: var(--font-display); font-weight: 800; font-size: 1.7rem; color: var(--navy); margin: 0 0 14px; }
.pkg-featured-title i { color: var(--bronze); margin-inline-end: 10px; }
.pkg-featured-desc { color: var(--text-soft); line-height: 1.95; margin: 0 0 30px; }
.pkg-block-title { font-family: var(--font-display); font-weight: 700; font-size: 1.12rem; color: var(--bronze-dark); margin: 28px 0 16px; display: flex; align-items: center; gap: 10px; }
.pkg-block-title i { color: var(--gold); }

.pkg-list { list-style: none; margin: 0 0 6px; padding: 0; }
.pkg-list li {
    position: relative;
    padding-inline-start: 32px;
    margin-bottom: 14px;
    color: var(--text-soft);
    line-height: 1.85;
}
.pkg-list li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    inset-inline-start: 0; top: 2px;
    color: var(--bronze);
}
.pkg-list strong { color: var(--navy); }

.pkg-terms { display: grid; gap: 14px; }
.pkg-term { display: flex; gap: 14px; align-items: flex-start; background: var(--cream); border-radius: var(--radius-md); padding: 16px 18px; }
.pkg-term-num { flex-shrink: 0; font-family: var(--font-display); font-weight: 800; color: var(--gold-dark); font-size: 1.1rem; background: var(--white); width: 38px; height: 38px; border-radius: 10px; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-xs); }
.pkg-term p { margin: 0; color: var(--text-soft); line-height: 1.8; font-size: 0.94rem; }

.pkg-audience { display: flex; flex-wrap: wrap; gap: 14px; }
.pkg-audience-item { display: inline-flex; align-items: center; gap: 10px; background: var(--navy); color: var(--white); padding: 12px 20px; border-radius: 50px; font-size: 0.92rem; font-weight: 600; }
.pkg-audience-item i { color: var(--gold); }

.pkg-featured-side { background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%); display: flex; align-items: center; justify-content: center; padding: 40px 32px; }
.pkg-price-card { text-align: center; width: 100%; }
.pkg-price-label { display: block; color: var(--gold); font-family: var(--font-display); font-weight: 700; letter-spacing: 1px; margin-bottom: 10px; }
.pkg-price-value { display: flex; flex-direction: column; align-items: center; gap: 4px; margin-bottom: 8px; }
.pkg-price-old { color: rgba(255,255,255,0.55); text-decoration: line-through; font-size: 1.3rem; font-weight: 600; }
.pkg-price-now { font-family: var(--font-display); font-weight: 900; font-size: 3.2rem; color: var(--white); line-height: 1; }
.pkg-price-now small { font-size: 1.1rem; font-weight: 600; color: var(--gold-light); }
.pkg-price-note { display: block; color: rgba(255,255,255,0.75); font-size: 0.9rem; margin-bottom: 18px; }
.pkg-offer { display: inline-flex; align-items: center; gap: 8px; background: rgba(201,169,97,0.16); color: var(--gold-light); padding: 9px 18px; border-radius: 50px; font-size: 0.86rem; font-weight: 600; margin-bottom: 24px; }
.pkg-cta { width: 100%; margin-bottom: 12px; }
.pkg-featured-side .btn-outline-bronze { color: var(--gold-light); border-color: rgba(201,169,97,0.5); }
.pkg-featured-side .btn-outline-bronze:hover { background: var(--gold); color: var(--navy); border-color: transparent; }

/* الباقات السنوية */
.pkg-annual-section { background: var(--cream); }
.pkg-annual-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; max-width: 940px; margin: 0 auto; }
.pkg-card {
    position: relative;
    background: var(--white);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    padding: 40px 34px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.pkg-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.pkg-card-featured { border-color: var(--bronze); box-shadow: var(--shadow-md); }
.pkg-card-badge { position: absolute; top: 18px; inset-inline-end: 18px; background: var(--bronze); color: var(--white); font-size: 0.78rem; font-weight: 700; padding: 6px 14px; border-radius: 50px; }
.pkg-card-icon { width: 70px; height: 70px; border-radius: 18px; background: linear-gradient(135deg, var(--navy), var(--navy-light)); color: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 1.8rem; margin-bottom: 22px; }
.pkg-card-title { font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; color: var(--navy); margin: 0 0 12px; }
.pkg-card-desc { color: var(--text-soft); line-height: 1.9; margin: 0 0 22px; }
.pkg-card-list { list-style: none; margin: 0 0 28px; padding: 0; flex-grow: 1; }
.pkg-card-list li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; color: var(--text-soft); line-height: 1.7; }
.pkg-card-list li i { color: var(--bronze); margin-top: 5px; font-size: 0.85rem; }
.pkg-annual-note { text-align: center; max-width: 760px; margin: 44px auto 0; color: var(--text-soft); line-height: 1.9; background: var(--white); border: 1px solid var(--border-soft); border-radius: var(--radius-md); padding: 22px 28px; }
.pkg-annual-note i { color: var(--bronze); margin-inline-end: 8px; }

/* ==========================================================
   الأهداف وكلمة رئيس مجلس الإدارة (من نحن)
   ========================================================== */
.goals-section { background: var(--ivory); }
.goals-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.goal-card {
    display: flex;
    gap: 20px;
    background: var(--white);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    padding: 30px 28px;
    transition: var(--transition);
}
.goal-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.goal-num { flex-shrink: 0; width: 54px; height: 54px; border-radius: 14px; background: linear-gradient(135deg, var(--bronze), var(--gold-dark)); color: var(--white); font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; display: flex; align-items: center; justify-content: center; }
.goal-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.18rem; color: var(--navy); margin: 0 0 10px; }
.goal-card p { color: var(--text-soft); line-height: 1.85; margin: 0; font-size: 0.95rem; }

.chairman-section { background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%); position: relative; overflow: hidden; }
.chairman-wrap { max-width: 880px; margin: 0 auto; text-align: center; position: relative; z-index: 2; }
.chairman-quote-mark { font-family: var(--font-elegant); font-size: 6rem; line-height: 0.5; color: var(--gold); opacity: 0.5; height: 50px; }
.chairman-text { font-family: var(--font-elegant); font-size: 1.5rem; line-height: 2.1; color: var(--white); margin: 0 0 30px; }
.chairman-meta { display: inline-flex; flex-direction: column; align-items: center; gap: 4px; }
.chairman-meta .chairman-line { width: 60px; height: 3px; background: var(--gold); border-radius: 3px; margin-bottom: 14px; }
.chairman-meta strong { font-family: var(--font-display); color: var(--gold-light); font-size: 1.1rem; }
.chairman-meta span { color: rgba(255,255,255,0.7); font-size: 0.9rem; }

/* المقدمة (من نحن) */
.intro-section { background: var(--cream); }
.intro-lead { max-width: 920px; margin: 0 auto; text-align: center; color: var(--text-soft); font-size: 1.12rem; line-height: 2.1; }

@media (max-width: 980px) {
    .services-mini-grid { grid-template-columns: repeat(2, 1fr); }
    .pkg-featured-grid { grid-template-columns: 1fr; }
    .goals-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .services-mini-grid { grid-template-columns: 1fr; }
    .pkg-annual-grid { grid-template-columns: 1fr; }
    .pkg-featured-main { padding: 34px 24px; }
    .services-packages-cta { padding: 26px 24px; }
    .chairman-text { font-size: 1.2rem; }
    .services-group-head { flex-direction: column; text-align: center; }
}

/* أزرار معاينة الخدمات في الرئيسية */
.home-services-grid .service-mini { display: flex; flex-direction: column; }
.home-service-btn { margin-top: 18px; align-self: flex-start; }
