/* File: public/landing/landing.css */
/* Iktifaa Thati — public introduction page.
   Palette, fonts and background motif are inherited from the internal
   app (green-900 → green-400, Playfair Display / DM Sans / Tajawal) so the
   transition from public site to login/app feels seamless. */

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

:root {
    --green-950: #031f10;
    --green-900: #052e16;
    --green-800: #0a3d1f;
    --green-700: #14532d;
    --green-600: #16a34a;
    --green-500: #22c55e;
    --green-400: #4ade80;
    --green-200: #bbf7d0;
    --green-100: #dcfce7;
    --green-50:  #f0fdf4;
    --white:     #ffffff;
    --text-dark: #052e16;
    --text-mid:  #166534;
    --text-muted:#5c7d67;
    --border:    #d1fae5;
    --gold:      #f0b429;
    --radius-sm: 10px;
    --radius:    16px;
    --radius-lg: 26px;
    --transition: 0.25s ease;
    --transition-slow: 0.6s cubic-bezier(.2,.8,.2,1);
    --maxw: 1180px;
}

html { scroll-behavior: smooth; overflow-x: hidden; max-width: 100%; }
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
}

body {
    font-family: 'DM Sans', system-ui, sans-serif;
    background: var(--green-50);
    color: var(--text-dark);
    overflow-x: hidden;
}
[dir="rtl"] body { font-family: 'Tajawal', sans-serif; }

h1, h2, h3 { font-family: 'Playfair Display', serif; }
[dir="rtl"] h1, [dir="rtl"] h2, [dir="rtl"] h3 { font-family: 'Tajawal', sans-serif; }

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; }

/* ── Ambient background (matches internal app) ── */
.bg-orb { position: fixed; border-radius: 50%; filter: blur(100px); pointer-events: none; z-index: 0; }
.orb-1  { width: 560px; height: 560px; background: rgba(34,197,94,0.12); top: -140px; left: -120px; }
.orb-2  { width: 420px; height: 420px; background: rgba(74,222,128,0.10); top: 720px; right: -140px; }
.grid-overlay {
    position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: 0.5;
    background-image: linear-gradient(rgba(74,222,128,0.05) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(74,222,128,0.05) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(to bottom, black, transparent 900px);
}

/* ══════════════════ NAV ══════════════════ */
.lnav {
    position: sticky; top: 0; z-index: 200;
    background: rgba(5,46,22,0.94);
    backdrop-filter: blur(14px);
    box-shadow: 0 2px 14px rgba(0,0,0,0.12);
    transition: background var(--transition), box-shadow var(--transition);
}
.lnav.scrolled {
    background: rgba(5,46,22,0.98);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.lnav-inner {
    max-width: var(--maxw); margin: 0 auto; padding: 0 28px; height: 76px;
    display: flex; align-items: center; gap: 18px;
}
.lnav-brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.lnav-logo { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,0.08); border: 1px solid rgba(74,222,128,0.25); padding: 3px; object-fit: contain; }
.lnav-name { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700; color: var(--white); letter-spacing: 0.2px; }
[dir="rtl"] .lnav-name { font-family: 'Tajawal', sans-serif; }

.lnav-links { display: flex; align-items: center; gap: 2px; flex: 1; justify-content: center; }
.lnav-links a {
    padding: 8px 11px; border-radius: 8px; font-size: 0.84rem; font-weight: 500;
    color: var(--green-200); transition: all var(--transition); white-space: nowrap;
}
.lnav-links a:hover { background: rgba(74,222,128,0.12); color: var(--white); }

.lnav-right { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.lang-toggle { display: flex; background: rgba(255,255,255,0.07); border: 1px solid rgba(74,222,128,0.2); border-radius: 20px; padding: 3px; gap: 2px; }
.lang-btn { padding: 5px 13px; border-radius: 14px; font-size: 0.75rem; font-weight: 600; cursor: pointer; border: none; background: transparent; color: var(--green-200); transition: all var(--transition); }
.lang-btn.active { background: var(--green-600); color: white; }

.btn-login {
    display: flex; align-items: center; gap: 6px;
    padding: 9px 20px; border-radius: 999px;
    background: linear-gradient(135deg, var(--green-500), var(--green-600));
    color: var(--white); font-size: 0.86rem; font-weight: 600;
    box-shadow: 0 4px 16px rgba(34,197,94,0.35);
    transition: transform var(--transition), box-shadow var(--transition);
    white-space: nowrap;
}
.btn-login:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(34,197,94,0.45); }
.btn-login-arrow { transition: transform var(--transition); }
[dir="rtl"] .btn-login-arrow { transform: scaleX(-1); }
.btn-login:hover .btn-login-arrow { transform: translateX(3px); }
[dir="rtl"] .btn-login:hover .btn-login-arrow { transform: scaleX(-1) translateX(3px); }

.lnav-burger { display: none; flex-direction: column; gap: 4px; width: 32px; height: 32px; align-items: center; justify-content: center; border: none; background: transparent; cursor: pointer; }
.lnav-burger span { width: 20px; height: 2px; background: var(--green-200); border-radius: 2px; transition: all var(--transition); }

.lnav-mobile {
    display: none; flex-direction: column; gap: 2px; padding: 8px 20px 18px;
    background: rgba(5,46,22,0.96); backdrop-filter: blur(14px);
}
.lnav-mobile a { padding: 12px 10px; border-radius: 8px; font-size: 0.95rem; font-weight: 500; color: var(--green-200); }
.lnav-mobile a:hover { background: rgba(74,222,128,0.12); color: var(--white); }
.lnav-mobile.open { display: flex; }

@media (max-width: 1040px) {
    .lnav-links { display: none; }
    .lnav-burger { display: flex; }
}

@media (max-width: 480px) {
    .lnav-inner { padding: 0 14px; gap: 10px; height: 64px; }
    .lnav-name { display: none; }
    .lnav-right { gap: 8px; }
    .lang-toggle { padding: 2px; }
    .lang-btn { padding: 4px 9px; font-size: 0.7rem; }
    .btn-login { padding: 8px 14px; font-size: 0.8rem; }
}

/* ══════════════════ HERO ══════════════════ */
.hero {
    position: relative; z-index: 1;
    background: radial-gradient(ellipse at top left, rgba(74,222,128,0.10), transparent 60%), var(--green-900);
    padding: 60px 28px 40px;
    min-height: calc(100vh - 76px);
    display: flex; flex-direction: column; justify-content: center;
}
.hero-inner {
    max-width: var(--maxw); margin: 0 auto; width: 100%;
    display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center;
}
.eyebrow {
    display: inline-block; font-size: 0.78rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--green-400); margin-bottom: 18px;
    padding: 6px 14px; border: 1px solid rgba(74,222,128,0.3); border-radius: 999px;
    background: rgba(74,222,128,0.08);
}
.hero-title {
    font-size: clamp(2.1rem, 4vw, 3.2rem); font-weight: 800; line-height: 1.18; color: var(--white);
    margin-bottom: 20px; max-width: 20ch;
}
.hero-sub { font-size: 1.05rem; line-height: 1.7; color: var(--green-100); max-width: 46ch; margin-bottom: 30px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }

.btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 26px; border-radius: 12px; border: none; cursor: pointer;
    background: linear-gradient(135deg, var(--green-600), var(--green-700));
    color: white; font-size: 0.92rem; font-weight: 600;
    box-shadow: 0 6px 20px rgba(22,163,74,0.35);
    transition: transform var(--transition), box-shadow var(--transition);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(22,163,74,0.45); }

.btn-ghost {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 26px; border-radius: 12px; cursor: pointer;
    border: 1px solid rgba(255,255,255,0.25); color: var(--white); font-size: 0.92rem; font-weight: 600;
    background: rgba(255,255,255,0.04);
    transition: all var(--transition);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.4); }

.hero-ticker { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.ticker-item { display: flex; flex-direction: column; }
.ticker-value { font-family: 'Playfair Display', serif; font-size: 1.7rem; font-weight: 700; color: var(--green-400); }
[dir="rtl"] .ticker-value { font-family: 'Tajawal', sans-serif; }
.ticker-label { font-size: 0.76rem; color: var(--green-200); }
.ticker-divider { width: 1px; height: 32px; background: rgba(255,255,255,0.15); }

/* ── Hero cycle emblem (signature element) ── */
.hero-emblem { position: relative; width: 100%; max-width: 400px; margin: 0 auto; aspect-ratio: 1; }
.cycle-svg { width: 100%; height: 100%; overflow: visible; }

.cycle-ring-static { fill: none; stroke: rgba(255,255,255,0.08); stroke-width: 1; }
.cycle-ring {
    fill: none; stroke: var(--green-400); stroke-width: 2;
    stroke-dasharray: 3 11; opacity: 0.75;
    animation: cycleFlow 14s linear infinite;
}
[dir="rtl"] .cycle-ring { animation-direction: reverse; }
@keyframes cycleFlow { to { stroke-dashoffset: -280; } }

.cycle-spoke { stroke: rgba(255,255,255,0.06); stroke-width: 1; }

.cycle-node circle {
    fill: var(--green-800); stroke: var(--green-500); stroke-width: 1.5;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.35));
}
.cycle-node text { font-size: 34px; text-anchor: middle; }

.cycle-center {
    width: 100%; height: 100%; border-radius: 50%;
    background: var(--green-950);
    border: 2px solid var(--green-400);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 0 0 8px rgba(74,222,128,0.08);
    animation: cyclePulse 3.2s ease-in-out infinite;
}
.cycle-center img { width: 58%; height: 58%; object-fit: contain; }
@keyframes cyclePulse {
    0%, 100% { box-shadow: 0 0 0 8px rgba(74,222,128,0.08); }
    50%      { box-shadow: 0 0 0 14px rgba(74,222,128,0.14); }
}

.cycle-label {
    position: absolute; font-size: 0.72rem; font-weight: 600; color: var(--green-200);
    white-space: nowrap; text-align: center;
}
.cycle-label-top    { top: -6px;  left: 50%; transform: translate(-50%, -100%); }
.cycle-label-right  { top: 50%;  right: -6px; transform: translate(100%, -50%); }
.cycle-label-bottom { bottom: -6px; left: 50%; transform: translate(-50%, 100%); }
.cycle-label-left   { top: 50%;  left: -6px; transform: translate(-100%, -50%); }

@media (prefers-reduced-motion: reduce) {
    .cycle-ring, .cycle-center { animation: none; }
}

.scroll-cue {
    align-self: center; margin-top: 18px;
    width: 26px; height: 42px; border: 2px solid rgba(255,255,255,0.35); border-radius: 20px;
    display: flex; justify-content: center; padding-top: 8px;
}
.scroll-cue span { width: 4px; height: 8px; border-radius: 3px; background: var(--green-400); animation: scrollCue 1.8s ease-in-out infinite; }
@keyframes scrollCue { 0% { opacity: 1; transform: translateY(0); } 70% { opacity: 0; transform: translateY(10px); } 100% { opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .scroll-cue span { animation: none; } }

@media (max-width: 960px) {
    .hero-inner { grid-template-columns: 1fr; text-align: center; }
    .hero-title, .hero-sub { max-width: none; margin-left: auto; margin-right: auto; }
    .hero-actions, .hero-ticker { justify-content: center; }
    .hero-emblem { max-width: 300px; margin-top: 10px; }
}

@media (max-width: 480px) {
    .hero-emblem { max-width: 190px; }
    .cycle-label {
        font-size: 0.6rem;
        max-width: 52px;
        white-space: normal;
        line-height: 1.25;
    }
    .cycle-label-left  { left: auto; right: 100%; transform: translateY(-50%); margin-right: 4px; text-align: right; }
    .cycle-label-right { right: auto; left: 100%; transform: translateY(-50%); margin-left: 4px; text-align: left; }
    [dir="rtl"] .cycle-label-left  { text-align: left; }
    [dir="rtl"] .cycle-label-right { text-align: right; }
}

/* ══════════════════ SHARED SECTION LAYOUT ══════════════════ */
.section { position: relative; z-index: 1; padding: 100px 28px; background: var(--green-50); }
.section-alt { background: linear-gradient(180deg, var(--green-100), var(--green-50) 70%); }
.section-inner { max-width: var(--maxw); margin: 0 auto; }

.section-eyebrow {
    font-size: 0.76rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--green-600); margin-bottom: 12px;
}
.section-title { font-size: clamp(1.7rem, 3vw, 2.3rem); font-weight: 700; color: var(--text-dark); margin-bottom: 18px; line-height: 1.25; }
.section-body { font-size: 1rem; line-height: 1.8; color: var(--text-muted); margin-bottom: 16px; max-width: 58ch; }
.section-head { text-align: center; margin-bottom: 56px; }
.section-head .section-body { margin-left: auto; margin-right: auto; }
.section-body-centered { max-width: 62ch; margin-left: auto; margin-right: auto; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity var(--transition-slow), transform var(--transition-slow); }
.reveal.in-view { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ══════════════════ ABOUT ══════════════════ */
.about-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: center; }
.about-facts { display: flex; gap: 32px; margin-top: 28px; flex-wrap: wrap; }
.about-fact { display: flex; flex-direction: column; }
.about-fact-value { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; color: var(--green-700); }
[dir="rtl"] .about-fact-value { font-family: 'Tajawal', sans-serif; }
.about-fact-label { font-size: 0.78rem; color: var(--text-muted); }

.about-card {
    position: relative; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
    padding: 44px 36px; box-shadow: 0 20px 50px rgba(5,46,22,0.08);
}
.quote-mark { font-family: 'Playfair Display', serif; font-size: 4rem; color: var(--green-200); line-height: 1; margin-bottom: 6px; }
.quote-text { font-size: 1.05rem; line-height: 1.7; color: var(--text-dark); font-style: italic; margin-bottom: 22px; }
[dir="rtl"] .quote-text { font-style: normal; }
.quote-author { display: flex; flex-direction: column; border-top: 1px solid var(--border); padding-top: 16px; }
.quote-name { font-weight: 700; color: var(--green-700); font-size: 0.92rem; }
.quote-role { font-size: 0.8rem; color: var(--text-muted); }

.quote-text, .quote-author { transition: opacity 0.25s ease; }
.quote-fade .quote-text, .quote-fade .quote-author { opacity: 0; }

.quote-nav { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 22px; }
.quote-arrow {
    width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--border);
    background: var(--white); color: var(--green-700); font-size: 1.2rem; line-height: 1;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: background var(--transition-slow, 0.2s), color var(--transition-slow, 0.2s);
}
.quote-arrow:hover { background: var(--green-600); color: var(--white); border-color: var(--green-600); }
.quote-dots { display: flex; gap: 7px; }
.quote-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green-200); cursor: pointer; border: none; padding: 0; transition: background 0.2s, transform 0.2s; }
.quote-dot.active { background: var(--green-600); transform: scale(1.3); }

@media (max-width: 860px) {
    .about-grid { grid-template-columns: 1fr; }
    .section-body { max-width: none; }
}

/* ══════════════════ MISSION ══════════════════ */
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pillar-card {
    background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 34px 28px; text-align: center;
    transition: transform var(--transition), box-shadow var(--transition);
}
.pillar-card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(5,46,22,0.10); }
.pillar-icon {
    width: 60px; height: 60px; border-radius: 16px; margin: 0 auto 18px;
    background: var(--green-100); display: flex; align-items: center; justify-content: center; font-size: 1.6rem;
}
.pillar-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; }
.pillar-card p { font-size: 0.9rem; line-height: 1.65; color: var(--text-muted); }

@media (max-width: 860px) { .pillars-grid { grid-template-columns: 1fr; } }

/* ══════════════════ ACHIEVEMENTS ══════════════════ */
#achievements { background: var(--green-900); position: relative; overflow: hidden; }
#achievements::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at bottom right, rgba(74,222,128,0.10), transparent 55%);
    pointer-events: none;
}
#achievements .section-eyebrow { color: var(--green-400); }
#achievements .section-title { color: var(--white); }
#achievements .section-body { color: var(--green-100); }

.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; z-index: 1; }
.stat-card {
    background: rgba(255,255,255,0.04); border: 1px solid rgba(74,222,128,0.18); border-radius: var(--radius);
    padding: 32px 20px; text-align: center;
}
.stat-value {
    display: block; font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 700;
    color: var(--green-400); text-shadow: 0 0 24px rgba(74,222,128,0.35); margin-bottom: 8px;
}
[dir="rtl"] .stat-value { font-family: 'Tajawal', sans-serif; }
.stat-label { font-size: 0.82rem; color: var(--green-100); }

@media (max-width: 860px) { .stats-grid { grid-template-columns: 1fr 1fr; } }

/* ══════════════════ PROGRAMS ══════════════════ */
.programs-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.program-card {
    background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 30px 22px; text-align: center;
    transition: transform var(--transition), box-shadow var(--transition);
}
.program-card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(5,46,22,0.10); }
.program-icon {
    width: 56px; height: 56px; border-radius: 14px; margin: 0 auto 16px;
    background: var(--green-100); display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
}
.program-card h3 { font-size: 1.02rem; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.program-card p { font-size: 0.86rem; line-height: 1.6; color: var(--text-muted); }

@media (max-width: 860px) { .programs-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .programs-grid { grid-template-columns: 1fr; } }

/* ── Latest News ── */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.news-card {
    background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
    overflow: hidden; text-align: left;
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex; flex-direction: column;
}
[dir="rtl"] .news-card { text-align: right; }
.news-card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(5,46,22,0.10); }
.news-card-img {
    width: 100%; height: 170px; object-fit: cover; display: block; background: var(--green-100);
}
.news-card-img-placeholder {
    width: 100%; height: 170px; display: flex; align-items: center; justify-content: center;
    background: var(--green-100); font-size: 2rem;
}
.news-card-body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.news-card-date { font-size: 0.76rem; font-weight: 600; color: var(--text-mid); text-transform: uppercase; letter-spacing: 0.04em; }
[dir="rtl"] .news-card-date { text-transform: none; letter-spacing: 0; }
.news-card-title { font-size: 1.05rem; font-weight: 700; color: var(--text-dark); line-height: 1.4; }
.news-card-excerpt { font-size: 0.88rem; line-height: 1.65; color: var(--text-muted); flex: 1; }

.news-empty { text-align: center; color: var(--text-muted); font-size: 0.95rem; padding: 20px 0; }

@media (max-width: 860px) { .news-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .news-grid { grid-template-columns: 1fr; } }

/* ══════════════════ CONTACT ══════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.contact-list { margin-top: 26px; display: flex; flex-direction: column; gap: 14px; }
.contact-list li { display: flex; align-items: center; gap: 12px; font-size: 0.94rem; color: var(--text-dark); }
.contact-icon { width: 34px; height: 34px; border-radius: 10px; background: var(--green-100); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

.contact-form {
    background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
    padding: 36px; box-shadow: 0 20px 50px rgba(5,46,22,0.08);
    display: flex; flex-direction: column; gap: 16px;
}
.form-row { display: flex; flex-direction: column; gap: 6px; }
.form-row label { font-size: 0.8rem; font-weight: 600; color: var(--text-mid); }
.form-row input, .form-row textarea {
    padding: 11px 14px; border: 1px solid var(--border); border-radius: 10px;
    font-size: 0.92rem; font-family: inherit; background: var(--green-50); color: var(--text-dark);
    transition: border-color var(--transition), box-shadow var(--transition);
}
[dir="rtl"] .form-row input, [dir="rtl"] .form-row textarea { text-align: right; }
.form-row input:focus, .form-row textarea:focus { outline: none; border-color: var(--green-600); box-shadow: 0 0 0 3px rgba(22,163,74,0.1); }
.form-row textarea { resize: vertical; }
.btn-form { justify-content: center; margin-top: 6px; }
.form-note { font-size: 0.84rem; color: var(--green-700); font-weight: 600; min-height: 1.2em; }
.form-note.error { color: #b91c1c; }

@media (max-width: 860px) {
    .contact-grid { grid-template-columns: 1fr; }
}

/* ══════════════════ FOOTER ══════════════════ */
.lfooter { position: relative; z-index: 1; background: var(--green-950); padding: 48px 28px 24px; }
.lfooter-inner {
    max-width: var(--maxw); margin: 0 auto; display: flex; align-items: center; justify-content: space-between;
    gap: 24px; flex-wrap: wrap; padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.lfooter-brand { display: flex; align-items: center; gap: 12px; }
.lfooter-logo { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,0.06); padding: 4px; object-fit: contain; }
.lfooter-name { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--white); display: block; }
[dir="rtl"] .lfooter-name { font-family: 'Tajawal', sans-serif; }
.lfooter-tagline { font-size: 0.8rem; color: var(--green-200); margin-top: 2px; }
.lfooter-links { display: flex; gap: 22px; flex-wrap: wrap; }
.lfooter-links a { font-size: 0.85rem; color: var(--green-200); transition: color var(--transition); }
.lfooter-links a:hover { color: var(--white); }
.lfooter-social { display: flex; gap: 12px; }
.lfooter-social a {
    width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.06);
    display: flex; align-items: center; justify-content: center; font-size: 1rem;
    transition: background var(--transition);
}
.lfooter-social a:hover { background: rgba(74,222,128,0.18); }

.lfooter-qr { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.lfooter-qr-img {
    width: 64px; height: 64px; background: var(--white); padding: 5px; border-radius: 10px;
    display: block; transition: transform var(--transition);
}
.lfooter-qr a:hover .lfooter-qr-img { transform: scale(1.06); }
.lfooter-qr-label { font-size: 0.68rem; color: var(--green-200); text-align: center; max-width: 96px; line-height: 1.3; }
.lfooter-copy { max-width: var(--maxw); margin: 20px auto 0; text-align: center; font-size: 0.78rem; color: var(--green-200); opacity: 0.7; }

@media (max-width: 640px) {
    .section { padding: 72px 20px; }
    .lfooter-inner { flex-direction: column; text-align: center; }
}
