:root{
  --le-primary:#fbc70d;
  --le-primary-2:#ffd95a;
  --le-dark:#58595b;
  --le-dark-2:#3f4042;
  --le-soft:#faebb4;
  --le-soft-2:#fff8e7;
  --le-bg:#fffdf7;
  --le-white:#ffffff;
  --le-border:#efe7cf;
  --le-text:#3f4042;
  --le-muted:#7c7d81;
  --le-success:#198754;
  --le-danger:#dc3545;
  --le-shadow-sm:0 8px 24px rgba(88,89,91,.08);
  --le-shadow-md:0 18px 40px rgba(88,89,91,.12);
  --le-shadow-lg:0 24px 60px rgba(88,89,91,.16);
  --le-radius-sm:14px;
  --le-radius-md:22px;
  --le-radius-lg:30px;
  --le-transition:all .28s ease;
}

html,body{
  direction:rtl;
  text-align:right;
  font-family:'Tajawal',sans-serif;
  background:
    radial-gradient(circle at top right, rgba(251,199,13,.12), transparent 28%),
    radial-gradient(circle at bottom left, rgba(250,235,180,.35), transparent 22%),
    var(--le-bg);
  color:var(--le-text);
  min-height:100%;
}

body{
  overflow-x:hidden;
}

a{
  text-decoration:none;
}

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

.section-padding{
  padding:72px 0;
}

.section-title{
  font-size:2rem;
  font-weight:800;
  color:var(--le-dark);
  margin-bottom:12px;
}

.section-subtitle{
  color:var(--le-muted);
  font-size:1rem;
  line-height:1.9;
  max-width:760px;
}

.glass-nav{
  background:rgba(255,255,255,.82);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(239,231,207,.8);
  box-shadow:0 4px 20px rgba(0,0,0,.03);
}

.navbar-brand{
  font-weight:900;
  color:var(--le-dark)!important;
  font-size:1.35rem;
  display:flex;
  align-items:center;
  gap:10px;
}

.brand-badge{
  width:42px;
  height:42px;
  border-radius:14px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,var(--le-primary),#ffe281);
  color:var(--le-dark);
  box-shadow:var(--le-shadow-sm);
}

.nav-link{
  color:var(--le-dark)!important;
  font-weight:700;
  opacity:.9;
}

.nav-link:hover{
  opacity:1;
  color:#000!important;
}

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

.hero-blur{
  position:absolute;
  border-radius:50%;
  filter:blur(40px);
  opacity:.5;
  z-index:0;
}

.hero-blur.one{
  width:260px;
  height:260px;
  top:-30px;
  right:-60px;
  background:rgba(251,199,13,.28);
}

.hero-blur.two{
  width:220px;
  height:220px;
  bottom:10px;
  left:-40px;
  background:rgba(250,235,180,.8);
}

.hero-wrap{
  position:relative;
  z-index:1;
}

.hero-chip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 16px;
  border-radius:999px;
  background:rgba(251,199,13,.14);
  color:var(--le-dark);
  border:1px solid rgba(251,199,13,.24);
  font-weight:700;
  margin-bottom:18px;
}

.hero-title{
  font-size:clamp(2.1rem,4vw,4rem);
  line-height:1.2;
  font-weight:900;
  color:var(--le-dark);
  margin-bottom:18px;
}

.hero-title .accent{
  color:#a17100;
  position:relative;
}

.hero-desc{
  color:var(--le-muted);
  font-size:1.08rem;
  line-height:2;
  margin-bottom:28px;
  max-width:700px;
}

.hero-card{
  position:relative;
  background:linear-gradient(145deg,#fffef9,#fff7da);
  border:1px solid rgba(251,199,13,.28);
  border-radius:var(--le-radius-lg);
  box-shadow:var(--le-shadow-lg);
  padding:28px;
  overflow:hidden;
}

.hero-card::before{
  content:"";
  position:absolute;
  inset:auto -60px -60px auto;
  width:180px;
  height:180px;
  border-radius:50%;
  background:rgba(251,199,13,.18);
}

.hero-stat-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
  margin-top:18px;
}

.hero-stat{
  background:rgba(255,255,255,.78);
  border:1px solid rgba(239,231,207,.9);
  border-radius:20px;
  padding:18px;
  box-shadow:var(--le-shadow-sm);
}

.hero-stat .label{
  color:var(--le-muted);
  font-size:.92rem;
  margin-bottom:6px;
}

.hero-stat .value{
  color:var(--le-dark);
  font-size:1.6rem;
  font-weight:900;
}

.btn-le,
.btn-le-outline,
.btn-le-dark{
  min-height:52px;
  border-radius:16px;
  padding:12px 22px;
  font-weight:800;
  transition:var(--le-transition);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border:0;
}

.btn-le{
  background:linear-gradient(135deg,var(--le-primary),#ffd84c);
  color:var(--le-dark);
  box-shadow:0 12px 28px rgba(251,199,13,.28);
}

.btn-le:hover{
  transform:translateY(-3px);
  box-shadow:0 18px 34px rgba(251,199,13,.34);
  color:var(--le-dark);
}

.btn-le-dark{
  background:linear-gradient(135deg,var(--le-dark),var(--le-dark-2));
  color:#fff;
  box-shadow:0 12px 28px rgba(88,89,91,.22);
}

.btn-le-dark:hover{
  transform:translateY(-3px);
  color:#fff;
}

.btn-le-outline{
  background:#fff;
  color:var(--le-dark);
  border:1px solid rgba(88,89,91,.14);
  box-shadow:var(--le-shadow-sm);
}

.btn-le-outline:hover{
  transform:translateY(-3px);
  border-color:rgba(251,199,13,.5);
  color:var(--le-dark);
}

.kpi-card{
  position:relative;
  background:linear-gradient(180deg,rgba(255,255,255,.98),rgba(255,250,234,.98));
  border:1px solid rgba(239,231,207,.95);
  border-radius:26px;
  padding:24px;
  box-shadow:var(--le-shadow-sm);
  overflow:hidden;
  transition:var(--le-transition);
  height:100%;
}

.kpi-card:hover{
  transform:translateY(-8px);
  box-shadow:var(--le-shadow-md);
  border-color:rgba(251,199,13,.38);
}

.bg-icon-float{
  position:absolute;
  left:-10px;
  bottom:-12px;
  font-size:4.6rem;
  color:rgba(251,199,13,.14);
  transition:var(--le-transition);
  pointer-events:none;
}

.kpi-card:hover .bg-icon-float{
  transform:scale(1.12) rotate(-6deg);
  color:rgba(251,199,13,.22);
}

.kpi-label{
  color:var(--le-muted);
  font-weight:700;
  margin-bottom:8px;
}

.kpi-value{
  color:var(--le-dark);
  font-size:2rem;
  font-weight:900;
  line-height:1.1;
  margin-bottom:8px;
}

.kpi-note{
  color:#9a7b15;
  font-size:.95rem;
  font-weight:700;
}

.feature-card,
.package-card,
.year-card,
.info-card,
.step-card{
  position:relative;
  background:rgba(255,255,255,.96);
  border:1px solid var(--le-border);
  border-radius:26px;
  padding:24px;
  box-shadow:var(--le-shadow-sm);
  height:100%;
  transition:var(--le-transition);
}

.feature-card:hover,
.package-card:hover,
.year-card:hover,
.info-card:hover,
.step-card:hover{
  transform:translateY(-8px);
  box-shadow:var(--le-shadow-md);
}

.feature-icon,
.step-icon{
  width:64px;
  height:64px;
  border-radius:20px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,rgba(251,199,13,.18),rgba(251,199,13,.34));
  color:var(--le-dark);
  font-size:1.5rem;
  margin-bottom:16px;
}

.card-title-le{
  font-size:1.2rem;
  font-weight:800;
  color:var(--le-dark);
  margin-bottom:10px;
}

.card-text-le{
  color:var(--le-muted);
  line-height:1.9;
  margin:0;
}

.soft-section{
  background:linear-gradient(180deg,rgba(250,235,180,.18),rgba(255,255,255,.5));
  border-top:1px solid rgba(251,199,13,.12);
  border-bottom:1px solid rgba(251,199,13,.12);
}

.package-image{
  width:100%;
  aspect-ratio:16/10;
  object-fit:cover;
  border-radius:20px;
  background:#f8f4e6;
  margin-bottom:18px;
}

.package-price{
  font-size:1.45rem;
  font-weight:900;
  color:var(--le-dark);
}

.package-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(251,199,13,.14);
  color:#8b6a00;
  font-weight:800;
  font-size:.92rem;
}

.timeline-line{
  position:relative;
  padding-inline-start:28px;
}

.timeline-line::before{
  content:"";
  position:absolute;
  top:4px;
  right:8px;
  width:2px;
  height:calc(100% - 8px);
  background:linear-gradient(to bottom,rgba(251,199,13,.6),rgba(251,199,13,.05));
}

.timeline-item{
  position:relative;
  margin-bottom:22px;
}

.timeline-item::before{
  content:"";
  position:absolute;
  right:-1px;
  top:6px;
  width:18px;
  height:18px;
  background:var(--le-primary);
  border:4px solid #fff;
  border-radius:50%;
  box-shadow:0 0 0 1px rgba(251,199,13,.32);
}

.timeline-title{
  font-weight:800;
  color:var(--le-dark);
  margin-bottom:4px;
}

.timeline-text{
  color:var(--le-muted);
  line-height:1.8;
}

.footer-le{
  background:linear-gradient(135deg,var(--le-dark),#4b4c4f);
  color:#fff;
  padding:28px 0;
}

.footer-link{
  color:rgba(255,255,255,.86);
  font-weight:700;
}

.footer-link:hover{
  color:#fff;
}

.social-btn{
  width:44px;
  height:44px;
  border-radius:14px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,.12);
  color:#fff;
  transition:var(--le-transition);
}

.social-btn:hover{
  transform:translateY(-3px);
  background:rgba(251,199,13,.9);
  color:var(--le-dark);
}

.register-page{
  padding-top:118px;
  padding-bottom:70px;
}

.page-hero-mini{
  background:linear-gradient(135deg,rgba(251,199,13,.18),rgba(250,235,180,.35));
  border:1px solid rgba(251,199,13,.22);
  border-radius:30px;
  padding:26px;
  box-shadow:var(--le-shadow-sm);
  margin-bottom:24px;
}

.stepper-wrap{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom:24px;
}

.step-pill{
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 16px;
  border-radius:999px;
  background:#fff;
  border:1px solid rgba(88,89,91,.12);
  color:var(--le-muted);
  font-weight:800;
  transition:var(--le-transition);
}

.step-pill .num{
  width:28px;
  height:28px;
  border-radius:50%;
  background:#f3f4f6;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:.9rem;
  color:var(--le-dark);
}

.step-pill.active{
  background:linear-gradient(135deg,var(--le-primary),#ffe176);
  color:var(--le-dark);
  border-color:transparent;
  box-shadow:0 10px 24px rgba(251,199,13,.24);
}

.step-pill.active .num{
  background:rgba(255,255,255,.72);
}

.form-shell{
  background:rgba(255,255,255,.97);
  border:1px solid var(--le-border);
  border-radius:30px;
  padding:26px;
  box-shadow:var(--le-shadow-md);
}

.form-step{
  display:none;
}

.form-step.active{
  display:block;
}

.form-label{
  font-weight:800;
  color:var(--le-dark);
  margin-bottom:8px;
}

.form-control,
.form-select,
.form-control:focus,
.form-select:focus{
  border-radius:16px;
  min-height:52px;
  box-shadow:none!important;
}

.form-control,
.form-select{
  border:1px solid rgba(88,89,91,.14);
  color:var(--le-dark);
  padding:12px 16px;
}

.form-control:focus,
.form-select:focus{
  border-color:rgba(251,199,13,.68);
}

.form-hint{
  color:var(--le-muted);
  font-size:.92rem;
  margin-top:6px;
}

.upload-box{
  border:2px dashed rgba(251,199,13,.5);
  background:linear-gradient(180deg,rgba(255,250,236,.95),rgba(255,255,255,.98));
  border-radius:24px;
  padding:22px;
  text-align:center;
  transition:var(--le-transition);
  height:100%;
}

.upload-box:hover{
  transform:translateY(-4px);
  box-shadow:var(--le-shadow-sm);
}

.upload-icon{
  width:70px;
  height:70px;
  border-radius:22px;
  margin:0 auto 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(251,199,13,.18);
  color:var(--le-dark);
  font-size:1.7rem;
}

.summary-card{
  background:linear-gradient(180deg,rgba(255,255,255,.98),rgba(255,248,224,.95));
  border:1px solid var(--le-border);
  border-radius:24px;
  padding:18px;
  height:100%;
}

.summary-item{
  display:flex;
  justify-content:space-between;
  gap:14px;
  padding:11px 0;
  border-bottom:1px dashed rgba(88,89,91,.12);
}

.summary-item:last-child{
  border-bottom:0;
}

.summary-key{
  color:var(--le-muted);
  font-weight:700;
}

.summary-value{
  color:var(--le-dark);
  font-weight:800;
  text-align:left;
}

.sticky-actions{
  position:sticky;
  bottom:16px;
  z-index:20;
  margin-top:20px;
}

.action-bar{
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(12px);
  border:1px solid rgba(239,231,207,.9);
  box-shadow:var(--le-shadow-md);
  border-radius:24px;
  padding:14px;
}

.badge-soft{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(88,89,91,.08);
  color:var(--le-dark);
  font-weight:700;
}

.empty-box{
  background:#fff;
  border:1px dashed rgba(88,89,91,.18);
  border-radius:22px;
  padding:26px;
  color:var(--le-muted);
  text-align:center;
}

@media (max-width:991.98px){
  .hero-section{
    padding-top:105px;
  }

  .hero-card{
    margin-top:24px;
  }
}

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

  .hero-title{
    font-size:2.2rem;
  }

  .hero-desc{
    font-size:1rem;
  }

  .stepper-wrap{
    gap:8px;
  }

  .step-pill{
    width:100%;
    justify-content:flex-start;
  }

  .form-shell,
  .page-hero-mini,
  .hero-card,
  .kpi-card,
  .feature-card,
  .package-card,
  .year-card,
  .info-card,
  .step-card{
    border-radius:22px;
  }

  .btn-le,
  .btn-le-outline,
  .btn-le-dark{
    width:100%;
  }

  .summary-item{
    flex-direction:column;
    align-items:flex-start;
  }
}
