/*------------------------------------------------------------------
Bottleneck - Clean CSS (Based on Soon Template)
Removed: countdown / map / modal / gallery / owl / magnific
-------------------------------------------------------------------*/

/* 1) Base */
html, body {
  width: 100%;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden;
  background-color: #191919;
  color: #fff;
  font-family: "Tajawal", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  font-size: 14px;
  position: relative;
}

img { max-width: 100%; }

a {
  transition: 0.5s ease;
  outline: none !important;
  color: #fff;
  text-decoration: none;
}
a:hover, a:focus, a:active { color: #fff; text-decoration: none; }

h1 {
  text-transform: uppercase;
  font-size: 90px;
  font-weight: 700;
  text-shadow: 0 4px 12px rgba(0,0,0,0.85), 0 0 25px rgba(0,0,0,0.6);
}
h2 {
  font-size: 24px;
  font-weight: normal;
  margin-bottom: 30px;
  text-shadow: 0 3px 10px rgba(0,0,0,0.75);
}
h3 { margin: 10px 0 25px; }
h4 { font-size: 16px; }

p {
  opacity: 0.85;
  text-shadow: 0 2px 8px rgba(0,0,0,0.7);
}

/* Helpers */
.center { text-align: center; }
.note { opacity: 0.7; font-size: 12px; margin: 8px 0; }
.shadow { box-shadow: 0 1px 10px rgba(0,0,0,0.07); }

/* 2) Background + Layers */
.background-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  background-color: #000;
}

/* Background transfer (if used) */
.bg-transfer {
  background-size: cover;
  background-position: center center;
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
  z-index: -1;
}
.bg-transfer img { display: none !important; }

/* Video background layer */
.video-background{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}
.video-background video{
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.90);
}

/* Particles layer */
#particles-js{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
#particles-js canvas{
  display: block;
  width: 100% !important;
  height: 100% !important;
  filter: drop-shadow(0 0 6px rgba(245,196,0,0.25));
}

/* Content layer */
#inner-wrapper{
  position: relative;
  height: 100%;
  z-index: 2;
  overflow: hidden;
  pointer-events: auto;
}

/* 3) Frame + Wrapper Layout */
body.frame{
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
}

/* Outer wrapper fixed fullscreen */
#outer-wrapper{
  position: fixed;
  inset: 0;
  height: 100%;
  width: 100%;
  transition: 1s;
  box-shadow: 0 0 50px rgba(0,0,0,0.4);
}
#outer-wrapper #table-wrapper{
  position: absolute;
  display: table;
  width: 100%;
  height: 100%;
  padding: 50px 0;
  z-index: 2;
}
#outer-wrapper #table-wrapper .container{
  height: 100%;
  display: table;
}
#row-header{
  position: relative;
  z-index: 3;
  text-align: center;
  margin-bottom: 20px;
}
#row-footer{
  position: relative;
  z-index: 3;
  bottom: 50px;
  padding-bottom: calc(22px + env(safe-area-inset-bottom));
}

/* Brand Logo */
#brand img{
  height: 80px;
  width: auto;
  opacity: 0.95;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,0.35));
}

/* Content / Navigation Rows */
#row-content{
  display: table;
  height: 100%;
  width: 100%;
}

#navigation-wrapper{
  position: absolute;
  top: 0;
  right: 0;
  width: 250px;
  height: 100%;
  padding: 40px;
  z-index: 4;
}
#navigation-wrapper .navigation{
  display: table;
  height: 100%;
  width: 100%;
}
#navigation-wrapper .navigation nav{
  transition: 0.5s ease;
  display: table-cell;
  vertical-align: middle;
  position: relative;
  z-index: 1;
  text-align: right;
}
#navigation-wrapper .navigation nav a{
  display: inline-block;
  float: right;
  clear: both;
  font-weight: 900;
  text-transform: uppercase;
  position: relative;
}
#navigation-wrapper .navigation nav a:before{
  transition: 0.5s ease;
  width: 0;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 0;
  content: "";
  background-color: #fff;
  z-index: 0;
}
#navigation-wrapper .navigation nav a span{
  transition: 0.5s ease;
  display: inline-block;
  position: relative;
  z-index: 1;
}
#navigation-wrapper .navigation nav a:hover:before,
#navigation-wrapper .navigation nav a.is-active:before{
  width: 100%;
}
#navigation-wrapper .navigation nav a:hover span,
#navigation-wrapper .navigation nav a.is-active span{
  color: #000;
}

/* The angled bg in navigation area (optional visual) */
#navigation-wrapper .background-wrapper{
  transform: rotate(8deg) scale(1.2);
  left: 120px;
  right: auto;
  width: 500px;
}

/* Content wrapper cell */
#content-wrapper{
  display: table-cell;
  vertical-align: middle;
  z-index: 3;
}

/* 4) Responsive Nav Button mode (used by JS viewport helper) */
.nav-btn{
  visibility: hidden;
  position: absolute;
  top: 40px;
  right: 40px;
  z-index: 5;
  width: 20px;
}
.nav-btn:hover{ cursor: pointer; }
.nav-btn i{
  width: 100%;
  height: 2px;
  background-color: #fff;
  margin-bottom: 4px;
  display: block;
}

/* When in nav button only mode */
body.nav-btn-only .nav-btn{ visibility: visible; }
body.nav-btn-only #navigation-wrapper .navigation nav{
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  top: 40px;
  right: 80px;
  white-space: nowrap;
}
body.nav-btn-only.show-nav #navigation-wrapper .navigation nav{
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

/* 5) Side panel + Backdrop */
.backdrop{
  opacity: 0;
  transition: 0.5s ease;
  pointer-events: none;
  background-color: #000;
  height: 100%;
  width: 100%;
  position: absolute;
  inset: 0;
  z-index: 98;
}

body{
  perspective: 1000px;
}
body.show-panel #outer-wrapper{
  transform: translateZ(-50px);
}
body.show-panel .backdrop{
  opacity: 0.4;
  pointer-events: auto;
}

.side-panel{
  transition: 0.6s;
  transform: translateX(960px);
  position: absolute;
  right: 0;
  top: 0;
  width: 800px;
  height: 100%;
  z-index: 99;
}
.side-panel:before{
  transform: rotate(8deg) scale(1.2);
  opacity: 0.85;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #000;
  content: "";
  z-index: -1;
}
.side-panel.show-it{
  transform: translateX(0);
}
.side-panel .close-panel{
  opacity: 0;
  transition: 0.5s ease;
  height: 50px;
  width: 50px;
  background-color: transparent;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 100%;
  position: absolute;
  top: 45px;
  left: -45px;
  text-align: center;
  line-height: 48px;
  z-index: 1;
}
.side-panel.show-it .close-panel{ opacity: 1; }
.side-panel .close-panel:hover{
  background-color: #fff;
  border-color: #fff;
  cursor: pointer;
}
.side-panel .close-panel:hover i{ color: #000; }
.side-panel .close-panel i{
  transition: 0.5s ease;
  font-size: 14px;
  color: #fff;
}

.side-panel > .wrapper{
  padding: 50px 50px 50px 20px;
  height: 100%;
}
.side-panel .container{ width: 100%; }

/* Trackpad Scroll Emulator area */
.side-panel .tse-scrollable{
  width: 100%;
  height: 100%;
  background-color: transparent;
}
.side-panel .tse-scrollable .tse-scrollbar .drag-handle{
  opacity: 0.4;
  width: 4px;
}

/* Side panel headings */
.side-panel h1{
  text-transform: none;
  font-size: 48px;
  margin: 0 0 30px;
}
.side-panel h2{
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
  margin: 5px 0 30px;
}
.side-panel h3{
  font-size: 18px;
  font-weight: bold;
}

/* 6) Forms + Buttons */
input[type="text"], input[type="email"], input[type="date"], input[type="time"],
input[type="search"], input[type="password"], input[type="number"], input[type="tel"],
textarea.form-control, select.form-control{
  border-radius: 0;
  transition: 0.3s;
  box-shadow: none;
  -webkit-appearance: none;
  background-color: rgba(255,255,255,0.02);
  border: 2px solid rgba(255,255,255,0.3);
  color: #fff;
  outline: none !important;
  padding: 13px;
  width: 100%;
  height: auto;
  font-size: 13px;
}
input:focus, textarea.form-control:focus, select.form-control:focus{
  background-color: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.2);
}
input:hover, textarea.form-control:hover, select.form-control:hover{
  background-color: rgba(255,255,255,0.10);
}

.btn{
  transition: 0.5s ease;
  outline: none !important;
  margin-bottom: 5px;
}
.btn:active, .btn:focus, .btn:hover{
  outline: none !important;
  color: #fff;
}
.btn.btn-default{
  border: 2px solid #fff;
  background-color: #fff;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
}
.btn.btn-framed{
  background-color: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.3);
}
.btn.btn-framed:hover{ border-color: #fff; }

/* 7) Viewport marker for JS (viewport helper) */
body::before{
  display: none;
  content: "lg";
}

/* 8) Animations (minimal used by template) */
.animate{
  transition: 0.4s cubic-bezier(0.69, 0.01, 0.1, 1.01);
}
.animate.translate-z-in{
  opacity: 0;
  transform: translateZ(10px);
  transition: 1.5s cubic-bezier(0.69, 0.01, 0.1, 1.01);
}
.animate.translate-z-in.in{
  opacity: 1;
  transform: translateZ(0);
}
.animate.fade-in{ opacity: 0; }
.animate.fade-in.in{ opacity: 1; }

/* 9) Bottleneck Content Styling */

/* Tagline Arabic */
.tagline.rtl{
  direction: rtl;
  unicode-bidi: plaintext;
  text-align: center;
  font-size: clamp(16px, 1.4vw, 22px);
  font-weight: 700;
  line-height: 1.9;
  letter-spacing: 0;
  color: rgba(255,255,255,0.92);
  text-shadow: 0 6px 18px rgba(0,0,0,0.55);
  margin-top: 14px;
  animation: taglineIn 1.2s ease-out .25s both;
}
@keyframes taglineIn {
  from { opacity: 0; transform: translateY(10px); filter: blur(6px); }
  to   { opacity: 1; transform: translateY(0);  filter: blur(0); }
}
.tagline .hl{
  color: #FFC400;
  text-shadow: 0 6px 22px rgba(255,196,0,0.25);
}

/* Hero tagline custom */
.hero-tagline{
  font-size: 22px;
  font-weight: 800;
  line-height: 2.1;
  color: #fff;
  text-shadow:
    0 0 12px rgba(245,196,0,0.35),
    0 0 28px rgba(245,196,0,0.18),
    0 3px 20px rgba(0,0,0,0.75);
}
.hero-tagline .hl{
  color: #F5C400;
  font-weight: 900;
}
.erp-wrap{
  direction: ltr;
  unicode-bidi: isolate;
  display: inline-block;
  margin-left: 6px;
}
.erp{
  font-weight: 900;
  color: #F5C400;
}

/* CTA buttons wrapper */
#content .cta-wrap{
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 16px;
}

/* Hero CTA Buttons */
#content a.open-side-panel.btn{
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  font-size: 20px !important;
  font-weight: 900 !important;
  padding: 14px 22px !important;
  margin: 10px 8px 0 !important;
  color: #fff !important;
  background: rgba(0,0,0,0.38) !important;
  border: 2px solid #F5C400 !important;
  border-radius: 16px !important;
  box-shadow: 0 16px 45px rgba(0,0,0,0.45);
  backdrop-filter: blur(6px);
  transition: transform .22s ease, background .22s ease, box-shadow .22s ease;
}
#content a.open-side-panel.btn:hover{
  background: rgba(245,196,0,0.12) !important;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 0 6px rgba(245,196,0,0.10), 0 20px 55px rgba(0,0,0,0.55);
}
#content a.open-side-panel.btn i{
  font-size: 22px;
  color: #F5C400;
}

/* Big Waitlist Button */
#content .btn-waitlist{
  width: 100%;
  max-width: 420px;
  margin-top: 6px !important;
  padding: 16px 22px !important;
  font-size: 20px;
  font-weight: 900;
  text-align: center;
  color: #111 !important;
  background: linear-gradient(135deg, #F5C400, #FFD84D);
  border: none !important;
  border-radius: 18px;
  box-shadow: 0 20px 55px rgba(0,0,0,0.55);
  transition: transform .25s ease, box-shadow .25s ease;
  animation: pulseGold 2.5s infinite;
}
#content .btn-waitlist:hover{
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 0 8px rgba(245,196,0,0.18), 0 24px 60px rgba(0,0,0,0.65);
}
@keyframes pulseGold {
  0% { box-shadow: 0 0 0 0 rgba(245,196,0,0.35), 0 20px 55px rgba(0,0,0,0.55); }
  70% { box-shadow: 0 0 0 12px rgba(245,196,0,0), 0 20px 55px rgba(0,0,0,0.55); }
  100% { box-shadow: 0 0 0 0 rgba(245,196,0,0), 0 20px 55px rgba(0,0,0,0.55); }
}

/* Services (Arabic RTL) */
.services-ar{
  direction: rtl;
  unicode-bidi: plaintext;
  text-align: right;
  margin-top: 20px;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}
.services-ar .services-title{
  font-size: 26px;
  font-weight: 800;
  margin: 0 0 16px;
  color: rgba(255,255,255,0.95);
  text-shadow: 0 6px 18px rgba(0,0,0,0.55);
}
.services-ar .services-intro{
  font-size: 18px;
  line-height: 1.9;
  margin: 0 0 18px;
  color: rgba(255,255,255,0.86);
  opacity: 1;
  text-shadow: 0 4px 14px rgba(0,0,0,0.55);
}
.services-ar .services-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 768px){
  .services-ar .services-grid{ grid-template-columns: 1fr 1fr; }
}
.services-ar .service-card{
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  padding: 16px 16px 14px;
  box-shadow: 0 16px 50px rgba(0,0,0,0.28);
  backdrop-filter: blur(6px);
}
.services-ar .service-head{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.services-ar .service-num{
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: #111;
  background: rgba(255,196,0,0.95);
  box-shadow: 0 10px 22px rgba(255,196,0,0.18);
  flex: 0 0 auto;
}
.services-ar .service-title{
  margin: 0;
  font-size: 18px;
  font-weight: 900;
  color: rgba(255,255,255,0.98);
  text-shadow: 0 4px 14px rgba(0,0,0,0.55);
}
.services-ar ul{
  margin: 0;
  padding: 0 18px 0 0;
  list-style: none;
}
.services-ar li{
  position: relative;
  padding: 6px 0;
  line-height: 1.7;
  font-size: 15px;
  color: rgba(255,255,255,0.86);
  opacity: 1;
}
.services-ar li:before{
  content: "•";
  position: absolute;
  right: -14px;
  top: 0;
  color: rgba(255,196,0,0.95);
  text-shadow: 0 0 16px rgba(255,196,0,0.25);
}
.services-ar .services-outro{
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255,196,0,0.10);
  border: 1px solid rgba(255,196,0,0.22);
  color: rgba(255,255,255,0.92);
  font-size: 16px;
  line-height: 1.9;
  opacity: 1;
  text-shadow: 0 4px 14px rgba(0,0,0,0.55);
}
.services-ar .services-outro strong{ color: rgba(255,196,0,0.98); }

/* About (Arabic RTL) */
.about-ar{
  direction: rtl;
  unicode-bidi: plaintext;
  text-align: right;
  max-width: 980px;
  margin: 0 auto;
}
.about-ar .about-section{
  margin-bottom: 22px;
  padding: 18px 18px 16px;
  border-radius: 16px;
  background: rgba(0,0,0,0.38);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 18px 55px rgba(0,0,0,0.30);
  backdrop-filter: blur(6px);
}
.about-ar .about-title{
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 900;
  color: rgba(255,255,255,0.98);
  text-shadow: 0 6px 18px rgba(0,0,0,.55);
}
.about-ar .about-text{
  margin: 0;
  font-size: 16px;
  line-height: 1.95;
  color: rgba(255,255,255,0.88);
  opacity: 1;
  text-shadow: 0 4px 14px rgba(0,0,0,.55);
}
.about-ar .about-highlight{
  color: rgba(255,196,0,0.98);
  font-weight: 800;
}
.about-ar .about-quote{
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255,196,0,0.10);
  border: 1px solid rgba(255,196,0,0.22);
  font-size: 16px;
  line-height: 1.9;
  color: rgba(255,255,255,0.92);
  opacity: 1;
  text-shadow: 0 4px 14px rgba(0,0,0,.55);
}

/* Contact Arabic */
.contact-ar{
  direction: rtl;
  text-align: right;
}
.contact-title{
  font-size: 28px;
  font-weight: 900;
  color: rgba(255,255,255,0.98);
  margin: 10px 0 8px;
  text-shadow: 0 8px 22px rgba(0,0,0,0.55);
}
.contact-subtitle{
  font-size: 16px;
  line-height: 1.9;
  color: rgba(255,255,255,0.82);
  opacity: 1;
  margin: 0 0 18px;
}
.contact-cards{
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 18px;
}
@media (min-width: 768px){
  .contact-cards{ grid-template-columns: 1fr 1fr; }
}
.contact-card{
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 18px 55px rgba(0,0,0,0.30);
  backdrop-filter: blur(6px);
}
.contact-card h3{
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 900;
  color: rgba(255,255,255,0.98);
}
.contact-item{
  display:flex;
  gap: 10px;
  margin: 8px 0;
  color: rgba(255,255,255,0.86);
  opacity: 1;
}
.contact-item .label{
  min-width: 70px;
  color: rgba(255,255,255,0.62);
}
.contact-item .value{
  color: rgba(255,255,255,0.92);
  text-decoration: none;
  border-bottom: 1px dashed rgba(245,196,0,0.35);
}
.social-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.social-btn{
  display:flex;
  align-items:center;
  gap:10px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(245,196,0,0.30);
  background: rgba(0,0,0,0.25);
  color: rgba(255,255,255,0.92);
  text-decoration:none;
  transition: .2s ease;
}
.social-btn i{ color:#F5C400; }
.social-btn:hover{
  background: rgba(245,196,0,0.10);
  transform: translateY(-2px);
}
.contact-card .mini{
  margin: 10px 0 0;
  color: rgba(255,255,255,0.65);
  opacity: 1;
  font-size: 13px;
}
.contact-form-wrap{
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 18px 55px rgba(0,0,0,0.30);
  backdrop-filter: blur(6px);
}
.form-title{
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 900;
  color: rgba(255,255,255,0.98);
}
.contact-form-ar .form-control{
  direction: rtl;
  text-align: right;
  color: rgba(255,255,255,0.95);
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 14px;
  padding: 12px 14px;
  box-shadow: none;
}
.contact-form-ar .form-control:focus{
  border-color: rgba(245,196,0,0.55);
  box-shadow: 0 0 0 6px rgba(245,196,0,0.10);
}
.form-actions{
  display:flex;
  align-items:center;
  gap: 12px;
  margin-top: 6px;
}
.btn-send{
  font-weight: 900 !important;
  font-size: 16px !important;
  padding: 12px 18px !important;
  border-radius: 16px !important;
  background: linear-gradient(135deg, #F5C400, #FFD84D) !important;
  color: #111 !important;
  border: none !important;
}
.btn-send:hover{
  transform: translateY(-2px);
  box-shadow: 0 0 0 8px rgba(245,196,0,0.14), 0 22px 55px rgba(0,0,0,0.55);
}
.privacy{
  margin: 10px 0 0;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  opacity: 1;
}

/* Move ONLY main H1 a bit up */


/* 10) Responsive */
@media (min-width: 992px) and (max-width: 1199px){
  body::before{ content: "md"; }
  h1{ font-size: 70px; }
  h2{ font-size: 20px; }
  #outer-wrapper #table-wrapper{ padding: 30px 0; }
}
@media (min-width: 768px) and (max-width: 991px){
  body::before{ content: "sm"; }
  body{ font-size: 12px; }
  h1{ font-size: 40px; }
  h2{ font-size: 16px; }
  #outer-wrapper #table-wrapper{ padding: 15px 0; }
  body.nav-btn-only #navigation-wrapper .navigation nav{ right: 70px; }
  .side-panel{ width: 600px; }
  .side-panel h3{ font-size: 16px; margin-bottom: 15px; }
}
@media (max-width: 767px){
  body::before{ content: "xs"; }
  #outer-wrapper #table-wrapper{ padding: 20px 0; }
  h1{ font-size: 32px; }
  h2{ font-size: 16px; margin-top: 20px; }
  .side-panel{ width: 100%; }
  .nav-btn{ top: 30px; right: 30px; }
  body.nav-btn-only #navigation-wrapper .navigation nav{
    top: 20px;
    right: 70px;
  }
  #inner-wrapper{ overflow-y: auto; } /* allow scroll on small screens */
  .background-wrapper{ position: fixed; }
  .side-panel .close-panel{
    height: 40px;
    width: 40px;
    top: 5px;
    left: 30px;
    line-height: 37px;
  }
  #content a.open-side-panel.btn{
    font-size: 18px !important;
    padding: 14px 18px !important;
    width: 100% !important;
    max-width: 340px;
  }
  #content .btn-waitlist{
    font-size: 18px;
    max-width: 100%;
  }
  #content h1{ top: -25px; }
}
/* =========================================================
   Mobile Optimization – Bottleneck Coming Soon
   ========================================================= */
@media (max-width: 768px) {

  /* اللوقو */
  #brand img {
    max-width: 260px;
    height: auto;
  }

  /* العنوان الرئيسي */
  #content h1 {
    font-size: 26px;
    margin-bottom: 12px;
  }

  /* النص التعريفي */
  .hero-tagline {
    font-size: 15px;
    line-height: 1.8;
    padding: 0 12px;
  }

  /* إبراز الكلمات */
  .hero-tagline .hl {
    font-size: 16px;
  }

  /* أزرار الصفحة الرئيسية */
  .hero-actions a.btn {
    font-size: 14px;
    padding: 10px 18px;
    width: 100%;
    max-width: 320px;
    margin: 6px auto;
    display: block;
  }

  /* تقليل المسافات العامة */
  #content {
    padding-top: 20px;
  }

  /* الفيديو بالخلفية */
  .video-background video {
    object-fit: cover;
  }
}

/* أصغر الجوالات */
@media (max-width: 480px) {

  #brand img {
    max-width: 240px;
  }

  .hero-tagline {
    font-size: 14px;
  }

  .hero-actions a.btn {
    font-size: 13px;
    padding: 9px 16px;
  }
}
.hero-actions .btn{
  transition: all 0.25s ease;
}

.hero-actions .btn:active{
  transform: scale(0.97);
  box-shadow: 0 0 0 2px rgba(245,196,0,0.25);
}
/* =========================
   SEO FAQ Section
========================= */
.seo-faq{
  max-width: 900px;
  margin: 28px auto 0;
  text-align: right;
}
.seo-title{
  font-weight: 800;
  margin-bottom: 14px;
  font-size: 20px;
}
.seo-box{
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.35);
  border-radius: 14px;
  padding: 14px 16px;
  margin-bottom: 10px;
  backdrop-filter: blur(6px);
}
.seo-box h3{
  margin: 0 0 6px;
  font-weight: 800;
  font-size: 16px;
}
.seo-box p{
  margin: 0;
  line-height: 1.8;
  opacity: .92;
  font-size: 14px;
}
@media (max-width: 768px){
  .seo-faq{ padding: 0 10px; }
  .seo-title{ font-size: 18px; }
}
.btn-waitlist small{
  display:block;
  font-size:12px;
  opacity:.85;
}
/* ===============================
   Fix long CTA button on iPhone
   =============================== */

/* الوضع الافتراضي (ديسكتوب) */
.btn-waitlist {
  white-space: normal;          /* يسمح بكسر السطر */
  text-align: center;
  line-height: 1.4;
}

/* الجوال */
@media (max-width: 480px) {
  .btn-waitlist {
    font-size: 14px;            /* تصغير الخط */
    padding: 12px 16px;         /* تقليل المسافات */
    max-width: 100%;
    word-break: break-word;     /* كسر الكلمات الطويلة */
  }
}

#content h1.hero-title .title-main{
  display:block !important;
  font-size: clamp(26px, 3.8vw, 58px) !important;
}

#content h1.hero-title .title-sub{
  display:block !important;
  margin-top: 10px !important;
  font-size: clamp(20px, 3vw, 44px) !important;
}

/* ===============================
   HERO TYPOGRAPHY – CLEAN SCALE
   ضع هذا آخر ملف style.css
   =============================== */

/* 1) حدّد عرض النص عشان ما يبان ضخم */
#content{
  max-width: 980px;
  margin: 0 auto;
  padding-inline: 14px;
}

/* 2) ألغِ الرفع القاسي القديم */
#content h1.hero-title{
  margin-top: -22px !important;   /* كان -60 */
  position: relative !important;
}

/* 3) تصغير عنوان الهيرو (العربي + ERP&POS) */
#content h1.hero-title .title-main{
  font-size: clamp(22px, 2.8vw, 44px) !important;
  line-height: 1.15 !important;
  letter-spacing: 0 !important;
}

#content h1.hero-title .title-sub{
  margin-top: 8px !important;
  font-size: clamp(16px, 2.0vw, 28px) !important;
  line-height: 1.1 !important;
}

/* 4) COMING SOON أصغر وأخف */
#content p.coming-soon{
  font-size: clamp(18px, 2.4vw, 28px) !important;  /* أكبر من الحالي */
  font-weight: 900 !important;
  letter-spacing: 4px !important;
  margin: 28px 0 22px !important;
  opacity: .9;
}

/* 5) تصغير نص التعريف (الفقرة تحت Coming Soon) */
.hero-tagline{
  font-size: clamp(14px, 1.35vw, 18px) !important; /* كان 22 */
  line-height: 1.9 !important;                    /* كان 2.1 */
  margin-top: 10px;
}

/* 6) الأزرار أصغر شوي عشان ما تملأ الشاشة */
#content a.open-side-panel.btn{
  font-size: 16px !important;     /* كان 20 */
  padding: 12px 18px !important;  /* كان 14 22 */
  border-radius: 14px !important;
}

#content .btn-waitlist{
  font-size: 16px !important;     /* كان 20 */
  padding: 14px 18px !important;
  max-width: 380px;
}

/* ملاحظة: لو تبغى الهيرو “يتنفس” أكثر */
#row-header{ margin-bottom: 12px; }
