/* =====================================================
   BUTTONS
===================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: 2px solid transparent; border-radius: 999px;
  padding: 13px 26px; font-family: 'Space Grotesk', sans-serif;
  font-size: 15px; font-weight: 700; cursor: pointer; white-space: nowrap;
  transition: transform .2s, box-shadow .2s, background .2s, border-color .2s;
  line-height: 1;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(10,22,40,.15); }
.btn-primary { background: var(--brand-yellow); color: var(--brand-text); border-color: var(--brand-yellow); }
.btn-primary:hover { background: var(--brand-yel-dk); border-color: var(--brand-yel-dk); }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.btn-outline-blue { background: transparent; color: var(--brand-blue); border-color: var(--brand-blue); }
.btn-outline-blue:hover { background: #eff6ff; }
.btn-outline-yellow { background: transparent; color: var(--brand-yellow); border-color: var(--brand-yellow); }
.btn-outline-yellow:hover { background: rgba(254,206,0,.1); }
.btn-green { background: #25D366; color: #fff; border-color: #25D366; }
.btn-green:hover { background: #1ebe5a; box-shadow: 0 12px 28px rgba(37,211,102,.35); }

/* =====================================================
   CHIPS (hero tags)
===================================================== */
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px; border-radius: 999px; font-size: 13px; font-weight: 600;
  border: 1px solid rgba(254,206,0,.38); color: rgba(255,255,255,.82);
  background: rgba(254,206,0,.07);
}

/* =====================================================
   TRUST BAR ITEMS
===================================================== */
.trust-bar { background: var(--brand-gray); padding: 52px 0; border-bottom: 1px solid var(--border); }
.trust-flex { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.trust-item {
  display: flex; align-items: center; gap: 14px;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 18px 26px;
  box-shadow: var(--sh-sm); min-width: 172px;
}
.trust-icon { font-size: 26px; flex-shrink: 0; }
.trust-label { font-family: 'Space Grotesk', sans-serif; font-size: 14px; font-weight: 700; line-height: 1.35; }

/* =====================================================
   STAT BOXES
===================================================== */
.who-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.stat-box { background: var(--brand-gray); border-radius: var(--r-lg); padding: 28px; text-align: center; }
.stat-val { font-family: 'Space Grotesk', sans-serif; font-size: 40px; font-weight: 700; color: var(--brand-blue); line-height: 1; margin-bottom: 6px; }
.stat-lbl { font-size: 13px; color: var(--brand-muted); font-weight: 500; }

/* =====================================================
   PROJECT CARDS
===================================================== */
.proj-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.proj-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 30px; box-shadow: var(--sh-sm);
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.proj-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 48px rgba(20,118,189,.17);
  border-color: var(--brand-blue);
}
.proj-icon { font-size: 38px; margin-bottom: 16px; }
.proj-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 9px; }
.proj-card p { font-size: 14px; color: var(--brand-muted); line-height: 1.6; margin-bottom: 14px; }
.proj-badge {
  display: inline-flex; align-items: center; gap: 4px;
  background: #EFF6FF; color: var(--brand-blue);
  font-size: 11px; font-weight: 700; padding: 5px 11px; border-radius: 999px;
}

/* =====================================================
   FAQ
===================================================== */
.faq-list { max-width: 860px; margin: 48px auto 0; display: grid; gap: 11px; }
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: var(--r-md); overflow: hidden; }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 21px 24px; background: none; border: none; text-align: left;
  font-family: 'Space Grotesk', sans-serif; font-size: 16px; font-weight: 700;
  color: var(--brand-text); cursor: pointer; transition: color .2s;
}
.faq-q:hover { color: var(--brand-blue); }
.faq-item.open .faq-q { color: var(--brand-blue); }
.faq-ico {
  flex-shrink: 0; width: 27px; height: 27px; border-radius: 50%;
  background: var(--brand-gray); display: grid; place-items: center;
  font-size: 16px; font-weight: 700; color: var(--brand-blue);
  transition: transform .3s, background .2s, color .2s;
}
.faq-item.open .faq-ico { transform: rotate(45deg); background: var(--brand-blue); color: #fff; }
.faq-ans { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-item.open .faq-ans { max-height: 400px; }
.faq-inner { padding: 0 24px 20px; font-size: 15px; color: var(--brand-muted); line-height: 1.75; }

/* =====================================================
   REGISTRATION FORM
===================================================== */
.reg-section { background: var(--brand-gray); }
.reg-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 56px; align-items: start; }
.form-card { background: #fff; border-radius: var(--r-xl); padding: 34px; box-shadow: var(--sh-lg); }
.form-fields { display: grid; gap: 15px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.form-group { display: grid; gap: 6px; }
.form-label { font-size: 12px; font-weight: 700; letter-spacing: .04em; color: var(--brand-text); }
.form-input {
  width: 100%; border: 1.5px solid var(--border); border-radius: var(--r-sm);
  padding: 12px 15px; font-family: 'IBM Plex Sans', sans-serif; font-size: 15px;
  color: var(--brand-text); background: #fff; outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.form-input:focus { border-color: var(--brand-blue); box-shadow: 0 0 0 4px rgba(20,118,189,.1); }
.form-input::placeholder { color: #CBD5E1; }
textarea.form-input { resize: vertical; min-height: 96px; }
.form-submit { margin-top: 6px; width: 100%; }
.steps-list { display: grid; gap: 14px; margin-bottom: 28px; }
.step-row { display: flex; gap: 12px; align-items: center; font-size: 15px; color: var(--brand-muted); }
.step-num {
  width: 30px; height: 30px; border-radius: 50%; background: #DBEAFE;
  color: var(--brand-blue); font-weight: 700; display: grid; place-items: center;
  font-size: 14px; flex-shrink: 0;
}
.success-card {
  display: none; background: #ECFDF5; border: 1px solid #6EE7B7;
  border-radius: var(--r-md); padding: 28px; text-align: center;
}
.success-card.show { display: block; }
.success-icon { font-size: 44px; margin-bottom: 10px; }
.success-card h3 { font-family: 'Space Grotesk', sans-serif; font-size: 20px; color: #065F46; margin-bottom: 8px; }
.success-card p { font-size: 15px; color: #047857; }
.err-banner {
  display: none; background: #FEF2F2; border: 1px solid #FCA5A5;
  border-radius: var(--r-sm); padding: 13px 16px; font-size: 14px; color: #991B1B;
}
.err-banner.show { display: block; }

/* =====================================================
   PORTAL NOTIFY FORM
===================================================== */
.notify-form { display: flex; gap: 11px; max-width: 420px; margin: 28px auto 0; }
.notify-form input {
  flex: 1; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px; padding: 12px 18px;
  font-family: 'IBM Plex Sans', sans-serif; font-size: 15px; color: #fff; outline: none;
}
.notify-form input::placeholder { color: rgba(255,255,255,.38); }
.notify-form input:focus { border-color: var(--brand-blue); }
.notify-ok { display: none; margin-top: 12px; font-size: 14px; color: rgba(255,255,255,.55); font-family: 'IBM Plex Sans', sans-serif; }

/* =====================================================
   CONTACT
===================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.contact-detail { background: var(--brand-gray); border-radius: var(--r-xl); padding: 34px; border: 1px solid var(--border); }
.contact-detail h3 { font-size: 19px; margin-bottom: 22px; }
.crow { display: flex; gap: 14px; margin-bottom: 16px; font-size: 15px; align-items: flex-start; }
.cico {
  width: 34px; height: 34px; border-radius: 10px; background: #F3F4F6;
  display: grid; place-items: center; flex-shrink: 0;
  font-size: 16px;
}
.clabel { font-weight: 700; color: var(--brand-text); font-size: 12px; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 3px; }
.cval { color: var(--brand-muted); font-size: 14px; line-height: 1.6; }
.clink { color: var(--brand-blue); text-decoration: none; transition: color .2s; }
.clink:hover { color: #0f5fa3; text-decoration: underline; }
.socials { display: flex; gap: 10px; margin-top: 26px; }
.soc-btn {
  width: 42px; height: 42px; background: #fff; border: 1.5px solid var(--border);
  border-radius: 12px; display: grid; place-items: center; font-size: 16px;
  color: #6B7280;
  transition: transform .2s, box-shadow .2s, background .2s, color .2s, border-color .2s;
}
.soc-btn:hover { transform: translateY(-3px); box-shadow: 0 6px 18px rgba(0,0,0,.12); color: #fff; border-color: transparent; }
.soc-fb:hover { background: #1877F2; }
.soc-wa:hover { background: #25D366; }
.soc-ig:hover { background: linear-gradient(135deg,#833AB4,#E1306C,#FD1D1D); }
.soc-li:hover { background: #0A66C2; }
.soc-em:hover { background: #EA4335; }

/* =====================================================
   WHATSAPP FLOAT
===================================================== */
.wa-float {
  position: fixed; bottom: 22px; right: 22px;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: #fff; display: grid; place-items: center;
  font-size: 26px; box-shadow: 0 8px 26px rgba(37,211,102,.42);
  z-index: 1000; transition: transform .2s, box-shadow .2s;
  animation: wapop .5s 1.2s ease backwards;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 14px 36px rgba(37,211,102,.5); }
/* RTL: float moves to the left so it doesn't overlap the logo */
html[dir="rtl"] .wa-float { right: auto; left: 22px; }
