:root{
  --text: #00695c;
  --bg: #cbc9c9;
  --btn:  #7a0f18;
  --radius: 12px;
}

body{
  margin:0;
  padding:0;
  font-family:"Tajawal", system-ui;
  background: var(--bg);
  color: var(--text);
}
.navbar{
  position: fixed;       /* ثابتة فوق */
  top: 0;
  left: 0;
  width: 100%;
  color: #fff;
  z-index: 9999;
  box-shadow: 0 4px 12px rgba(0,0,0,.3);
  background: transparent; /* افتراضي شفاف */
  transition: background 0.3s ease, box-shadow 0.3s ease;
  background: #337768;
}
.navbar.scrolled{
  background: #337768;       /* اللون الغامق بعد النزول */
  box-shadow: 0 4px 12px rgba(0,0,0,.3);
}
.navbar-inner{
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
}
.navbar .logo img{
  font-size: 22px;
  font-weight: bold;
  width: 150px;
}
.nav-links a{
  margin-left: 24px;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  transition: color .3s ease;
}
.nav-links a:hover{color: #7a0f18;} /* اللون النبيتي */
.mobile-menu-toggle{
  display:none;
  font-size: 22px;
  cursor: pointer;
  color: #fff;
}
.nav-links.show-menu{
  display:flex;
}

/* ريسبونسيف */
@media(max-width:768px){
  .nav-links{
    position: absolute;
    top:60px;
    left:0;
    width:100%;
    background:#4a4a4a;
    flex-direction: column;
    display:none;
  }
  .nav-links a{
    margin:12px 0;
    text-align:center;
  }
  .mobile-menu-toggle{
    display:block;
  }
}
.service_hone h1{
    
  text-align:center;
  margin:40px 0 20px;
    margin-top: 80px;
color: #7a0f18;
     display:flex;
  justify-content:center;
  line-height: 1.1;
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 1000;
  letter-spacing: 2px;
  text-shadow: 3px 3px 0 #fff, 6px 6px 0 rgba(0,0,0,.2);
  padding-top: 100px;
}
.service-page{
  display:flex;
  justify-content:center;
  padding: clamp(40px,6vw,80px) 16px;
}


.service-inner{
  max-width: 900px;
  width: 100%;
  display:flex;
  flex-direction: column;
  gap:24px;
}

.service-inner h1{
  font-size: clamp(24px,4vw,36px);
  margin-bottom: 12px;
  color: var(--text);
}

.service-desc{
  font-size: clamp(16px,1.5vw,20px);
  line-height: 1.7;
}

.service-images{
  display:flex;
  flex-wrap:nowrap;
  gap:16px;
}

.service-images img{
  flex:1 1 280px;
  max-width:50%;
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  transition: transform 1.6s ease, box-shadow 1.6s ease;
}

.service-images img:hover{
  transform: scale(1.05);
  box-shadow: 0 12px 32px rgba(0,0,0,0.25);
}

.btn-back{
  display:inline-block;
  text-decoration:none;
  padding:12px 20px;
  background: var(--btn);
  color:#fff;
  border-radius: var(--radius);
  font-weight:600;
  transition: transform .6s ease, box-shadow .6s ease;
}

.btn-back:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,105,92,0.35);
}





body{margin:0;padding:0;font-family:"Tajawal",sans-serif;background:#e0dfdf;color:#00695c}
.reels-page{padding: clamp(40px,6vw,80px) 16px;text-align:center;}
.page-title{font-size:clamp(28px,4vw,48px);margin-bottom:12px;
color: #7a0f18;
     display:flex;
  justify-content:center;
  line-height: 1.1;
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 1000;
  letter-spacing: 2px;
  text-shadow: 3px 3px 0 #fff, 6px 6px 0 rgba(0,0,0,.2);
  padding-top: 100px;
  }
.page-desc{font-size:clamp(16px,1.5vw,20px);margin-bottom:32px;}

.reels-list{display:flex;flex-wrap:wrap;justify-content:center;gap:16px;}
.reel-card{flex:2 2 260px;max-width:300px;border-radius:12px;overflow:hidden;box-shadow:0 8px 28px rgba(0,0,0,0.15);transition:transform .3s ease,box-shadow .3s ease;}
.reel-card:hover{transform:translateY(-3px);box-shadow:0 12px 36px rgba(0,0,0,0.2);}
.reel-card img{width:100%;display:block;border-radius:12px;}

/* ظهور عند السكرول */
.hidden-reel{opacity:0;transform:translateY(40px);transition:transform .7s ease,opacity .7s ease;}
.show-reel{opacity:1;transform:translateY(0);}
.page-title h1{
    color: #7a0f18;
}
/* ريسبونسيف */
@media(max-width:992px){.reel-card{flex:1 1 40%;max-width:40%;}}
@media(max-width:640px){.reel-card{flex:1 1 100%;max-width:100%;}}


/*llllllllllllllllllllllllllllllllllllllllllllllll*/
:root{
  --primary-color:#68081b; /* اللون النبيتي */
  --text:#1c1c1c;
  --muted:#4a4a4a;
  --container:1200px;
}

body{
  font-family: "Tajawal", system-ui, -apple-system, Segoe UI, Roboto, Arial;
  margin:0;
  padding:0;
  background:#f5f5f5;
  color:var(--text);
}

/* ====== Sections ====== */
.section-title{
  text-align:center;
  margin:40px 0 20px;
    margin-top: 80px;
color: #7a0f18;
     display:flex;
  justify-content:center;
  line-height: 1.1;
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 1000;
  letter-spacing: 2px;
  text-shadow: 3px 3px 0 #fff, 6px 6px 0 rgba(0,0,0,.2);
  padding-top: 100px;
}

/* ====== FAQ ====== */
.faq-container{
  max-width:var(--container);
  margin:auto;
  padding:0 16px;
  margin-top: 60px;
 
}
.faq-item{
  background:#fff;
  border-radius:12px;
  margin-bottom:16px;
  padding:20px;
  box-shadow:0 4px 12px rgba(0,0,0,.1);
  cursor:pointer;
  transition: transform .6s ease, box-shadow .6s ease;
}
.faq-item:hover{
  transform: translateY(-4px);
  box-shadow:0 6px 16px rgba(0,0,0,.15);
}
.faq-item .answer{
  margin-top:12px;
  color:var(--muted);
  display:none;
}
.faq-item.active .answer{
  display:block;
}

/* ====== Reviews ====== */
.reviews-container{
  max-width:var(--container);
  margin:auto;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:16px;
  padding:0 16px 40px;
}
.review{
  background:#fff;
  border-radius:12px;
  padding:20px;
  box-shadow:0 4px 12px rgba(0,0,0,.1);
  transition: transform .6s ease, box-shadow .6s ease;
}
.review:hover{
  transform: translateY(-4px);
  box-shadow:0 6px 16px rgba(0,0,0,.15);
}
.review p{
  margin:0 0 12px;
}
.review span{
  font-weight:700;
  color:var(--primary-color);
}
.review img{
  width: 100%;
  border-radius: 12px;
}
/* ====== Scroll Animation ====== */
.hidden-left, .hidden-right{
  opacity:0;
  filter:blur(3px);
  transition: transform 1500ms cubic-bezier(.2,.7,.2,1), opacity 1500ms ease, filter 1500ms ease;
}
.hidden-left{transform: translateX(-80px) scale(.98);}
.hidden-right{transform: translateX(80px) scale(.98);}
.show{
  opacity:1;
  filter:blur(0);
  transform: translateX(0) scale(1);
}

/* ====== Responsive ====== */
@media(max-width:768px){
  .section-title{font-size:clamp(20px,5vw,28px);}
  .faq-item{padding:16px;}
  .reviews-container{grid-template-columns:1fr;}
}

.site-footer{
  background:#4a4a4a;  /* اللون الغامق المتناسق مع الموقع */
  color:#fff;
  padding:40px 16px 20px;
  font-family:"Tajawal",sans-serif;
}
.footer-inner{
  max-width:1200px;
  margin:auto;
  display:flex;
  justify-content:space-between;
  gap:24px;
  flex-wrap:wrap;
}
.footer-inner h3{
    color: #68081b;
    font-weight: bold;
}
.footer-col{
  flex:1;
  min-width:220px;
}
.footer-logo{
  max-width:150px;
  margin-bottom:12px;
}
.footer-desc{
  font-size:24px;
  line-height:1.3;
}
.footer-links{
  list-style:none;
  padding:0;
  margin:0;
}
.footer-links li{
  margin-bottom:8px;
}
.footer-links a{
  color:#fff;
  text-decoration:none;
  transition:color .3s ease;
}
.footer-links a:hover{color:#68081b;} /* اللون النبيتي */
.footer-contact p{
  margin:4px 0;
  font-size:14px;
}
.footer-socials{
  display:flex;
  gap:12px;
  margin-top:8px;
}
.footer-socials a img{
  width:32px;
  height:32px;
  object-fit:contain;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.3));
  transition:transform .2s ease;
}
.footer-socials a:hover img{
  transform:scale(1.1);
}
.footer-socials a{
  display:inline-block;
  margin-right:12px;
  font-size:24px;
  color:#fff;
  transition: transform .2s ease, color .2s ease;
}
.footer-socials a:hover{
  transform: scale(1.2);
  color:#68081b; /* اللون النبيتي */
}

.footer-bottom{
  text-align:center;
  margin-top:24px;
  font-size:13px;
  color:#bbb;
  border-top:1px solid rgba(255,255,255,.15);
  padding-top:12px;
}

/* ريسبونسيف */
@media(max-width:768px){
  .footer-inner{flex-direction:column; align-items:center; text-align:center;}
  .footer-col{min-width:100%; margin-bottom:20px;}
  .footer-socials{justify-content:center;}
}
