 /* ================================
   Premium Arabic Blog Styling
================================ */
 * {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Tahoma", "Arial", sans-serif;
  background: #f8fafc;
  color: #101828;
  line-height: 1.9;
}

.container {
  width: min(1120px, 92%);
  margin: auto;
}

.topbar {
  background: #0f172a;
  color: #f8fafc;
  font-size: 14px;
  padding: 10px 0;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.navbar {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  color: #101828;
  font-size: 20px;
  font-weight: 900;
  text-decoration: none;
}

.brand span {
  color: #f59e0b;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-links a {
  color: #334155;
  font-weight: 700;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links .active {
  color: #f59e0b;
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f59e0b, #f97316);
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  border: none;
  transition: 0.3s ease;
}

.btn-outline {
  background: transparent;
  color: #f97316;
  border: 1px solid rgba(249, 115, 22, 0.35);
}

.btn:hover,
.nav-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 35px rgba(249, 115, 22, 0.28);
}

/* Hero */

.page-hero {
  padding: 110px 0 90px;
  color: #fff;
  text-align: center;
  background:
    radial-gradient(circle at 85% 10%, rgba(245, 158, 11, 0.35), transparent 34%),
    radial-gradient(circle at 10% 90%, rgba(249, 115, 22, 0.22), transparent 34%),
    linear-gradient(135deg, #020617 0%, #111827 55%, #1e293b 100%);
}

.breadcrumb {
  display: inline-block;
  margin-bottom: 22px;
  padding: 9px 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fde68a;
  font-size: 14px;
  font-weight: 800;
}

.page-hero h1 {
  max-width: 980px;
  margin: 0 auto 24px;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.35;
  font-weight: 900;
}

.page-hero .lead {
  max-width: 820px;
  margin: auto;
  color: #e5e7eb;
  font-size: 21px;
  line-height: 2;
}

/* Article */

.section {
  padding: 80px 0;
}

.article-content {
  max-width: 880px;
  padding: 56px;
  background: #fff;
  border-radius: 34px;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.09);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.article-content h2 {
  position: relative;
  margin: 52px 0 20px;
  padding-right: 22px;
  color: #111827;
  font-size: clamp(26px, 4vw, 36px);
  line-height: 1.45;
  font-weight: 900;
}

.article-content h2:first-child {
  margin-top: 0;
}

.article-content h2::before {
  content: "";
  position: absolute;
  right: 0;
  top: 14px;
  width: 6px;
  height: 34px;
  border-radius: 999px;
  background: linear-gradient(180deg, #f59e0b, #f97316);
}

.article-content h3 {
  margin: 34px 0 12px;
  color: #b45309;
  font-size: 24px;
  font-weight: 900;
}

.article-content p {
  margin: 0 0 22px;
  color: #344054;
  font-size: 18px;
  line-height: 2.1;
}

.article-content p:first-of-type {
  font-size: 20px;
  color: #1f2937;
}

.article-content ul,
.article-content ol {
  margin: 20px 0 32px;
  padding: 0;
  list-style: none;
}

.article-content li {
  position: relative;
  margin-bottom: 14px;
  padding: 16px 50px 16px 20px;
  background: #fff8ed;
  border: 1px solid rgba(245, 158, 11, 0.18);
  border-radius: 18px;
  color: #344054;
  font-size: 17px;
  font-weight: 700;
}

.article-content ul li::before {
  content: "✓";
  position: absolute;
  right: 18px;
  top: 15px;
  color: #f97316;
  font-weight: 900;
}

.article-content ol {
  counter-reset: item;
}

.article-content ol li {
  counter-increment: item;
}

.article-content ol li::before {
  content: counter(item);
  position: absolute;
  right: 16px;
  top: 13px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f59e0b, #f97316);
  color: #fff;
  font-size: 14px;
  text-align: center;
  line-height: 28px;
  font-weight: 900;
}

.article-content a {
  color: #f97316;
  font-weight: 900;
  text-decoration: none;
}

.article-content a:hover {
  text-decoration: underline;
}

/* Hide unwanted citation text */

.article-content p {
  overflow-wrap: anywhere;
}

.article-content p:has(+ h2) {
  margin-bottom: 34px;
}

/* Mobile */

@media (max-width: 900px) {
  .nav-inner,
  .topbar .container {
    flex-direction: column;
    padding: 16px 0;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .page-hero {
    padding: 75px 0 60px;
  }

  .page-hero .lead {
    font-size: 18px;
  }

  .article-content {
    padding: 30px 22px;
    border-radius: 24px;
  }

  .article-content p {
    font-size: 17px;
  }

  .article-content h2 {
    font-size: 27px;
  }
}
.article-main-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 38px auto 45px;
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.16);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.article-main-image {
  margin: 26px auto 34px;
  border-radius: 18px;
}

.advanced-pricing-table{
margin:40px 0;
background:#ffffff;
border-radius:24px;
overflow:hidden;
box-shadow:0 10px 40px rgba(0,0,0,0.08);
border:1px solid #e5e7eb;
}

.table-header{
padding:35px 30px;
background:linear-gradient(135deg,#0f172a,#111827);
color:#fff;
text-align:center;
}

.table-header h3{
margin:0 0 12px;
font-size:30px;
font-weight:800;
line-height:1.4;
}

.table-header p{
margin:0;
font-size:16px;
opacity:.9;
}

.advanced-pricing-table table{
width:100%;
border-collapse:collapse;
}

.advanced-pricing-table thead{
background:#f3f4f6;
}

.advanced-pricing-table th{
padding:20px;
font-size:15px;
font-weight:700;
color:#111827;
border-bottom:1px solid #e5e7eb;
text-align:center;
}

.advanced-pricing-table td{
padding:18px;
font-size:15px;
line-height:1.7;
text-align:center;
border-bottom:1px solid #f1f5f9;
}

.advanced-pricing-table tbody tr{
transition:.3s;
}

.advanced-pricing-table tbody tr:hover{
background:#f9fafb;
transform:scale(1.002);
}

.table-note{
padding:25px 30px;
background:#f9fafb;
font-size:15px;
line-height:1.9;
color:#374151;
}

@media(max-width:991px){

.advanced-pricing-table{
overflow-x:auto;
}

.advanced-pricing-table table{
min-width:900px;
}

}

 
/* ================================
   Extra Blog Components Styling
================================ */

/* Table of Contents */
.toc-box {
  margin: 38px 0 48px;
  padding: 32px;
  background: linear-gradient(135deg, #fff7ed, #fffbeb);
  border: 1px solid rgba(245, 158, 11, 0.22);
  border-radius: 26px;
  box-shadow: 0 18px 45px rgba(245, 158, 11, 0.10);
}

.toc-box h2 {
  margin-top: 0;
  font-size: 28px;
}

.toc-box ul {
  margin-bottom: 0;
}

.toc-box li {
  background: #ffffff;
}

/* Normal article tables */
.article-content table {
  width: 100%;
  margin: 36px 0 44px;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 20px 55px rgba(15, 23, 42, 0.09);
  border: 1px solid #e5e7eb;
}

.article-content table thead {
  background: linear-gradient(135deg, #0f172a, #111827);
}

.article-content table th {
  padding: 18px 16px;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  text-align: center;
  border-left: 1px solid rgba(255,255,255,0.12);
}

.article-content table td {
  padding: 18px 16px;
  color: #344054;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
  border-bottom: 1px solid #eef2f7;
  border-left: 1px solid #eef2f7;
}

.article-content table tbody tr:nth-child(even) {
  background: #f9fafb;
}

.article-content table tbody tr:hover {
  background: #fff7ed;
}

/* Internal links box */
.internal-links {
  margin: 54px 0;
  padding: 34px;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 28px;
}

.internal-links h2 {
  margin-top: 0;
}

.internal-links ul {
  margin-bottom: 0;
}

.internal-links li {
  background: #ffffff;
}

/* CTA Box */
.cta-box {
  margin-top: 60px;
  padding: 44px 34px;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(circle at 80% 10%, rgba(245, 158, 11, 0.35), transparent 35%),
    linear-gradient(135deg, #020617, #111827);
  border-radius: 32px;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.25);
}

.cta-box h2 {
  margin-top: 0;
  color: #fff;
  padding-right: 0;
}

.cta-box h2::before {
  display: none;
}

.cta-box p {
  max-width: 680px;
  margin: 0 auto 28px;
  color: #e5e7eb;
}

/* Clean image styling */
.article-main-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 34px auto 42px;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.16);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

/* Responsive tables */
@media (max-width: 900px) {
  .article-content table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
    border-radius: 18px;
  }

  .article-content table th,
  .article-content table td {
    min-width: 170px;
    font-size: 14px;
    padding: 14px 12px;
  }

  .toc-box,
  .internal-links,
  .cta-box {
    padding: 24px 18px;
    border-radius: 22px;
  }
}
 

