:root{
  /* Brand palette - وقت التواصل للتجارة Brand Guidelines v1.0 */
  --navy: #072B5B;      /* Trust Navy */
  --blue: #0B5CAD;      /* Action Blue */
  --gold: #C9952E;      /* Value Gold */
  --white: #FFFFFF;     /* Clarity White */

  --bg: #F5F7FA;
  --bg-alt: #FFFFFF;
  --card-bg: #FFFFFF;
  --text: #0E1B33;
  --muted: #5C6B85;
  --whatsapp: #25D366;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(7,43,91,.10);
  --border: rgba(7,43,91,.10);
}

*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth;}
body{
  font-family:'IBM Plex Sans Arabic', 'Montserrat', sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.7;
  overflow-x:hidden;
}
html[lang="en"] body{font-family:'Montserrat', 'IBM Plex Sans Arabic', sans-serif;}
a{text-decoration:none; color:inherit;}
ul{list-style:none;}
img{max-width:100%; display:block;}
.container{max-width:1180px; margin:0 auto; padding:0 24px;}

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:14px 28px; border-radius:999px; font-weight:700; font-size:15px;
  transition:transform .2s ease, box-shadow .2s ease, opacity .2s ease;
  white-space:nowrap;
}
.btn:hover{transform:translateY(-2px);}
.btn-primary{background:var(--gold); color:var(--navy); box-shadow:0 8px 20px rgba(201,149,46,.35);}
.btn-outline{border:2px solid rgba(255,255,255,.5); color:#fff;}
.btn-whatsapp{background:var(--whatsapp); color:#fff; box-shadow:0 8px 20px rgba(37,211,102,.3);}
.btn.full-width{width:100%; margin-top:16px;}
.icon-wa{width:18px; height:18px; fill:currentColor;}

/* Header */
.site-header{
  position:sticky; top:0; z-index:50;
  background:rgba(255,255,255,.9);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--border);
}
.header-inner{display:flex; align-items:center; justify-content:space-between; padding:14px 24px; gap:20px;}
.logo{display:flex; align-items:center; gap:10px; font-size:20px; font-weight:800; color:var(--navy);}
.logo-icon-img{height:42px; width:auto; display:block;}
.accent{color:var(--gold);}
.main-nav{display:flex; gap:26px; flex:1; justify-content:center;}
.main-nav a{font-weight:600; color:var(--muted); transition:color .2s;}
.main-nav a:hover{color:var(--navy);}
.header-cta{padding:10px 20px; font-size:14px;}
.nav-toggle{display:none; background:none; border:none; color:var(--navy); font-size:26px; cursor:pointer;}

/* Hero */
.hero{position:relative; padding:90px 0 110px; overflow:hidden; background:var(--navy);}
.hero-bg{
  position:absolute; inset:0;
  background:
    radial-gradient(500px 400px at 92% 8%, rgba(201,149,46,.35), transparent 65%),
    radial-gradient(600px 500px at -5% 90%, rgba(11,92,173,.35), transparent 65%),
    var(--navy);
  z-index:0;
}
.hero-inner{position:relative; z-index:1; display:flex; align-items:center; gap:50px; flex-wrap:wrap;}
.hero-text{flex:1 1 480px; color:#fff;}
.badge{
  display:inline-block; padding:6px 16px; border-radius:999px;
  background:rgba(201,149,46,.18); color:#f0cf8f; font-size:13px; font-weight:700;
  border:1px solid rgba(201,149,46,.4); margin-bottom:18px;
}
.hero-text h1{font-size:clamp(30px,4.5vw,50px); font-weight:900; line-height:1.3; margin-bottom:10px; color:#fff;}
.hero-tagline{color:var(--gold); font-weight:700; font-size:16px; margin-bottom:20px;}
.hero-sub{color:#c9d3e6; font-size:17px; max-width:520px; margin-bottom:28px;}
.hero-actions{display:flex; gap:16px; flex-wrap:wrap; margin-bottom:40px;}
.hero-stats{display:flex; gap:32px; flex-wrap:wrap;}
.stat strong{display:block; font-size:20px; font-weight:800; color:#fff;}
.stat span{color:#a9b7d1; font-size:13px;}

.hero-visual{flex:1 1 320px; position:relative; height:320px;}
.floating-card{
  position:absolute; width:110px; height:140px; border-radius:14px;
  display:flex; align-items:center; justify-content:center; font-size:28px; font-weight:900; color:#fff;
  box-shadow:0 10px 30px rgba(0,0,0,.25); animation:float 6s ease-in-out infinite;
  background:#fff; padding:20px;
}
.floating-card img{width:100%; height:100%; object-fit:contain;}
.card-pubg{top:10px; right:40px; animation-delay:0s;}
.card-ff{top:90px; right:180px; animation-delay:1.2s;}
.card-play{top:150px; right:0; animation-delay:2.1s;}
.card-steam{top:60px; right:260px; animation-delay:.6s;}
@keyframes float{0%,100%{transform:translateY(0);}50%{transform:translateY(-16px);}}

/* Section head */
.section-head{max-width:640px; margin:0 auto 50px; text-align:center;}
.section-head.light{color:#fff;}
.eyebrow{display:inline-block; color:var(--gold); font-weight:800; font-size:13px; letter-spacing:.5px; margin-bottom:10px;}
.section-head h2{font-size:clamp(24px,3.5vw,36px); font-weight:900; margin-bottom:12px; color:var(--navy);}
.section-head.light h2{color:#fff;}
.section-head p{color:var(--muted); font-size:15px;}
.section-head.light p{color:#c9d3e6;}

/* Products */
.products{padding:100px 0;}
.product-grid{display:grid; grid-template-columns:repeat(auto-fit,minmax(240px,1fr)); gap:24px;}
.product-card{
  background:var(--card-bg); border-radius:var(--radius); padding:32px 24px;
  border:1px solid var(--border); text-align:center; position:relative; overflow:hidden;
  transition:transform .25s ease, box-shadow .25s ease;
}
.product-card::before{
  content:""; position:absolute; inset:0 0 auto 0; height:5px;
  background:linear-gradient(90deg,var(--blue),var(--gold));
}
.product-card:hover{transform:translateY(-8px); box-shadow:var(--shadow);}
.product-icon{
  width:64px; height:64px; margin:0 auto 18px; border-radius:16px;
  display:flex; align-items:center; justify-content:center; font-size:28px;
}
.product-icon.logo-badge{background:#fff; padding:12px; border:1px solid var(--border);}
.product-icon.logo-badge img{width:100%; height:100%; object-fit:contain;}
.product-photo{
  width:100%; max-width:220px; margin:0 auto 18px; border-radius:12px; overflow:hidden;
  box-shadow:0 8px 20px rgba(7,43,91,.15);
}
.product-photo img{width:100%; height:auto; display:block;}
.product-card h3{font-size:19px; font-weight:800; margin-bottom:10px; color:var(--navy);}
.product-card p{color:var(--muted); font-size:14px; margin-bottom:20px; min-height:44px;}
.product-cta{
  display:inline-block; padding:10px 22px; border-radius:999px; font-weight:700; font-size:14px;
  background:var(--navy); color:#fff; border:1px solid var(--navy); transition:all .2s;
}
.product-cta:hover{background:var(--gold); border-color:var(--gold); color:var(--navy);}

/* Why us */
.why-us{padding:100px 0; background:var(--navy);}
.features-grid{display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:24px;}
.feature{text-align:center; padding:20px;}
.feature-icon{font-size:36px; margin-bottom:16px;}
.feature h4{font-size:17px; font-weight:800; margin-bottom:8px; color:#fff;}
.feature p{color:#c9d3e6; font-size:14px;}

/* How it works */
.how{padding:100px 0;}
.steps{display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:32px;}
.step{background:var(--card-bg); border-radius:var(--radius); padding:32px 24px; text-align:center; border:1px solid var(--border);}
.step-num{
  width:44px; height:44px; margin:0 auto 16px; border-radius:50%;
  background:var(--gold); color:var(--navy);
  display:flex; align-items:center; justify-content:center; font-weight:900; font-size:18px;
}
.step h4{font-size:17px; font-weight:800; margin-bottom:8px; color:var(--navy);}
.step p{color:var(--muted); font-size:14px;}

/* Contact */
.contact{padding:100px 0; background:#fff;}
.contact-inner{display:flex; gap:50px; flex-wrap:wrap; align-items:center;}
.contact-text{flex:1 1 420px;}
.contact-text h2{font-size:clamp(24px,3.5vw,34px); font-weight:900; margin:10px 0 16px; color:var(--navy);}
.contact-text p{color:var(--muted); margin-bottom:20px;}
.contact-list li{margin-bottom:14px; font-size:15px; display:flex; align-items:center; gap:10px; color:var(--text);}
.contact-list a{display:flex; align-items:center; gap:10px; font-weight:700; color:var(--blue);}
.contact-list a:hover{color:var(--gold);}
.contact-list em{color:var(--muted); font-style:normal; font-size:12px;}
.contact-card{
  flex:1 1 320px; background:var(--navy); border-radius:var(--radius); padding:36px 28px;
  text-align:center; box-shadow:var(--shadow);
}
.contact-card h3{font-size:20px; font-weight:800; margin-bottom:10px; color:#fff;}
.contact-card p{color:#c9d3e6; font-size:14px; margin-bottom:6px;}

/* Floating WhatsApp */
.float-whatsapp{
  position:fixed; bottom:26px; left:26px; z-index:60;
  width:58px; height:58px; border-radius:50%; background:var(--whatsapp);
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 10px 25px rgba(37,211,102,.45);
  animation:pulse 2.5s infinite;
}
.float-whatsapp svg{width:30px; height:30px; fill:#fff;}
@keyframes pulse{
  0%{box-shadow:0 0 0 0 rgba(37,211,102,.5);}
  70%{box-shadow:0 0 0 16px rgba(37,211,102,0);}
  100%{box-shadow:0 0 0 0 rgba(37,211,102,0);}
}

/* Footer */
.site-footer{padding:40px 0; text-align:center; border-top:1px solid var(--border); background:#fff;}
.footer-logo{display:flex; align-items:center; justify-content:center; gap:8px; font-weight:800; font-size:18px; margin-bottom:14px; color:var(--navy);}
.footer-logo .logo-icon-img{height:36px;}
.site-footer p{color:var(--muted); font-size:13px; margin-top:6px;}
.footer-note{max-width:640px; margin:10px auto 0; font-size:12px; opacity:.8;}

/* Prices page */
.prices-page{padding:60px 0 100px;}
.page-head{max-width:720px; margin:0 auto 36px; text-align:center;}
.page-head h1{font-size:clamp(24px,3.5vw,34px); font-weight:900; margin:8px 0 12px; color:var(--navy);}
.page-head p{color:var(--muted); font-size:15px;}

.price-search-wrap{position:relative; max-width:560px; margin:0 auto 36px;}
.price-search-wrap input{
  width:100%; padding:14px 48px 14px 20px; border-radius:999px; border:1px solid var(--border);
  background:#fff; font-family:inherit; font-size:15px; color:var(--text); box-shadow:var(--shadow);
}
.price-search-wrap input:focus{outline:none; border-color:var(--blue);}
.price-search-icon{position:absolute; right:18px; top:50%; transform:translateY(-50%); opacity:.5;}

.price-accordion{display:flex; flex-direction:column; gap:14px;}
.price-cat{background:var(--card-bg); border:1px solid var(--border); border-radius:var(--radius); overflow:hidden;}
.price-cat-header{
  width:100%; display:flex; align-items:center; gap:16px; padding:18px 20px;
  background:none; border:none; cursor:pointer; text-align:right; font-family:inherit;
}
.price-cat-arrow{font-size:14px; color:var(--muted); flex:0 0 auto;}
.price-cat-info{flex:1; display:flex; flex-direction:column; gap:2px;}
.price-cat-name{font-weight:800; font-size:17px; color:var(--navy);}
.price-cat-count{font-size:13px; color:var(--muted);}
.price-cat-logo{width:52px; height:52px; border-radius:14px; overflow:hidden; border:1px solid var(--border); flex:0 0 auto; display:flex; align-items:center; justify-content:center; background:#fff;}
.price-cat-logo img{width:100%; height:100%; object-fit:contain; padding:8px;}

.price-cat-body{display:none; padding:0 20px 20px;}
.price-cat.open .price-cat-body{display:block;}

.price-tabs{display:flex; gap:10px; flex-wrap:wrap; margin-bottom:16px;}
.price-tab{
  padding:8px 18px; border-radius:999px; border:1px solid var(--border); background:#fff;
  font-family:inherit; font-weight:700; font-size:13px; color:var(--muted); cursor:pointer; transition:all .2s;
}
.price-tab.active{background:var(--blue); border-color:var(--blue); color:#fff;}

.price-grid{display:grid; grid-template-columns:repeat(auto-fill,minmax(160px,1fr)); gap:14px;}
.price-card{
  background:var(--bg); border:1px solid var(--border); border-radius:12px; padding:18px 14px; text-align:center;
}
.price-card img{width:44px; height:44px; object-fit:contain; margin:0 auto 10px; border-radius:10px; background:#fff; padding:6px; border:1px solid var(--border);}
.price-card-name{font-size:13px; font-weight:700; color:var(--navy); margin-bottom:10px; min-height:32px;}
.price-card-price{display:inline-block; padding:5px 14px; border-radius:999px; background:rgba(34,197,94,.12); color:#15803d; font-weight:800; font-size:14px;}

.price-footnote{text-align:center; color:var(--muted); font-size:13px; margin-top:36px;}
.main-nav a.active{color:var(--gold);}

/* Responsive */
@media (max-width:900px){
  .main-nav{display:none;}
  .nav-toggle{display:block;}
  .site-header.nav-open .main-nav{
    display:flex; flex-direction:column; position:absolute; top:100%; right:0; left:0;
    background:#fff; padding:20px 24px; gap:16px; border-bottom:1px solid var(--border);
  }
  .hero-visual{display:none;}
  .contact-inner{flex-direction:column;}
}
