
:root{
  --red:#005dff;
  --red2:#2ea7ff;
  --dark:#151515;
  --text:#222;
  --muted:#666;
  --bg:#ffffff;
  --soft:#f4f8ff;
  --card:#ffffff;
  --border:rgba(0,93,255,.18);
  --shadow:0 14px 35px rgba(0,93,255,.10);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  direction:rtl;
  font-family:"Cairo",Tahoma,Arial,sans-serif;
  color:var(--text);
  background:linear-gradient(180deg,#fff,#f8fbff 55%,#fff);
  line-height:1.8;
}
a{text-decoration:none;color:inherit}
img{max-width:100%;height:auto}
.container{width:min(1180px,calc(100% - 32px));margin:auto}
.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:22px;
  box-shadow:var(--shadow);
}
.site-header{
  position:sticky;top:0;z-index:99;
  background:rgba(255,255,255,.94);
  backdrop-filter:blur(12px);
  border-bottom:1px solid var(--border);
}
.header-inner{display:flex;align-items:center;justify-content:space-between;gap:18px;padding:14px 0}
.brand{display:flex;align-items:center;gap:12px}
.logo-circle{
  width:52px;height:52px;border-radius:50%;
  display:grid;place-items:center;
  background:linear-gradient(135deg,var(--red),var(--red2));
  color:#fff;font-weight:900;font-size:24px;
  box-shadow:0 10px 22px rgba(0,93,255,.22);
}
.site-name{font-weight:900;color:var(--red);font-size:25px;line-height:1.1}
.site-desc{font-size:12px;color:#777;display:block}
.main-menu{display:flex;align-items:center;gap:8px;flex-wrap:wrap}
.main-menu a{display:block;padding:9px 13px;border-radius:16px;font-weight:800;color:#333;font-size:14px}
.main-menu a:hover,.main-menu .current-menu-item>a{background:rgba(196,0,24,.08);color:var(--red)}
.menu-toggle{display:none;border:1px solid var(--border);background:#fff;color:var(--red);border-radius:14px;padding:9px 12px;font-weight:900}
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  background:linear-gradient(135deg,var(--red),var(--red2));
  color:#fff;
  border:0;
  border-radius:16px;
  padding:12px 20px;
  font-weight:900;
  box-shadow:0 12px 28px rgba(0,93,255,.22);
  cursor:pointer;
}
.btn.white{background:#fff;color:var(--red);border:1px solid var(--border);box-shadow:none}
.hero{
  min-height:650px;
  position:relative;
  overflow:hidden;
  display:flex;
  align-items:center;
  background:
    linear-gradient(90deg,rgba(255,255,255,.18),rgba(255,255,255,.95) 54%,#fff 100%),
    url('../images/hero.svg') left center/cover no-repeat;
  border-bottom:1px solid var(--border);
}
.hero-content{max-width:670px;padding:80px 0;position:relative;z-index:1}
.kicker{color:var(--red);font-weight:900;margin-bottom:8px}
.hero h1{font-size:74px;line-height:1.05;margin:0 0 8px;color:var(--red);font-weight:900}
.hero h2{font-size:33px;margin:0 0 16px;color:#222}
.hero p{font-size:20px;color:#555;margin:0 0 28px}
.actions{display:flex;gap:12px;flex-wrap:wrap}
.trust-row{display:flex;gap:12px;flex-wrap:wrap;margin-top:24px}
.trust-item{background:#fff;border:1px solid var(--border);border-radius:14px;padding:9px 13px;font-weight:800;color:#444}
.section{padding:62px 0}
.section-title{text-align:center;margin-bottom:34px}
.section-title h2{font-size:38px;color:var(--red);margin:0 0 6px;font-weight:900}
.section-title p{margin:0;color:var(--muted)}
.grid{display:grid;gap:22px}
.services-grid{grid-template-columns:repeat(3,1fr)}
.service-card{text-align:center;padding:28px;transition:.25s}
.service-card:hover{transform:translateY(-6px);border-color:rgba(0,93,255,.38);box-shadow:0 20px 45px rgba(0,93,255,.16)}
.icon{
  width:82px;height:82px;border-radius:24px;margin:0 auto 16px;
  display:grid;place-items:center;
  background:linear-gradient(135deg,#eef6ff,#d7e9ff);
  color:var(--red);
  font-size:38px;
  border:1px solid var(--border);
}
.service-card h3{margin:0 0 8px;color:var(--red);font-size:23px}
.service-card p{margin:0;color:#555}
.stats{grid-template-columns:repeat(4,1fr)}
.stat{text-align:center;padding:24px}
.stat strong{display:block;color:var(--red);font-size:36px;line-height:1.1}
.about-wrap{display:grid;grid-template-columns:1fr 1fr;gap:28px;align-items:center}
.about-box{padding:34px}
.about-box h2{color:var(--red);font-size:36px;margin:0 0 10px}
.about-image{min-height:360px;background:url('../images/about.svg') center/cover no-repeat;border-radius:26px}
.testimonials{grid-template-columns:repeat(3,1fr)}
.testimonial{padding:24px}
.stars{color:var(--red);font-size:23px}
.posts-grid{grid-template-columns:repeat(3,1fr)}
.post-card{overflow:hidden;transition:.25s}
.post-card:hover{transform:translateY(-5px)}
.post-thumb{display:block;height:220px;background:#ffe8eb;overflow:hidden}
.post-thumb img{width:100%;height:100%;object-fit:cover;display:block;transition:.35s}
.post-card:hover .post-thumb img{transform:scale(1.06)}
.post-body{padding:20px}
.badge{display:inline-block;background:rgba(196,0,24,.08);color:var(--red);border:1px solid rgba(0,93,255,.14);border-radius:99px;padding:4px 10px;font-size:12px;font-weight:800;margin-bottom:10px}
.post-body h3{margin:0 0 8px;font-size:21px;color:#222;line-height:1.45}
.post-meta{font-size:13px;color:#777;margin-bottom:8px}
.post-body p{margin:0;color:#555}
.page-hero{padding:68px 0 36px;background:linear-gradient(180deg,#fff0f2,#fff);border-bottom:1px solid var(--border);text-align:center}
.page-hero h1{margin:0 0 8px;font-size:43px;color:var(--red);font-weight:900}
.breadcrumbs{font-size:14px;color:#777}
.breadcrumbs a{color:var(--red);font-weight:800}
.breadcrumbs span{margin:0 7px}
.layout{display:grid;grid-template-columns:minmax(0,1fr) 320px;gap:26px;align-items:start}
.archive-list{display:grid;gap:20px}
.list-post{display:grid;grid-template-columns:260px 1fr;gap:20px;padding:15px;align-items:center}
.list-post .post-thumb{height:175px;border-radius:18px}
.list-post h2{margin:0 0 8px;color:#222;font-size:24px}
.single-article{padding:32px}
.single-article h1{font-size:42px;line-height:1.25;color:var(--red);margin:0 0 10px}
.featured-img{width:100%;max-height:520px;object-fit:cover;border-radius:22px;margin:22px 0}
.entry-content h2,.entry-content h3{color:var(--red)}
.entry-content p{font-size:18px}
.post-tags{margin-top:28px;padding-top:18px;border-top:1px solid var(--border)}
.post-tags a,.tag-cloud a{display:inline-block;margin:4px;padding:6px 11px;border-radius:99px;border:1px solid var(--border);background:#f8fbff;color:var(--red);font-size:13px}
.widget{padding:22px;margin-bottom:22px}
.widget-title{color:var(--red);margin:0 0 12px;font-size:22px}
.widget ul{list-style:none;padding:0;margin:0}
.widget li{padding:9px 0;border-bottom:1px solid #f1d7da}
.search-form input,.form-input{
  width:100%;padding:13px 14px;border-radius:14px;border:1px solid var(--border);
  font-family:inherit;margin-bottom:10px;background:#fff;color:#222;
}
.pagination{display:flex;justify-content:center;gap:8px;flex-wrap:wrap;margin:28px 0}
.pagination .page-numbers{padding:8px 13px;border-radius:12px;border:1px solid var(--border);background:#fff;color:var(--red);font-weight:800}
.pagination .current{background:var(--red);color:#fff}
.categories-grid{grid-template-columns:repeat(4,1fr)}
.category-card{text-align:center;padding:30px 18px}
.category-card strong{display:block;color:var(--red);font-size:22px}
.site-footer{background:#151515;color:#eee;margin-top:40px;padding:46px 0 18px}
.footer-grid{display:grid;grid-template-columns:1.5fr 1fr 1fr 1fr;gap:28px}
.footer-title,.footer-grid h3{color:#fff;font-weight:900;margin-top:0}
.footer-grid a:hover{color:#ff8390}
.footer-grid ul{list-style:none;margin:0;padding:0}
.footer-grid li{padding:5px 0}
.copy{text-align:center;border-top:1px solid rgba(255,255,255,.1);margin-top:28px;padding-top:16px;color:#aaa}
.float-wa{position:fixed;left:20px;bottom:20px;width:60px;height:60px;border-radius:50%;background:#25d366;color:#fff;display:grid;place-items:center;font-size:28px;z-index:90;box-shadow:0 12px 30px rgba(37,211,102,.35)}
@media(max-width:1000px){
  .main-menu{display:none}
  .main-menu.open{display:flex;position:absolute;top:75px;right:16px;left:16px;background:#fff;border:1px solid var(--border);border-radius:20px;padding:14px;flex-direction:column;align-items:stretch}
  .menu-toggle{display:block}
  .header-cta{display:none}
  .services-grid,.posts-grid{grid-template-columns:repeat(2,1fr)}
  .stats,.categories-grid{grid-template-columns:repeat(2,1fr)}
  .about-wrap,.layout{grid-template-columns:1fr}
  .hero h1{font-size:55px}
}
@media(max-width:680px){
  .hero{min-height:560px;text-align:center}
  .hero h1{font-size:42px}
  .hero h2{font-size:24px}
  .hero p{font-size:17px}
  .actions,.trust-row{justify-content:center}
  .services-grid,.posts-grid,.stats,.testimonials,.footer-grid,.categories-grid{grid-template-columns:1fr}
  .list-post{grid-template-columns:1fr}
  .list-post .post-thumb{height:220px}
  .section-title h2{font-size:30px}
}
