:root{
  --black:#0b0b0c;
  --black-2:#0f1113;
  --white:#ffffff;
  --muted:#a9a9af;
  --orange:#ff7a00;
  --orange-deep:#ff6b00;
  --babyblue:#bfe9ff;
  --glass: rgba(255,255,255,0.06);
  --card-bg: rgba(255,255,255,0.03);
  --radius:16px;
  --container-max:1100px;
  --transition-ease: cubic-bezier(.2,.9,.2,1);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:"Cairo", "Poppins", system-ui, sans-serif;
  background: linear-gradient(180deg, var(--black) 0%, #0f1214 50%, #0b0b0c 100%);
  color:var(--white);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  direction:rtl;
  overflow-x:hidden;
}

/* container */
.container{
  width:92%;
  max-width:var(--container-max);
  margin-inline:auto;
}

/* SPLASH */
#splash{
  position:fixed; inset:0; z-index:9999;
  display:flex; align-items:center; justify-content:center;
  overflow:hidden;
  background: radial-gradient(ellipse at center, rgba(11,11,12,1) 0%, rgba(12,14,15,1) 40%, rgba(6,6,6,1) 100%);
}

/* sun animation behind the splash */
.splash-sun{
  position:absolute; left:50%; transform:translateX(50%);
  bottom:-40%;
  width:140vmax; height:140vmax; border-radius:50%;
  background: radial-gradient(circle at center, rgba(255,160,80,0.22), rgba(255,120,0,0.12) 20%, rgba(11,11,12,0) 40%);
  filter:blur(60px); opacity:0.85; animation: sunRise 3s ease forwards;
  pointer-events:none;
}
@keyframes sunRise{
  0%{bottom:-60%; transform:translateX(50%) scale(.92); opacity:0}
  60%{bottom:-10%; transform:translateX(50%) scale(1.02); opacity:1}
  100%{bottom:-20%; transform:translateX(50%) scale(1); opacity:0.95}
}

.splash-veil{
  position:absolute; inset:0;
  background: linear-gradient(120deg, rgba(255,122,0,0.06), rgba(191,233,255,0.02));
  animation: veilMove 3s linear forwards;
  pointer-events:none;
}

@keyframes veilMove{
  from{transform:translateY(20%); opacity:0}
  to{transform:translateY(-20%); opacity:1}
}

.splash-content{
  position:relative; text-align:center; z-index:3;
  transform:translateY(10px);
  animation: splashIn 1s ease-out forwards;
}

.splash-logo{
  width:180px; height:auto;
  transform:scale(0.9) rotate(-4deg);
  filter:drop-shadow(0 20px 40px rgba(0,0,0,0.6));
  animation: logoPop 1.2s var(--transition-ease) forwards;
}

.splash-tag{ margin-top:12px; color:var(--muted); font-size:14px; letter-spacing:0.4px; opacity:0; animation:tagFade 1s 0.7s forwards;}
.splash-sub{ margin-top:8px; color:rgba(255,255,255,0.8); font-size:13px; opacity:0; animation:tagFade 1s 0.9s forwards;}
.splash-cta{ display:inline-block; margin-top:14px; padding:8px 12px; border-radius:10px; background:rgba(255,255,255,0.04); color:var(--white); text-decoration:none; font-weight:600; opacity:0; animation:tagFade 1s 1.1s forwards;}
@keyframes logoPop{0%{opacity:0; transform:scale(0.7) rotate(-6deg)} 60%{transform:scale(1.06) rotate(-2deg)} 100%{opacity:1; transform:scale(1) rotate(0)}}
@keyframes tagFade{to{opacity:1}}
@keyframes splashIn{to{transform:none}}

/* hide main initially */
.hidden{display:none}

/* Header */
.site-header{
  position:sticky; top:0; z-index:60;
  backdrop-filter: blur(6px);
  background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent);
  border-bottom: 1px solid rgba(255,255,255,0.03);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between; padding:14px 0;
}
.logo-img{width:96px; cursor:pointer; transition:transform .25s var(--transition-ease)}
.logo-img:hover{transform:scale(1.03)}

/* NAV */
.nav-links{display:flex; gap:16px; align-items:center}
.nav-link{
  color:var(--muted); text-decoration:none; font-size:15px; padding:8px 10px; border-radius:10px;
}
.nav-link:hover{color:var(--white); background:rgba(255,255,255,0.02)}

/* HERO */
.hero{padding:56px 0 36px; position:relative}
.hero-inner{display:flex; gap:30px; align-items:center; justify-content:space-between; flex-wrap:wrap}
.hero-left{flex:1 1 480px; text-align:right}
.hero-title{
  font-size:34px; margin:0 0 12px; font-weight:700;
  background: linear-gradient(90deg, var(--white), var(--babyblue));
  -webkit-background-clip: text; background-clip:text; color:transparent;
  text-shadow: 0 6px 20px rgba(3,7,8,0.6);
}
.hero-sub{color:var(--muted); margin-bottom:18px; font-size:15px}

.hero-ctas{display:flex; gap:12px; align-items:center; flex-wrap:wrap}
.btn{
  display:inline-flex; align-items:center; gap:10px; padding:12px 18px; border-radius:12px; text-decoration:none; font-weight:600;
  transition:transform .18s var(--transition-ease), box-shadow .18s var(--transition-ease);
  will-change:transform;
}
.btn-primary{
  background: linear-gradient(90deg, var(--orange), var(--orange-deep));
  color:var(--white); box-shadow: 0 8px 30px rgba(255,122,0,0.12);
}
.btn-primary:hover{transform:translateY(-4px) scale(1.02); box-shadow:0 16px 50px rgba(255,122,0,0.14)}
.btn-ghost{
  background:transparent; border:1px solid rgba(255,255,255,0.06); color:var(--white);
}
.btn-ghost:hover{transform:translateY(-3px)}

/* hero-right - cinematic card */
.hero-right{flex:0 0 360px; display:flex; align-items:center; justify-content:center}
.hero-card{
  width:320px; padding:22px; border-radius:18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.04);
  box-shadow: 0 10px 30px rgba(2,6,8,0.6);
  transform:translateY(0);
  will-change:transform;
}
.card-topline{font-size:13px;color:var(--muted); margin-bottom:8px}
.card-big{font-size:20px;font-weight:700;color:var(--white); margin-bottom:6px}
.card-meta{color:var(--muted); font-size:13px}

/* CARDS SECTION */
.cards-section{padding:44px 0}
.section-head{text-align:center; margin-bottom:22px}
.section-title{font-size:22px; margin-bottom:6px}
.section-sub{color:var(--muted); font-size:14px}

.cards-grid{
  display:grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap:18px; margin-top:18px;
}

.card{
  background: var(--card-bg);
  border-radius:14px; padding:20px;
  box-shadow: 0 8px 24px rgba(2,6,8,0.6);
  border: 1px solid rgba(255,255,255,0.03);
  cursor:pointer; transition: transform .28s var(--transition-ease), box-shadow .28s var(--transition-ease);
  display:flex; flex-direction:column; gap:12px; align-items:flex-end; text-align:right;
  will-change:transform, opacity;
}
.card:hover{transform:translateY(-10px) scale(1.01); box-shadow: 0 20px 60px rgba(2,6,8,0.7)}
.card-icon{font-size:26px; background: linear-gradient(90deg, rgba(191,233,255,0.08), rgba(255,122,0,0.06)); padding:8px 12px; border-radius:10px}
.card h3{margin:0; color:var(--white)}
.card p{margin:0; color:var(--muted); font-size:14px}
.card-cta{color:var(--babyblue); font-weight:600; margin-top:6px}

/* ABOUT */
.about-section{padding:40px 0}
.about-grid{display:grid; grid-template-columns: 1fr 380px; gap:28px; align-items:center}
.about-text h3{font-size:20px; margin-bottom:8px}
.about-text p{color:var(--muted); margin-bottom:10px}
.about-list{color:var(--muted); list-style: none; padding-inline:0}
.about-list li{padding:6px 0}

/* Glass visual */
.glass-card{
  padding:20px; border-radius:14px; background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  border:1px solid rgba(255,255,255,0.04); box-shadow: 0 12px 40px rgba(2,6,8,0.6);
  text-align:center;
}
.glass-big{font-size:22px; font-weight:700}
.glass-small{color:var(--muted)}

/* Testimonials */
.testimonials-section{padding:36px 0}
.test-grid{display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:18px}
.testimonial{background:var(--card-bg); padding:18px; border-radius:12px; border:1px solid rgba(255,255,255,0.03); color:var(--muted)}

/* Footer */
.site-footer{padding:28px 0; border-top:1px solid rgba(255,255,255,0.03); margin-top:30px}
.footer-grid{display:flex; justify-content:space-between; align-items:center; gap:20px}
.footer-logo{width:88px}
.muted{color:var(--muted)}

/* Socials */
.socials{display:flex; gap:12px; align-items:center}
.social-link{display:inline-flex; gap:8px; align-items:center; text-decoration:none; color:var(--muted); padding:8px 10px; border-radius:10px}
.social-link:hover{color:var(--white); background:rgba(255,255,255,0.02)}

/* WhatsApp float */
.whatsapp-float{
  position:fixed; bottom:30px; right:30px; width:60px; height:60px; border-radius:50%;
  display:inline-grid; place-items:center; background:linear-gradient(180deg,#25D366,#1DA851); box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  z-index:70; transition:transform .18s; border:3px solid rgba(255,255,255,0.04)
}
.whatsapp-float img{width:46px; height:46px}

/* Back to top */
.to-top{
  position:fixed; bottom:110px; right:26px; width:44px; height:44px; border-radius:10px; display:none;
  background:rgba(255,255,255,0.04); color:var(--white); border:0; z-index:80; cursor:pointer;
}

/* reveal animation */
.reveal{opacity:0; transform:translateY(14px) scale(.995); transition:opacity .6s ease, transform .6s var(--transition-ease)}
.reveal.show{opacity:1; transform:none}

/* responsive */
@media (max-width:900px){
  .about-grid{grid-template-columns:1fr; text-align:center}
  .hero-inner{flex-direction:column-reverse; gap:20px}
  .hero-right{order:-1}
  .footer-grid{flex-direction:column; gap:12px; text-align:center}
  .logo-img{width:84px}
  .hero-title{font-size:26px}
}

/* small tweaks */
a{color:inherit}

