@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;700;800&display=swap');

:root{
  --bg:#13110f;
  --card:#1c1815;
  --gold:#f3e192;
  --red:#df3300;
  --muted:#d9cf9d;
  --green:#25D366;
}

*{margin:0;padding:0;box-sizing:border-box;font-family:'Rubik',sans-serif;-webkit-tap-highlight-color:transparent;}

html{scroll-behavior:smooth;}

body{
  background:var(--bg);
  color:var(--gold);
  min-height:100vh;
  overflow-x:hidden;
}

a{color:inherit;text-decoration:none;}

img{max-width:100%;display:block;}

/* ---------- Header / Nav ---------- */
.site-header{
  position:sticky;top:0;z-index:100;
  background:var(--red);
}
.header-bar{
  padding:14px 24px;
  display:flex;align-items:center;justify-content:space-between;
  gap:16px;
}
.logo{
  font-size:24px;font-weight:800;color:#000;letter-spacing:1px;
  white-space:nowrap;flex-shrink:0;
}
.logo img{height:38px;width:auto;max-width:160px;object-fit:contain;display:block;}
.nav-group{
  display:flex;align-items:center;gap:10px;flex:1;
}
.nav-right{justify-content:flex-end;}
.nav-left{justify-content:flex-start;}
.nav-group a{
  font-size:14px;font-weight:700;color:#000;
  border:1.5px solid #000;
  padding:9px 16px;border-radius:6px;
  white-space:nowrap;
  transition:.2s;
}
.nav-group a:hover, .nav-group a:active{
  background:#000;color:var(--red);
}

/* زر القائمة (موبايل) */
.nav-toggle{
  display:none;align-items:center;justify-content:center;
  width:42px;height:38px;flex-shrink:0;
  background:transparent;border:1.5px solid #000;border-radius:6px;
  cursor:pointer;
}
.nav-toggle span{
  position:relative;display:block;width:20px;height:2.5px;background:#000;border-radius:2px;
}
.nav-toggle span::before, .nav-toggle span::after{
  content:"";position:absolute;right:0;width:20px;height:2.5px;background:#000;border-radius:2px;
}
.nav-toggle span::before{top:-6px;}
.nav-toggle span::after{top:6px;}
.nav-spacer{width:42px;flex-shrink:0;display:none;}

/* القائمة المنسدلة للموبايل */
.mobile-menu{
  display:none;flex-direction:column;
  background:var(--card);
  border-top:1px solid rgba(0,0,0,.2);
}
.mobile-menu.open{display:flex;}
.mobile-menu a{
  color:var(--gold);font-weight:700;font-size:16px;
  padding:15px 24px;border-bottom:1px solid rgba(243,225,146,.12);
}
.mobile-menu a:last-child{border-bottom:none;}
.mobile-menu a:active{color:var(--red);}

@media(max-width:780px){
  .header-bar{padding:12px 16px;}
  .nav-group{display:none;}
  .nav-toggle{display:flex;}
  .nav-spacer{display:block;}
}

@media(max-width:768px){
  .hero{padding:36px 16px 28px;}
  .hero img.hero-bg{max-height:280px;border-radius:14px;}
  .hero-title{font-size:26px;}
  .hero-sub{font-size:15px;padding:0 6px;}
  .section{padding:36px 16px;}
  .section-title{font-size:24px;}
  .section-text{font-size:15px;padding:0 4px;}
  .grid{grid-template-columns:1fr;gap:16px;}
  .banner-card img{height:190px;}
  .banner-overlay{padding:16px;}
  .banner-overlay h3{font-size:19px;}
  form.box{padding:20px;margin:24px auto 0;max-width:100%;}
  form.box input, form.box select, form.box textarea{font-size:16px;padding:13px;}
  .review-card{padding:20px;max-width:100%;}
  .card img{height:150px;}
}
@media(max-width:480px){
  .hero-title{font-size:22px;}
  .section-title{font-size:21px;}
}

/* ---------- Buttons ---------- */
.btn{
  display:inline-block;
  background:transparent;color:var(--red);
  border:2px solid var(--red);
  padding:14px 30px;border-radius:10px;
  font-size:16px;font-weight:700;cursor:pointer;
  transition:.3s;
}
.btn:hover{background:var(--red);color:#fff;}
.btn-solid{background:var(--red);color:#fff;}
.btn-solid:hover{opacity:.9;}
.btn-green{background:var(--green);color:#fff;border:none;box-shadow:0 10px 25px rgba(37,211,102,.3);}
.btn-green:hover{transform:scale(1.02);}

/* ---------- Hero ---------- */
.hero{position:relative;text-align:center;padding:60px 20px 40px;overflow:hidden;scroll-margin-top:90px;}
.hero img.hero-bg{width:100%;border-radius:18px;max-height:520px;object-fit:cover;opacity:.85;}.hero-title{font-size:42px;font-weight:800;margin:26px 0 10px;}
.hero-line{width:90px;height:4px;background:var(--red);border-radius:20px;margin:0 auto 26px;}
.hero-sub{max-width:700px;margin:0 auto 30px;color:var(--muted);font-size:17px;line-height:1.9;}

/* ---------- Section title ---------- */
.section{padding:50px 20px;max-width:1100px;margin:0 auto;scroll-margin-top:90px;}
.section-title{font-size:34px;font-weight:800;text-align:center;color:var(--red);margin-bottom:10px;}
.section-line{width:70px;height:4px;background:#fff;border-radius:20px;margin:0 auto 30px;}
.section-text{max-width:800px;margin:0 auto;text-align:center;color:var(--muted);font-size:16px;line-height:2;}

/* ---------- Cards / grid ---------- */
.grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:22px;}
.card{
  background:var(--card);border-radius:22px;overflow:hidden;
  border:1px solid rgba(223,51,0,.25);box-shadow:0 10px 30px rgba(0,0,0,.3);
  transition:.35s;
}
.card:hover{transform:translateY(-6px);border-color:var(--red);}
.card img{width:100%;height:190px;object-fit:cover;}
.card-body{padding:20px;}
.card-body h3{color:var(--gold);font-size:20px;margin-bottom:6px;}
.card-body p{color:var(--muted);font-size:14px;line-height:1.8;}

/* ---------- Banner (service) card ---------- */
.banner-card{
  position:relative;border-radius:18px;overflow:hidden;
  border:1px solid rgba(223,51,0,.3);margin-bottom:18px;
}
.banner-card img{width:100%;height:260px;object-fit:cover;}
.banner-overlay{
  position:absolute;bottom:0;left:0;right:0;
  background:linear-gradient(0deg,rgba(0,0,0,.75),rgba(0,0,0,.1));
  padding:20px;text-align:center;
}
.banner-overlay h3{font-size:22px;color:var(--gold);margin-bottom:4px;}
.banner-overlay p{color:var(--muted);margin-bottom:14px;}

/* ---------- Reviews ---------- */
.review-card{
  background:var(--card);border:1px solid rgba(243,225,146,.25);
  border-radius:20px;padding:26px;max-width:600px;margin:0 auto 20px;
}
.stars{color:#ffb400;font-size:20px;margin-bottom:12px;}
.review-card p{color:var(--muted);line-height:1.9;margin-bottom:14px;}
.review-name{color:var(--gold);font-weight:700;text-align:left;}

form.box{
  max-width:520px;margin:30px auto 0;background:var(--card);
  padding:26px;border-radius:18px;border:1px solid rgba(223,51,0,.25);
  display:flex;flex-direction:column;gap:14px;
}
form.box input, form.box select, form.box textarea{
  background:#0f0d0b;border:1px solid rgba(243,225,146,.25);
  color:var(--gold);padding:14px;border-radius:10px;font-size:15px;
}
form.box textarea{min-height:100px;resize:vertical;}
form.box label{font-size:14px;color:var(--muted);}

/* ---------- Footer ---------- */
.site-footer{
  border-top:1px solid rgba(223,51,0,.25);
  padding:30px 20px;text-align:center;color:var(--muted);font-size:14px;
  margin-top:40px;
}
.site-footer a{color:var(--red);}

/* ---------- Toast ---------- */
.toast{
  position:fixed;bottom:24px;left:50%;transform:translateX(-50%) translateY(150%);
  background:var(--red);color:#fff;padding:14px 26px;border-radius:12px;
  font-weight:700;transition:.35s;z-index:999;
}
.toast.show{transform:translateX(-50%) translateY(0);}
