/* =====================================================================
   home.css
   خاص بالصفحة الرئيسية (index.html)
   يعتمد على app.css و header.css — حمّلهم قبله
   ===================================================================== */
/* =====================================================================
   header.css
   الهيدر الموحّد لكل صفحات الموقع — المصدر الوحيد لتنسيقات الهيدر
   يعتمد على المتغيرات في app.css — حمّل app.css قبله
   ===================================================================== */

header.site-header{
  position:fixed;
  inset-block-start:0;
  inset-inline:0;
  width:100%;
  z-index:1000;
  background:transparent;
  border-bottom:none;
  direction:ltr;
  padding-block:0.25rem;
  backdrop-filter:none;
  box-shadow:none;
  opacity:0;
  transform:translateY(-14px);
  transition:opacity .35s ease, transform .35s ease;
  overflow:hidden;
  isolation:isolate;
}

/* عند السكرول: الهيدر الشفاف (بصفحات زي الرئيسية) بيرجع static بدل fixed.
   ملاحظة: صفحات auth (login/signup...) عندها استثناء خاص محدد بـ auth.css
   عبر .site-header.header-solid.scrolled (specificity أعلى)، فبيضل fixed هناك فقط. */
header.site-header.scrolled{
  position: static !important;
  transform: none;
  box-shadow: none;
  background: transparent;
  padding-block: 0.35rem;
  border-color: transparent;
}
header.site-header.ready{
  opacity:1;
  transform:translateY(0);
}

/* فاصل يمنع تغطية المحتوى — الارتفاع يُحدَّث ديناميكياً عبر header.js */
.header-spacer{
  height:var(--header-height, 6rem);
  flex-shrink:0;
}

.nav-inner{
  max-width:1520px;
  margin:0 auto;
  padding:0.85rem 2rem;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1.5rem;
  direction:ltr;
  position:relative;
  z-index:1;
}

.brand-mark{
  display:flex;
  align-items:center;
  gap:0.625rem;
  padding-inline-start:0.25rem;
  flex-shrink:0;
}
.brand-mark .brand-logo{
  width:5.125rem;
  height:5.125rem;
  object-fit:contain;
  flex-shrink:0;
}
.brand-mark .brand-text{
  font-family:'Cairo',sans-serif;
  font-weight:700;
  font-size:clamp(1.5rem, 3vw, 2.5rem);
  color:#1E4FD1;
  transition:transform 0.3s ease;
  display:flex;
  align-items:center;
  gap:0.25rem;
  text-shadow:0 1px 3px rgba(0,0,0,0.28);
}
.brand-mark .brand-text span{color:var(--cyan);}
.brand-mark .brand-text:hover{transform:translateY(-0.35rem);}

nav.main-nav ul{
  display:flex;
  gap:2.25rem;
  font-size:21px;
  font-weight:800;
  color:#f7fbff;
}
nav.main-nav a{
  position:relative;
  transition:color .25s ease, transform .25s ease, text-shadow .25s ease;
  padding-block:0.2rem;
  
}
.main-nav ul li a:hover {
    color: var(--cyan); /* يتغير للون السماوي من هويتك البصرية */
    transform: translateY(-2px); /* حركة خفيفة للأعلى */
}

/* تأثير الضغط الفعلي على الرابط (Active/Click) */
.main-nav ul li a:active {
    transform: translateY(0); /* يعود لمكانه عند الضغط عليه */
    opacity: 0.8;
}

/* تنسيق الصفحة الحالية (Active Class الموجودة في الـ HTML) */
.main-nav ul li a.active {
    color: var(--cyan);
    font-weight: 700;
}
nav.main-nav a::after{
  content:"";
  position:absolute;
  inset-inline-start:0;
  inset-block-end:-0.25rem;
  width:0;
  height:2px;
  background:transparent;
  border-radius:999px;
  transition:width .25s ease;
}
nav.main-nav a:hover,
nav.main-nav a:focus-visible,
nav.main-nav a.active{
  color:#ffffff;
  transform:translateY(-1px);
  text-shadow:0 1px 3px rgba(0,0,0,0.25);
}
nav.main-nav a:hover::after,
nav.main-nav a:focus-visible::after{width:100%;}

.nav-actions{
  display:flex;
  align-items:center;
  gap:1rem;
  flex-shrink:0;
}

.start-btn{
  padding:0.5625rem 1.375rem;
  border-radius:999px;
  display:flex;
  align-items:center;
  gap:0.5rem;
  background-color:rgba(255,255,255,0.16);
  color:#f7fbff;
  border:1px solid rgba(255,255,255,0.22);
  border:none;
  font-size:18px;
  font-weight:800;
  cursor:pointer;
  transition:background-color 0.2s ease, transform 0.2s ease;
  font-family:'Cairo', sans-serif;
}
.start-btn:hover{
  background-color:rgba(255,255,255,0.24);
  transform:scale(1.02);
}
.start-btn svg{width:1.125rem;height:1.125rem;}

.btn-signin {
  padding: 0.5625rem 1.375rem;
  border-radius: 999px;
  border: none;
  background-color: #48E680;
  color: #173873;
  font-family: 'Cairo', sans-serif;
  font-weight: 700;
  font-size: 18px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(72, 230, 128, 0.3);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
padding: 14px 16px;}

.btn-signin:hover {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 6px 18px rgba(72, 230, 128, 0.4);
  filter: brightness(1.04);
}

.btn-signin:active {
  transform: translateY(0) scale(0.98);
  filter: brightness(0.96);
}

@keyframes btnWave{
  0% { transform:translateX(-140%) rotate(10deg); }
  100% { transform:translateX(140%) rotate(10deg); }
}

/* زر الملف الشخصي في الهيدر (صفحات المستخدم المسجّل) */
.nav-avatar-btn{
  display:flex;
  align-items:center;
  gap:8px;
  padding:5px 12px 5px 5px;
  border-radius:999px;
  border:1.5px solid var(--border);
  background:#fff;
  transition:border-color .2s ease;
}
.nav-avatar-btn:hover{border-color:rgba(15, 41, 75, 0.25);}
.nav-avatar-btn .avatar-circle{
  width:30px;
  height:30px;
  border-radius:50%;
  background:var(--navy);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:12px;
  font-weight:800;
  flex-shrink:0;
}
.nav-avatar-btn span{font-size:12.5px;font-weight:700;color:var(--navy);}

@media (max-width:960px){
  nav.main-nav{display:none;}
}
@media (max-width:560px){
  .brand-mark .brand-logo{width:3.25rem;height:3.25rem;}
  .brand-mark .brand-text{font-size:1.5rem;}
  .header-spacer{height:5rem;}
}
/* ======================= HERO (full-bleed background photo) ======================= */

section.hero{
  position:relative;
  display:flex;
  align-items:center;
  overflow:hidden;
  isolation:isolate;
  min-height:800px;
  padding:clamp(6rem, 8vw, 8rem) 2rem 4rem;
  background:transparent;
  direction: rtl;
}
.hero-media,
.hero-overlay{
  position:absolute;
  inset:0;
}
.hero-media video{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
   position:absolute;
  inset:0;
}

.hero-inner{
  max-width:1240px;
  margin:0 auto;
  padding:0 32px;
  width:100%;
  position:relative;
  z-index:1;
}
.hero-copy{
  max-width:620px;
  display:flex;
  flex-direction:column;
  gap:16px;
  animation:heroFadeIn 1s ease-out both;
  padding:1.5rem 0;
}
.hero-badge{
  display:inline-flex;
  align-self:flex-start;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(53,208,255,0.16);
  border:1px solid rgba(53,208,255,0.35);
  color:#dff7ff;
  font-size:13px;
  font-weight:700;
}
.hero-copy h1{
  font-family:'Poppins',sans-serif;
  font-weight:700;
  font-size:clamp(32px,5vw,60px);
  color:#1E4FD1;
  margin-bottom:4px;
  line-height:1.05;
}
.hero-copy h1 span{color:var(--cyan);}
.hero-copy h2{
  font-weight:700;
  font-size:clamp(20px,2.4vw,32px);
  color:#fff;
  margin-bottom:8px;
}
.hero-copy p.lead{
  font-size:clamp(15px,1.6vw,18px);
  line-height:1.8;
  color:#E9F2FF;
  max-width:500px;
  margin-bottom:8px;
    margin-left: -21px;
}
.hero-actions{display:flex;gap:14px;margin-bottom:0;flex-wrap:wrap;}


.stats-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 20px 0px;
  border-radius: 16px;
  width: fit-content;
  direction: ltr;
  font-family: 'Segoe UI', Tahoma, sans-serif;
  margin-right: -28px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 32px;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
}

.stat-item:nth-child(1) { animation-delay: 0.1s; }
.stat-item:nth-child(3) { animation-delay: 0.3s; }
.stat-item:nth-child(5) { animation-delay: 0.5s; }

.stat-number {
  font-size: 42px;
  font-weight: 700;
  color: #35D0FF;
  line-height: 1.1;
  margin-bottom: 6px;
}
.stat-number span{
    color: #F5F7FA;
}
.stat-label {
 
  color: #2F6BFF;

  opacity: 0.9;
  font-size: 24px;

  font-weight: 700;
}

.divider {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.25);
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.btn-primary{
  padding:12px 24px;
  border-radius:999px;
background: linear-gradient(135deg, #2F6BFF 0%, #35D0FF 100%);  color:#fff;
  font-weight:800;
  font-size:16px;
  display:inline-flex;
  align-items:center;
  gap:8px;
  box-shadow:0 14px 28px rgba(53, 208, 255, 0.28);
  transition:transform .2s ease, box-shadow .2s ease, filter .2s ease;
  border:1px solid rgba(255,255,255,0.24);
}
.btn-primary svg{width:16px;height:16px;}
.btn-primary:hover{
  transform:translateY(-2px) scale(1.01);
  box-shadow:0 18px 32px rgba(53, 208, 255, 0.34);
  filter:brightness(1.03);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  border-radius: 999px; /* زوايا دائرية ناعمة تماماً مثل الهوية */
  border: 1.5px solid rgba(255, 255, 255, 0.6); /* إطار أبيض شفاف أنيق */
  background-color: transparent; /* خلفية شفافة */
  color: #ffffff; /* نص أبيض واضح */
  font-family: 'Cairo', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  backdrop-filter: blur(4px); /* تأثير ضبابي خفيف للخلفية */
  transition: all 0.25s ease;
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.12); /* تفاعل خفيف عند المرور */
  border-color: #35D0FF; /* يتغير لون الإطار إلى لون الـ Cyan الخاص بالهوية */
 color: #fff;/* يتغير لون النص إلى السماوي */
  transform: translateY(-2px);
}

.btn-outline:active {
  transform: translateY(0);
}
/* ======================= FEATURES ROW ======================= */
.features-section{
  background:#F5F7FA !important;
  flex-shrink:0;
  padding:2.4rem 1.35rem 2.7rem !important;


 
  box-shadow:0 24px 54px rgba(8, 25, 45, 0.24) !important;
}
.features-row{
 max-width: 1360px;
  min-height: 199px;
  margin: 0 auto;
  padding: 46px 0px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
  align-items:start;
}
.feature-item{
  display:flex;
  align-items:flex-start;
  gap: 20px;
  padding: 54px 18px;
  border-radius:22px;
  background:rgba(255,255,255,0.98) !important;
  box-shadow:0 16px 32px rgba(8, 25, 45, 0.14) !important;
  border:2px solid rgba(255,255,255,0.30) !important;
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.feature-item:hover{
  transform:translateY(-5px) scale(1.01);
  box-shadow:0 20px 38px rgba(8, 25, 45, 0.18) !important;
  border-color:rgba(53,208,255,0.48) !important;
}
.feature-item .icon-wrap{
  width:50px;height:50px;
  border-radius:16px;
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;
}
.feature-item:nth-child(1) .icon-wrap{background:rgba(53,208,255,0.22);color:var(--cyan);}
.feature-item:nth-child(2) .icon-wrap{background:rgba(22,192,136,0.22);color:var(--mint);}
.feature-item:nth-child(3) .icon-wrap{background:rgba(47,107,255,0.20);color:var(--blue);}
.feature-item:nth-child(4) .icon-wrap{background:rgba(22,35,61,0.14);color:var(--navy);}
.feature-item .icon-wrap svg{width:22px;height:22px;}
.feature-item h3{font-size:18px;font-weight:800;color:var(--navy);margin-bottom:3px;}
.feature-item p{font-size:12px;font-weight:700;color:var(--gray);line-height:1.6;}




.steps-section {
    text-align: center;
    max-width: 1903px;
    padding: 40px 20px;
    direction: ltr;
    background: #F5F7FA !important;
}
/* الشارة العليا */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #eef2ff;
    color: #4f46e5;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

/* العناوين */
.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #1e1b4b;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 50px;
}

/* شبكة البطاقات */
.cards-container {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

/* تصميم البطاقة */
.step-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px 30px 30px;
    width: 350px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid #f3f4f6;
    text-align: right;
    transition: transform 0.3s ease;
    border: 2px solid rgba(255,255,255,0.30) !important;
    box-shadow: 0 16px 32px rgba(8, 25, 45, 0.14) !important;
}

.step-card:hover {

  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(23,59,148,0.14);
  border-color: rgba(23,59,148,0.16);
  
}
.cta-banner:hover{
 
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(23,59,148,0.14);
  border-color: rgba(23,59,148,0.16);
}
/* شارة رقم الخطوة العلوية البارزة */
.step-badge {
    position: absolute;
    top: -20px;
    right: 40px;
    background: #2563eb;
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
   
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);

    font-family: 'Cairo', sans-serif;
  font-weight: 700; /* وزن عريض وواضح للأرقام */
  font-size: 1.25rem;
  

  text-align: center;
  font-variant-numeric: tabular-nums;
}

/* أيقونة البطاقة */
.card-icon {
  width: 62px;
  height: 49px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(53, 208, 255, 0.1);
  border-radius: 20px;
  transition: transform 0.3s ease;
  margin-left: 219px;
}

.card-icon svg {
  width: 44px;  /* عرض الأيقونة الداخلي */
  height: 44px; /* ارتفاع الأيقونة الداخلي */
}

.card-icon:hover {
  transform: scale(1.05); /* تفاعل خفيف عند مرور الماوس */
}

/* النصوص داخل البطاقة */
.step-card h3 {
    font-size: 25px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
}

.step-card p {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.6;
}
/* ======================= STATS BAR ======================= */
.stats-bar{
  background:linear-gradient(90deg, var(--navy) 0%, var(--blue) 100%);
  flex-shrink:0;
  overflow:hidden;
}
.stats-inner{
  max-width:1240px;
  margin:0 auto;
  padding:18px 32px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  align-items:center;
}
.stats-inner .stat{
  text-align:center;
  color:#fff;
  border-left:1px solid rgba(255,255,255,0.14);
  animation:statFloat 0.9s ease-out both;
  will-change:transform;
}
.stats-inner .stat:nth-child(1){animation-delay:0.1s;}
.stats-inner .stat:nth-child(2){animation-delay:0.25s;}
.stats-inner .stat:nth-child(3){animation-delay:0.4s;}
.stats-inner .stat:nth-child(4){animation-delay:0.55s;}
.stats-inner .stat:last-child{border-left:none;}
.stat .num{
  font-family:'cario',sans-serif;
  font-weight:800;
  font-size:28px;
}
.stat .num span{color:var(--mint);}
.stat .lbl{font-size:18px;font-weight:700;color:#C7D2E0;margin-top:2px;}
.stat.tagline{
  font-size:18px;
  font-weight:700;
  color:#fff;
  line-height:1.5;
}
/* حاوية القسم */


/* البانر الكبير ذو التدرج الأزرق */
.cta-banner {
    width: 100%;
    max-width: 1000px;
    background: linear-gradient(135deg, #173873 0%, #2F68FF 100%);
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    color: #ffffff;
    box-shadow: 0 20px 40px rgba(47, 104, 255, 0.2);
    position: relative;
    overflow: hidden;
}

/* عنوان البانر */
.cta-banner h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

/* النص التوضيحي */
.cta-banner p {
    font-size: 16px;
    color: #E9EDF3;
    margin-bottom: 35px;
    line-height: 1.6;
}

/* حاوية الأزرار */
.cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* الزر الأساسي (أخضر نعناعي حسب الهوية) */
.cta-banner .btn-primary {
    background: linear-gradient(135deg, #2F6BFF 0%, #35D0FF 100%);/* لون Mint أو الأخضر المتوافق مع الهوية */
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(49, 196, 141, 0.3);
}

.cta-banner .btn-primary:hover {
    background-color: #28a776;
    transform: translateY(-2px);
}

/* الزر الشفاف */
.cta-banner .btn-outline {
    background-color: rgba(212, 214, 223, 0.08);
    color: #F5F7FA;
    padding: 14px 28px;
    border-radius: 12px;
   font-weight: 700;
  font-size: 16px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.cta-banner .btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

/* التجاوب مع الشاشات الصغيرة */
@media (max-width: 600px) {
    .cta-banner {
        padding: 40px 20px;
    }
    .cta-banner h2 {
        font-size: 24px;
    }
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    .cta-banner .btn-primary, 
    .cta-banner .btn-outline {
        width: 100%;
        text-align: center;
    }
}/* حاوية القسم */
.cta-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
    background-color: #F5F7FA; /* متناسق مع خلفية الموقع */
    font-family: 'Cairo', sans-serif;
    direction: rtl;
}

/* البانر الكبير ذو التدرج الأزرق */
.cta-banner {
    width: 100%;
    max-width: 1000px;
   background: linear-gradient(180deg, #3d5677 0%, #7d8da7 100%);
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    color: #ffffff;
    box-shadow: 0 20px 40px rgba(47, 104, 255, 0.2);
    position: relative;
    overflow: hidden;
}

/* عنوان البانر */
.cta-banner h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

/* النص التوضيحي */
.cta-banner p {
    font-size: 16px;
    color: #E9EDF3;
    margin-bottom: 35px;
    line-height: 1.6;
}

/* حاوية الأزرار */
.cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* الزر الأساسي (أخضر نعناعي حسب الهوية) */
.cta-banner .btn-primary {
    background-color: #31C48D; /* لون Mint أو الأخضر المتوافق مع الهوية */
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(49, 196, 141, 0.3);
}

.cta-banner .btn-primary:hover {
    background-color: #28a776;
    transform: translateY(-2px);
}

/* الزر الشفاف */
.cta-banner .btn-outline {
    background-color: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.cta-banner .btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

/* التجاوب مع الشاشات الصغيرة */
@media (max-width: 600px) {
    .cta-banner {
        padding: 40px 20px;
    }
    .cta-banner h2 {
        font-size: 24px;
    }
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    .cta-banner .btn-primary, 
    .cta-banner .btn-outline {
        width: 100%;
        text-align: center;
    }
}


@keyframes statFloat{
  0% { transform: translateY(10px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

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

@keyframes driftScene{
  0% { transform: translate3d(-2%, 0, 0) scale(1.01); }
  100% { transform: translate3d(2.5%, 0, 0) scale(1.04); }
}

@keyframes floatPhoto{
  0% { transform: translateY(0px) scale(1); }
  100% { transform: translateY(-8px) scale(1.02); }
}

@keyframes shineSweep{
  0% { transform: translateX(-20%); opacity: 0; }
  50% { transform: translateX(20%); opacity: 0.4; }
  100% { transform: translateX(40%); opacity: 0; }
}

/* ======================= CTA (انتقالي قبل الفوتر) ======================= */
.home-cta{
  background:linear-gradient(160deg, var(--bg-page) 0%, #EAF1FF 100%);
  padding:80px 16px;
  text-align:center;
  border-top:1px solid var(--border);
}
.home-cta h2{
  font-family:'Poppins',sans-serif;
  font-weight:800;
  font-size:clamp(22px,3.4vw,32px);
  color:var(--navy);
  margin-bottom:14px;
}
.home-cta p{
  font-size:15px;
  color:var(--gray);
  max-width:480px;
  margin:0 auto 30px;
  line-height:1.8;
}
.home-cta-actions{
  display:flex;
  gap:16px;
  justify-content:center;
  flex-wrap:wrap;
}
.home-cta .btn-primary{display:inline-flex;align-items:center;gap:8px;}
.home-cta .btn-outline{border-color:var(--navy);color:var(--navy);background:transparent;}
.home-cta .btn-outline:hover{border-color:var(--blue);color:var(--blue);background:transparent;}

@media (max-width:960px){
  .features-row{grid-template-columns:1fr 1fr;}
}
@media (max-width:560px){
  .features-row{grid-template-columns:1fr;}
  .stats-inner{grid-template-columns:1fr 1fr;gap:14px;}
}
/* ======================= FLOATING WIDGETS (WhatsApp & AI Guide) ======================= */
.floating-widgets {
  position: fixed;
  bottom: 30px;
  left: 30px; /* تم التغيير من right إلى left لتصبح في الجهة اليسار */
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 15px;
  direction: ltr;
}

.float-btn {
  width: 65px;  /* تم تكبير الحجم من 55px إلى 65px */
  height: 65px; /* تم تكبير الحجم من 55px إلى 65px */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  cursor: pointer;
  animation: floatWidget 3s ease-in-out infinite;
}

.ai-guide-btn {
  background: linear-gradient(135deg, #2F6BFF 0%, #35D0FF 100%);
  color: #ffffff;
  animation-delay: 0s;
}

.whatsapp-btn {
  background-color: #25D366;
  color: #ffffff;
  animation-delay: 1.5s;
}

.float-btn svg {
  width: 34px;  /* تم تكبير أيقونة الداخله ل تتناسب مع الحجم الجديد */
  height: 34px;
}

.float-btn:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 12px 25px rgba(53, 208, 255, 0.4);
  animation-play-state: paused;
}

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

.float-btn .tooltip {
  position: absolute;
  left: 75px; /* تم تغييرها لتظهر إلى اليمين من الأيقونة بما أنها أصبحت على اليسار */
  background-color: #173873;
  color: #fff;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-family: 'Cairo', sans-serif;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  pointer-events: none;
}

.float-btn:hover .tooltip {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 560px) {
  .floating-widgets {
    bottom: 20px;
    left: 20px;
  }
  .float-btn {
    width: 55px;
    height: 55px;
  }
  .float-btn svg {
    width: 28px;
    height: 28px;
  }
}
.popover-wrapper {
  position: relative;
  display: inline-block;
}

.soon-popover {
  position: absolute;
  bottom: 125%; /* تظهر فوق الأيقونة */
  left: 50%;
  transform: translateX(-50%) translateY(5px);
  background-color: #173873;
  color: #35D0FF;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: bold;
  font-family: 'Poppins', 'Cairo', sans-serif;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  white-space: nowrap;
  pointer-events: none;
  z-index: 10;
}

/* سهم صغير أسفل القائمة */
.soon-popover::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 5px;
  border-style: solid;
  border-color: #173873 transparent transparent transparent;
}

/* إظهار القائمة المنبثقة */
.popover-wrapper.active .soon-popover {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}