/* ============================================================
   يُسر — أنماط الصفحة الرئيسية الفاخرة
   ============================================================ */

.landing-page {
  --lp-gold: #c9a227;
  --lp-gold-light: #f5e6a3;
  --lp-gold-glow: rgba(201, 162, 39, 0.35);
  --lp-emerald: #047857;
  --lp-emerald-deep: #064e3b;
  --lp-indigo: #4338ca;
  --lp-navy: #0c1222;
  --lp-surface: rgba(255, 255, 255, 0.72);
  --lp-border: rgba(255, 255, 255, 0.55);
  --lp-shadow: 0 24px 60px rgba(12, 18, 34, 0.12);
  --lp-shadow-gold: 0 20px 50px rgba(201, 162, 39, 0.18);
}

.landing-page,
.landing-page body {
  background: #f8fafc !important;
  color: #0f172a;
}

.landing-page .glass {
  background: rgba(255, 255, 255, 0.72) !important;
  backdrop-filter: blur(14px) !important;
  border: 1px solid rgba(255, 255, 255, 0.6) !important;
  box-shadow: 0 12px 36px rgba(12, 18, 34, 0.08) !important;
}

/* ===== خلفية متحركة ===== */
.lp-bg-mesh {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.lp-bg-mesh::before,
.lp-bg-mesh::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  animation: lp-float 18s ease-in-out infinite alternate;
}

.lp-bg-mesh::before {
  width: 55vw;
  height: 55vw;
  top: -15%;
  right: -10%;
  background: radial-gradient(circle, rgba(4, 120, 87, 0.28), transparent 68%);
}

.lp-bg-mesh::after {
  width: 45vw;
  height: 45vw;
  bottom: -10%;
  left: -8%;
  background: radial-gradient(circle, rgba(67, 56, 202, 0.22), transparent 70%);
  animation-delay: -6s;
}

@keyframes lp-float {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, -20px) scale(1.06); }
}

.lp-page-wrap {
  position: relative;
  z-index: 1;
}

/* ===== هيدر فاخر ===== */
.lp-header nav {
  transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.lp-header.is-scrolled nav {
  background: rgba(255, 255, 255, 0.92) !important;
  backdrop-filter: blur(18px);
  border: 1px solid rgba(201, 162, 39, 0.18) !important;
  box-shadow: 0 12px 40px rgba(12, 18, 34, 0.1) !important;
}

.lp-nav-link {
  position: relative;
  font-weight: 600;
  color: #334155;
  transition: color 0.25s ease;
}

.lp-nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  right: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--lp-gold), var(--lp-emerald));
  border-radius: 2px;
  transition: width 0.3s ease;
}

.lp-nav-link:hover {
  color: var(--lp-emerald-deep);
}

.lp-nav-link:hover::after {
  width: 100%;
}

.lp-logo-ring {
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.25), 0 8px 24px rgba(4, 120, 87, 0.15);
}

/* ===== أزرار فاخرة ===== */
.lp-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: 1rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--lp-emerald) 0%, var(--lp-indigo) 100%);
  box-shadow: 0 12px 32px rgba(4, 120, 87, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
  position: relative;
  overflow: hidden;
}

.lp-btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 30%, rgba(255,255,255,0.18) 50%, transparent 70%);
  transform: translateX(120%);
  transition: transform 0.55s ease;
}

.lp-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(4, 120, 87, 0.35);
  filter: brightness(1.04);
}

.lp-btn-primary:hover::before {
  transform: translateX(-120%);
}

.lp-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: 1rem;
  font-weight: 700;
  color: var(--lp-emerald-deep);
  background: rgba(255, 255, 255, 0.8);
  border: 1.5px solid rgba(4, 120, 87, 0.25);
  backdrop-filter: blur(8px);
  transition: all 0.25s ease;
}

.lp-btn-outline:hover {
  border-color: var(--lp-gold);
  color: var(--lp-emerald);
  box-shadow: var(--lp-shadow-gold);
}

/* ===== HERO ===== */
.landing-page section {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

#home.lp-hero {
  min-height: auto;
  display: flex;
  align-items: center;
  padding-top: 7rem !important;
  padding-bottom: 2rem !important;
  background: transparent !important;
}
.lp-hero-inner {
  position: relative;
}

.lp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.1rem;
  margin-bottom: 1.25rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--lp-emerald-deep);
  background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(236, 253, 245, 0.9));
  border: 1px solid rgba(201, 162, 39, 0.35);
  box-shadow: 0 8px 24px rgba(4, 120, 87, 0.1);
}

.lp-hero-badge i {
  color: var(--lp-gold);
}

.lp-hero-title {
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.25;
  color: var(--lp-navy);
  margin-bottom: 1.25rem;
}

.lp-hero-title .lp-gradient {
  background: linear-gradient(135deg, var(--lp-emerald) 0%, var(--lp-indigo) 55%, var(--lp-gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lp-hero-lead {
  font-size: 1.125rem;
  line-height: 1.9;
  color: #475569;
  max-width: 34rem;
  margin-bottom: 2rem;
}

.lp-hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lp-hero-frame {
  position: relative;
  padding: 1rem;
  border-radius: 2rem;
  background: linear-gradient(145deg, rgba(255,255,255,0.9), rgba(236,253,245,0.6));
  border: 1px solid rgba(201, 162, 39, 0.22);
  box-shadow: var(--lp-shadow), var(--lp-shadow-gold);
}

.lp-hero-frame::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 2.1rem;
  padding: 2px;
  background: linear-gradient(135deg, var(--lp-gold-light), var(--lp-emerald), var(--lp-indigo));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.65;
  pointer-events: none;
}

.lp-hero-frame img {
  width: 100%;
  max-width: 26rem;
  border-radius: 1.5rem;
  display: block;
}

.lp-float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 16px 40px rgba(12, 18, 34, 0.12);
  backdrop-filter: blur(12px);
  animation: lp-bob 4s ease-in-out infinite;
  z-index: 5;
}

.lp-float-card--top {
  top: 8%;
  left: -4%;
  animation-delay: 0s;
}

.lp-float-card--bottom {
  bottom: 10%;
  right: -2%;
  animation-delay: -2s;
}

.lp-float-card .icon-circle {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--lp-emerald), #10b981);
  color: #fff;
  font-size: 1.1rem;
}

@keyframes lp-bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

.lp-trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.lp-trust-row img {
  height: 2.5rem;
  width: auto;
  object-fit: contain;
  opacity: 0.85;
  filter: grayscale(20%);
  transition: opacity 0.25s ease;
}

.lp-trust-row img:hover {
  opacity: 1;
  filter: none;
}

/* ===== عناوين الأقسام ===== */
.lp-section-head {
  text-align: center;
  margin-bottom: 1.75rem;
}

.lp-section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lp-gold);
  margin-bottom: 0.75rem;
}

.lp-section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 900;
  color: var(--lp-navy);
  margin-bottom: 0.75rem;
}

.lp-section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  margin: 1rem auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--lp-gold), var(--lp-emerald));
}

.lp-section-desc {
  max-width: 36rem;
  margin: 0 auto;
  color: #64748b;
  line-height: 1.85;
}

/* ===== قسم من نحن ===== */
#about {
  background: transparent !important;
}

.lp-about-card {
  position: relative;
  padding: 2rem;
  border-radius: 1.75rem;
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  backdrop-filter: blur(16px);
  box-shadow: var(--lp-shadow);
}

.lp-value-pill {
  padding: 1.25rem;
  border-radius: 1.25rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(15, 23, 42, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lp-value-pill:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(4, 120, 87, 0.12);
}

.lp-value-pill i {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  display: block;
}

.lp-partner-showcase {
  position: relative;
  padding: 2.5rem;
  border-radius: 2rem;
  text-align: center;
  background: linear-gradient(160deg, #ffffff 0%, #f0fdf9 50%, #eef2ff 100%);
  border: 1px solid rgba(201, 162, 39, 0.2);
  box-shadow: var(--lp-shadow);
}

.lp-partner-showcase .logo-stack {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.lp-partner-showcase .logo-stack img {
  height: 5rem;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.08));
}

/* ===== بطاقات الخدمات ===== */
#why-yusr {
  background: linear-gradient(180deg, rgba(236,253,245,0.5) 0%, transparent 100%) !important;
}

.lp-svc-card {
  position: relative;
  padding: 2rem 1.5rem;
  border-radius: 1.5rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 40px rgba(12, 18, 34, 0.07);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  overflow: hidden;
}

.lp-svc-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--lp-gold), var(--lp-emerald));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lp-svc-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 55px rgba(4, 120, 87, 0.15);
  border-color: rgba(201, 162, 39, 0.3);
}

.lp-svc-card:hover::before {
  opacity: 1;
}

.lp-svc-icon {
  width: 4.5rem;
  height: 4.5rem;
  margin: 0 auto 1.25rem;
  display: grid;
  place-items: center;
  border-radius: 1.25rem;
  font-size: 1.75rem;
  color: #fff;
  background: linear-gradient(135deg, var(--lp-emerald), #059669);
  box-shadow: 0 12px 28px rgba(4, 120, 87, 0.3);
  transition: transform 0.4s ease;
}

.lp-svc-card:hover .lp-svc-icon {
  transform: rotate(12deg) scale(1.08);
}

/* ===== الإحصائيات ===== */
#yossr-cards {
  background: transparent !important;
}

.lp-stat-card {
  position: relative;
  padding: 2rem 1.5rem;
  border-radius: 1.5rem;
  text-align: center;
  background: linear-gradient(160deg, rgba(255,255,255,0.95), rgba(236,253,245,0.7));
  border: 1px solid rgba(4, 120, 87, 0.12);
  box-shadow: 0 16px 36px rgba(4, 120, 87, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  overflow: hidden;
}

.lp-stat-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--lp-emerald), var(--lp-gold));
  transform: scaleX(0);
  transition: transform 0.35s ease;
}

.lp-stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(4, 120, 87, 0.16);
}

.lp-stat-card:hover::after {
  transform: scaleX(1);
}

.lp-stat-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 1.5rem;
  color: var(--lp-emerald);
  background: linear-gradient(135deg, rgba(4,120,87,0.1), rgba(201,162,39,0.12));
  border: 1px solid rgba(4, 120, 87, 0.15);
}

.lp-stat-number {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--lp-emerald-deep);
  margin-bottom: 0.35rem;
}

/* ===== التواصل ===== */
#contact .lp-contact-card {
  padding: 2rem;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: var(--lp-shadow);
}

#contact input,
#contact select,
#contact textarea {
  border: 1.5px solid #e2e8f0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

#contact input:focus,
#contact select:focus,
#contact textarea:focus {
  border-color: var(--lp-emerald);
  box-shadow: 0 0 0 4px rgba(4, 120, 87, 0.12);
  outline: none;
}

/* ===== الفوتر الفاخر ===== */
.lp-footer {
  position: relative;
  background: linear-gradient(180deg, var(--lp-navy) 0%, #060a14 100%) !important;
  color: #94a3b8 !important;
  padding: 3rem 0 !important;
  overflow: hidden;
}

.lp-footer::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--lp-gold), var(--lp-emerald), var(--lp-indigo));
}

.lp-footer .social-link {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #cbd5e1;
  transition: all 0.25s ease;
}

.lp-footer .social-link:hover {
  background: rgba(201, 162, 39, 0.2);
  border-color: rgba(201, 162, 39, 0.4);
  color: var(--lp-gold-light);
  transform: translateY(-3px);
}

/* ===== تجاوب ===== */
@media (max-width: 768px) {
  .lp-float-card {
    display: none;
  }

  #home.lp-hero {
    min-height: auto;
    padding-top: 6rem !important;
  }

  .lp-trust-row {
    justify-content: center;
  }
}
