:root {
  --black:#0b0b0b;
  --yellow:#f5c400;
  --white:#ffffff;
  --gray:#999;
}

*{
  box-sizing:border-box;
  margin:0;
  padding:0;
  font-family:Inter,Arial,sans-serif;
}

body{
  background:var(--black);
  color:var(--white);
}

/* Header */
header{
  background:#000;
  padding:5px 40px; /* نصف الحجم السابق */
  display:flex;
  justify-content:space-between;
  align-items:center;
  position:sticky;
  top:0;
  z-index:20;
}

header .logo img {
  height:200px;
}

nav a{
  margin-left:25px;
  color:#fff;
  text-decoration:none;
  font-weight:600;
}

nav a:hover{
  color:var(--yellow);
}

/* Hero */
.hero{
  display:flex;
  min-height:90vh;
  background:url(hero.jpg) center/cover no-repeat;
  position:relative;
}

.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.65);
  z-index:5;
}

.hero-content{
  position:relative;
  padding:70px;
  max-width:700px;
  z-index:10;
  margin:auto;
  text-align:center;
}

/* Buttons */
.btn{
  background:var(--yellow);
  color:#000;
  padding:14px 22px;
  text-decoration:none;
  font-weight:700;
  display:inline-block;
  cursor:pointer;
}

.quick-cta{
  display:flex;
  justify-content:center;
  gap:20px;
  margin-top:30px;
}

.quick-cta button{
  background:var(--yellow);
  border:none;
  padding:12px 25px;
  font-weight:700;
  cursor:pointer;
  transition: transform .3s;
}

.quick-cta button:hover{
  transform: scale(1.05);
}

/* Features */
.features{
  display:flex;
  justify-content:space-around;
  gap:20px;
  flex-wrap:wrap;
  margin-top:50px;
}

.feature{
  text-align:center;
  max-width:200px;
}

.feature i{
  font-size:48px;
  color:var(--yellow);
  margin-bottom:10px;
}

.feature p{
  font-size:16px;
  color:#ddd;
}

/* Counters */
.counters{
  display:flex;
  justify-content:space-around;
  margin:60px 0;
  flex-wrap:wrap;
  gap:20px;
}

.counter{
  text-align:center;
}

.counter h2{
  font-size:36px;
  color:var(--yellow);
}

.counter p{
  color:#ddd;
}

/* Testimonials Slider */
.testimonials{
  max-width:900px;
  margin:50px auto;
  position:relative;
  overflow:hidden;
  border-top:2px solid var(--yellow);
  border-bottom:2px solid var(--yellow);
}

.testimonial-slide{
  display:flex;
  transition: transform 0.5s ease;
}

.testimonial{
  min-width:100%;
  padding:30px;
  text-align:center;
  font-size:18px;
  color:#ddd;
}

/* Sections */
.section{
  padding:70px 40px;
  max-width:1200px;
  margin:auto;
  display:none;
  opacity:0;
  transition: opacity 0.6s;
}

.section.show{
  display:block;
  opacity:1;
}

/* Forms */
form input, form textarea{
  width:100%;
  padding:12px;
  margin:10px 0;
  border:none;
}

form button{
  background:var(--yellow);
  border:none;
  padding:12px;
  font-weight:700;
  cursor:pointer;
}

/* Footer */
footer{
  background:#000;
  padding:25px;
  text-align:center;
  color:#aaa;
}

/* WhatsApp Icon */
.whatsapp-icon{
  position:fixed;
  bottom:20px;
  right:20px;
  width:50px;
  height:50px;
  background:#25d366;
  border-radius:50%;
  display:flex;
  justify-content:center;
  align-items:center;
  cursor:pointer;
  z-index:50;
}

.whatsapp-icon i{
  color:#fff;
  font-size:28px;
}