:root{
  --orange:#ffa500;
  --orange-dark:#e09200;
  --navy:#152a52;
  --steel:#5b6673;
  --steel-dark:#33404e;
  --bg:#ffffff;
  --bg-alt:#f7f8fa;
  --border:#e7e9ee;
  --radius:14px;
}
*{box-sizing:border-box;margin:0;padding:0;}
body{
  font-family:'Rajdhani','Tajawal',sans-serif;
  color:#2a323c;
  background:var(--bg);
  line-height:1.6;
}
img{max-width:100%;display:block;}
a{color:inherit;}
h1,h2,h3{font-weight:700;color:var(--navy);}
.btn{
  display:inline-block;padding:12px 26px;border-radius:999px;font-weight:700;
  text-decoration:none;font-size:.92rem;letter-spacing:.02em;transition:.2s;
}
.btn-primary{background:var(--orange);color:#fff;}
.btn-primary:hover{background:var(--orange-dark);}
.btn-ghost{border:1.5px solid rgba(255,255,255,.7);color:#fff;}
.btn-ghost:hover{background:rgba(255,255,255,.15);}

/* ===== NAVBAR ===== */
.navbar{
  position:sticky;top:0;z-index:50;background:#fff;border-bottom:1px solid var(--border);
}
.nav-inner{
  max-width:1180px;margin:0 auto;padding:12px 24px;
  display:flex;align-items:center;gap:26px;
}
.logo-wrap{display:flex;align-items:center;gap:10px;text-decoration:none;margin-inline-end:auto;}
.logo-mark{height:36px;width:auto;}
.logo-txt{font-weight:700;color:var(--navy);letter-spacing:.03em;font-size:1.05rem;}
.logo-txt b{color:var(--orange);}
.nav-links{
  list-style:none;display:flex;align-items:center;gap:22px;
}
.nav-links > li > a{
  text-decoration:none;color:var(--steel-dark);font-weight:600;font-size:.94rem;
  padding:8px 2px;position:relative;
}
.nav-links > li > a:hover{color:var(--orange-dark);}
.nav-links .gateway-back{
  border:1.5px solid var(--orange);color:var(--orange-dark)!important;border-radius:999px;
  padding:7px 16px!important;font-size:.82rem!important;
}
.has-dropdown{position:relative;}
.dropdown{
  list-style:none;position:absolute;top:100%;left:0;min-width:230px;
  background:#fff;border:1px solid var(--border);border-radius:10px;box-shadow:0 16px 34px rgba(20,30,55,.12);
  padding:8px;opacity:0;visibility:hidden;transform:translateY(6px);transition:.18s;
}
.has-dropdown:hover .dropdown{opacity:1;visibility:visible;transform:translateY(0);}
.dropdown li a{
  display:block;padding:9px 12px;border-radius:8px;text-decoration:none;color:var(--steel-dark);
  font-size:.88rem;font-weight:600;
}
.dropdown li a:hover{background:var(--bg-alt);color:var(--orange-dark);}
.burger{display:none;flex-direction:column;gap:5px;background:none;border:none;cursor:pointer;padding:6px;}
.burger span{width:24px;height:2px;background:var(--navy);border-radius:2px;}

@media (max-width:900px){
  .burger{display:flex;}
  .nav-links{
    position:absolute;top:100%;left:0;right:0;background:#fff;flex-direction:column;align-items:stretch;
    border-top:1px solid var(--border);padding:10px 20px 18px;display:none;gap:4px;
    box-shadow:0 16px 30px rgba(20,30,55,.1);
  }
  .nav-links.open{display:flex;}
  .has-dropdown .dropdown{position:static;opacity:1;visibility:visible;transform:none;box-shadow:none;border:none;display:none;padding-left:12px;}
  .has-dropdown.open .dropdown{display:block;}
}

/* ===== HERO ===== */
.hero{
  background-size:cover;background-position:center;min-height:420px;
  display:flex;align-items:center;color:#fff;
}
.hero-inner{max-width:760px;margin:0 auto;padding:60px 24px;text-align:center;}
.hero .tag{
  display:inline-block;background:rgba(255,255,255,.15);border:1px solid rgba(255,255,255,.3);
  padding:6px 16px;border-radius:999px;font-size:.78rem;letter-spacing:.06em;margin-bottom:18px;
}
.hero h1{font-size:2.2rem;color:#fff;margin-bottom:14px;}
.hero .lead{opacity:.92;font-size:.9rem;margin-bottom:26px;}
.hero-actions{display:flex;gap:14px;justify-content:center;flex-wrap:wrap;}

/* ===== SECTIONS ===== */
.section-head{text-align:center;max-width:640px;margin:0 auto 34px;}
.section-head .line{width:60px;height:3px;background:var(--orange);margin:0 auto 16px;border-radius:3px;}
.section-head h2{font-size:1.7rem;margin-bottom:8px;}
.section-head p{color:var(--steel);}

.products{padding:64px 24px;max-width:1180px;margin:0 auto;}
.product-grid{
  display:grid;grid-template-columns:repeat(3,1fr);gap:22px;
}
@media (max-width:900px){.product-grid{grid-template-columns:repeat(2,1fr);}}
@media (max-width:600px){.product-grid{grid-template-columns:1fr;}}
.product-card{
  border:1px solid var(--border);border-radius:var(--radius);overflow:hidden;text-decoration:none;
  background:#fff;transition:.2s;display:flex;flex-direction:column;
}
.product-card:hover{box-shadow:0 18px 34px rgba(20,30,55,.12);transform:translateY(-3px);}
.pc-img{height:170px;background-size:cover;background-position:center;background-color:var(--bg-alt);}
.pc-body{padding:16px 18px;display:flex;align-items:center;justify-content:space-between;gap:10px;}
.pc-body h3{font-size:1.02rem;}
.pc-link{color:var(--orange-dark);font-weight:700;font-size:.82rem;white-space:nowrap;}

.cta-strip{background:var(--navy);color:#fff;padding:50px 24px;text-align:center;}
.cta-inner{max-width:640px;margin:0 auto;}
.cta-strip h2{color:#fff;font-size:1.4rem;margin-bottom:20px;}

/* ===== CONTENT / PRODUCT DETAIL PAGES ===== */
.breadcrumb{background:var(--bg-alt);border-bottom:1px solid var(--border);}
.breadcrumb-inner{max-width:1180px;margin:0 auto;padding:12px 24px;font-size:.82rem;color:var(--steel);}
.breadcrumb-inner a{text-decoration:none;color:var(--steel);}
.breadcrumb-inner a:hover{color:var(--orange-dark);}
.breadcrumb-inner i{opacity:.5;margin:0 4px;font-style:normal;}

.content-page{padding:44px 24px 70px;}
.content-inner{max-width:760px;margin:0 auto;}
.content-inner.wide{max-width:980px;}
.content-inner h1{font-size:1.7rem;margin-bottom:20px;}
.content-inner h3{font-size:1.15rem;margin:26px 0 12px;}
.content-inner p{margin-bottom:14px;color:#3a4450;}
.content-inner a{color:var(--orange-dark);font-weight:600;text-decoration:none;}
.content-inner a:hover{text-decoration:underline;}
.content-img{margin-bottom:20px;border-radius:var(--radius);overflow:hidden;border:1px solid var(--border);}
.content-img-row{display:flex;gap:14px;margin-bottom:20px;flex-wrap:wrap;}
.content-img-row img{flex:1;min-width:220px;border-radius:var(--radius);border:1px solid var(--border);}

.spec-table{width:100%;border-collapse:collapse;margin-bottom:22px;font-size:.88rem;}
.spec-table th,.spec-table td{border:1px solid var(--border);padding:8px 12px;text-align:left;}
.spec-table th{background:var(--bg-alt);color:var(--navy);width:38%;}
.spec-table.small th,.spec-table.small td{font-size:.8rem;padding:6px 10px;text-align:center;}
.table-scroll{overflow-x:auto;}

/* ===== GALLERY ===== */
.gallery-grid{
  display:grid;grid-template-columns:repeat(auto-fill,minmax(150px,1fr));gap:14px;
}
.g-item{border-radius:10px;overflow:hidden;border:1px solid var(--border);aspect-ratio:1/1;}
.g-item img{width:100%;height:100%;object-fit:cover;transition:.25s;}
.g-item:hover img{transform:scale(1.06);}

/* ===== NEWS ===== */
.news-list{display:flex;flex-direction:column;gap:14px;}
.news-item{border:1px solid var(--border);border-radius:12px;padding:16px 20px;}
.news-item h3{font-size:1.05rem;margin-bottom:4px;}
.news-date{color:var(--steel);font-size:.82rem;}

/* ===== CONTACT ===== */
.contact-grid{display:grid;grid-template-columns:1.3fr 1fr;gap:34px;}
@media (max-width:760px){.contact-grid{grid-template-columns:1fr;}}
.contact-form{display:flex;flex-direction:column;gap:14px;}
.contact-form label{font-size:.85rem;font-weight:600;color:var(--steel-dark);display:flex;flex-direction:column;gap:6px;}
.contact-form input,.contact-form textarea{
  border:1px solid var(--border);border-radius:10px;padding:10px 12px;font-family:inherit;font-size:.92rem;
}
.contact-form button{align-self:flex-start;border:none;cursor:pointer;}
.contact-info{background:var(--bg-alt);border-radius:var(--radius);padding:24px;}
.contact-info p{margin-bottom:10px;font-size:.92rem;}
.contact-info hr{border:none;border-top:1px solid var(--border);margin:14px 0;}

/* ===== FOOTER ===== */
.site-footer{background:var(--navy);color:#cdd6e5;padding:50px 24px 20px;margin-top:20px;}
.footer-inner{max-width:1180px;margin:0 auto;display:grid;grid-template-columns:1.4fr 1fr 1fr;gap:34px;}
@media (max-width:760px){.footer-inner{grid-template-columns:1fr;}}
.footer-col h4{color:#fff;margin-bottom:12px;font-size:.98rem;}
.footer-col p{margin-bottom:8px;font-size:.86rem;}
.footer-col a{text-decoration:none;color:#cdd6e5;}
.footer-col a:hover{color:var(--orange);}
.footer-col .logo-mark{height:34px;margin-bottom:12px;filter:brightness(0) invert(1);}
.social-links{display:flex;gap:10px;margin-top:12px;}
.social-links a{
  width:32px;height:32px;border-radius:50%;background:rgba(255,255,255,.1);
  display:flex;align-items:center;justify-content:center;font-size:.68rem;font-weight:700;
}
.social-links a:hover{background:var(--orange);color:#fff;}
.footer-bottom{
  max-width:1180px;margin:26px auto 0;padding-top:18px;border-top:1px solid rgba(255,255,255,.12);
  font-size:.78rem;text-align:center;color:#96a2b8;
}

/* ===== WHATSAPP FLOAT ===== */
.wa-float{
  position:fixed;bottom:22px;inset-inline-end:22px;width:52px;height:52px;border-radius:50%;
  background:#25d366;color:#fff;display:flex;align-items:center;justify-content:center;
  font-weight:700;font-size:.72rem;text-decoration:none;box-shadow:0 10px 26px rgba(0,0,0,.25);z-index:60;
}
