
/* =====================================================
   235 Colors – Main Stylesheet
   ===================================================== */

/* ----- CSS Variables ----- */
:root {
  --brand-blue:    #2563EB;
  --brand-orange:  #F59E0B;
  --brand-red:     #DC2626;
  --brand-dark:    #1F2937;
  --brand-mid:     #374151;
  --brand-light:   #F8FAFC;
  --brand-white:   #FFFFFF;
  --brand-gray:    #6B7280;
  --brand-border:  #E5E7EB;
  --shadow-sm:     0 1px 3px rgba(0,0,0,.10), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:     0 4px 6px rgba(0,0,0,.07), 0 2px 4px rgba(0,0,0,.06);
  --shadow-lg:     0 10px 15px rgba(0,0,0,.10), 0 4px 6px rgba(0,0,0,.05);
  --shadow-xl:     0 20px 25px rgba(0,0,0,.10), 0 10px 10px rgba(0,0,0,.04);
  --radius-sm:     6px;
  --radius-md:     12px;
  --radius-lg:     20px;
  --transition:    0.3s cubic-bezier(0.4,0,0.2,1);
  --font-main:     'Inter', 'Segoe UI', sans-serif;
  --font-arabic:   'Cairo', 'Noto Sans Arabic', sans-serif;
}

/* ----- Reset & Base ----- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  color: var(--brand-dark);
  background: var(--brand-white);
  overflow-x: hidden;
  line-height: 1.7;
}
body.rtl {
  font-family: var(--font-arabic);
  direction: rtl;
  text-align: right;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }
ul { list-style: none; padding: 0; margin: 0; }

/* ----- Custom Scrollbar ----- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--brand-light); }
::-webkit-scrollbar-thumb { background: var(--brand-orange); border-radius: 3px; }

/* ─── NAVBAR ────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition);
  background: transparent;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: var(--shadow-md);
  padding: 10px 0;
  backdrop-filter: blur(10px);
}
.navbar .navbar-brand img { height: 52px; transition: var(--transition); }
.navbar.scrolled .navbar-brand img { height: 42px; }

.nav-link {
  font-weight: 500;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.92) !important;
  padding: 8px 14px !important;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  letter-spacing: 0.02em;
}
.navbar.scrolled .nav-link { color: var(--brand-dark) !important; }
.nav-link:hover, .nav-link.active {
  color: var(--brand-orange) !important;
  background: rgba(245,158,11,0.1);
}

/* Language switcher */
.lang-switcher { display: flex; gap: 4px; align-items: center; }
.lang-btn {
  border: 1.5px solid rgba(255,255,255,0.4);
  background: transparent;
  color: rgba(255,255,255,0.85);
  border-radius: var(--radius-sm);
  padding: 4px 10px;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.05em;
}
.lang-btn:hover, .lang-btn.active {
  background: var(--brand-orange);
  border-color: var(--brand-orange);
  color: #fff;
}
.navbar.scrolled .lang-btn {
  border-color: var(--brand-border);
  color: var(--brand-dark);
}
.navbar.scrolled .lang-btn:hover,
.navbar.scrolled .lang-btn.active {
  background: var(--brand-orange);
  border-color: var(--brand-orange);
  color: #fff;
}

/* ─── HERO ──────────────────────────────────────────── */
.hero-section {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 40%, #1F2937 70%, #111827 100%);
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(245,158,11,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 10% 80%, rgba(37,99,235,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.hero-paint-blob {
  position: absolute;
  top: -80px; right: -80px;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(245,158,11,0.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-section .badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,158,11,0.15);
  border: 1px solid rgba(245,158,11,0.4);
  color: var(--brand-orange);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hero-section h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 1.2rem;
}
.hero-section h1 span { color: var(--brand-orange); }
.hero-section p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin-bottom: 2rem;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats-strip {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stats-strip .stat { text-align: center; }
.hero-stats-strip .stat .num { font-size: 1.8rem; font-weight: 800; color: var(--brand-orange); }
.hero-stats-strip .stat .lbl { font-size: 0.78rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.08em; }

/* Hero image panel */
.hero-image-panel {
  position: relative;
  z-index: 1;
}
.hero-card-float {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 28px;
  color: #fff;
}
.hero-color-swatches { display: flex; gap: 8px; margin-top: 14px; flex-wrap: wrap; }
.swatch {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.3);
  cursor: pointer;
  transition: transform 0.2s;
}
.swatch:hover { transform: scale(1.2); }

/* ─── BUTTONS ───────────────────────────────────────── */
.btn-brand-primary {
  background: linear-gradient(135deg, var(--brand-orange), #d97706);
  border: none;
  color: #fff;
  font-weight: 700;
  padding: 14px 30px;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(245,158,11,0.4);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-brand-primary:hover {
  background: linear-gradient(135deg, #d97706, var(--brand-orange));
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(245,158,11,0.5);
  color: #fff;
}
.btn-brand-outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.5);
  color: #fff;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-brand-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.8);
  color: #fff;
}
.btn-wa {
  background: linear-gradient(135deg, #25D366, #128C7E);
  border: none;
  color: #fff;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  transition: var(--transition);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 14px rgba(37,211,102,0.4);
  text-decoration: none;
}
.btn-wa:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(37,211,102,0.5); color: #fff; }

/* ─── SECTION SHARED ─────────────────────────────────── */
.section { padding: 90px 0; }
.section-sm { padding: 60px 0; }
.section-label {
  display: inline-block;
  color: var(--brand-orange);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--brand-dark);
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
.section-subtitle {
  font-size: 1rem;
  color: var(--brand-gray);
  max-width: 580px;
  margin: 0 auto 3rem;
}

/* ─── STATS SECTION ──────────────────────────────────── */
.stats-section { background: var(--brand-dark); padding: 60px 0; }
.stat-card {
  text-align: center;
  padding: 24px 16px;
}
.stat-card .stat-num {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--brand-orange);
  line-height: 1;
}
.stat-card .stat-lbl {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 6px;
}

/* ─── SERVICES ───────────────────────────────────────── */
.services-section { background: var(--brand-light); }
.service-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  border: 1px solid var(--brand-border);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}
.service-icon-wrap {
  width: 68px; height: 68px;
  background: linear-gradient(135deg, rgba(245,158,11,0.15), rgba(37,99,235,0.12));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.service-icon-wrap i { font-size: 1.6rem; color: var(--brand-orange); }
.service-card h5 { font-weight: 700; font-size: 1rem; margin-bottom: 10px; }
.service-card p { font-size: 0.88rem; color: var(--brand-gray); margin: 0; }

/* ─── PRODUCT CARDS ──────────────────────────────────── */
.product-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--brand-border);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-xl); border-color: transparent; }
.product-card .card-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card .card-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .card-img-wrap img { transform: scale(1.07); }
.product-card .img-placeholder {
  font-size: 3.5rem;
  color: var(--brand-orange);
  opacity: 0.5;
}
.product-card .card-img-wrap .overlay {
  position: absolute;
  inset: 0;
  background: rgba(31,41,55,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.product-card:hover .card-img-wrap .overlay { opacity: 1; }
.product-card .card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.product-card .card-body h5 { font-weight: 700; font-size: 1rem; margin-bottom: 8px; }
.product-card .card-body p { font-size: 0.85rem; color: var(--brand-gray); flex: 1; margin-bottom: 14px; }
.product-card .card-footer-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-top: 1px solid var(--brand-border);
}

/* Category badges */
.badge-cat {
  display: inline-block;
  border-radius: 50px;
  padding: 3px 12px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.badge-decorative { background: rgba(245,158,11,0.12); color: #d97706; }
.badge-exterior    { background: rgba(37,99,235,0.1);  color: #2563EB; }
.badge-primers     { background: rgba(220,38,38,0.1);  color: #DC2626; }
.badge-interior    { background: rgba(16,185,129,0.1); color: #059669; }

/* ─── BLOG CARDS ─────────────────────────────────────── */
.blog-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--brand-border);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-xl); border-color: transparent; }
.blog-card .blog-img-wrap {
  height: 200px;
  overflow: hidden;
  background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.blog-card .blog-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-card:hover .blog-img-wrap img { transform: scale(1.06); }
.blog-card .blog-img-placeholder { font-size: 3rem; color: var(--brand-blue); opacity: 0.4; }
.blog-card .blog-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.blog-card .blog-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 10px;
  font-size: 0.78rem;
  color: var(--brand-gray);
}
.blog-card .blog-meta .cat-tag {
  background: rgba(37,99,235,0.1);
  color: var(--brand-blue);
  border-radius: 50px;
  padding: 2px 10px;
  font-weight: 600;
}
.blog-card h5 { font-weight: 700; font-size: 1rem; margin-bottom: 8px; line-height: 1.4; }
.blog-card p { font-size: 0.85rem; color: var(--brand-gray); flex: 1; margin-bottom: 14px; }

/* ─── CATEGORY FILTER ────────────────────────────────── */
.filter-wrap { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.filter-btn {
  border: 1.5px solid var(--brand-border);
  background: #fff;
  color: var(--brand-gray);
  border-radius: 50px;
  padding: 8px 22px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover { border-color: var(--brand-orange); color: var(--brand-orange); }
.filter-btn.active {
  background: var(--brand-orange);
  border-color: var(--brand-orange);
  color: #fff;
  box-shadow: 0 4px 12px rgba(245,158,11,0.3);
}

/* Search bar */
.search-wrap { position: relative; max-width: 420px; }
.search-wrap input {
  width: 100%;
  border: 2px solid var(--brand-border);
  border-radius: 50px;
  padding: 12px 20px 12px 48px;
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
  background: #fff;
}
.search-wrap input:focus { border-color: var(--brand-orange); box-shadow: 0 0 0 4px rgba(245,158,11,0.12); }
.search-wrap .search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--brand-gray);
  pointer-events: none;
}
.rtl .search-wrap .search-icon { left: auto; right: 18px; }
.rtl .search-wrap input { padding: 12px 48px 12px 20px; }

/* ─── PAGE HERO (inner pages) ────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, #0f172a, #1F2937);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(245,158,11,0.1) 0%, transparent 70%);
}
.page-hero h1 { color: #fff; font-weight: 800; font-size: clamp(1.8rem, 4vw, 3rem); position: relative; }
.page-hero .breadcrumb { justify-content: center; }
.page-hero .breadcrumb-item { color: rgba(255,255,255,0.6); font-size: 0.88rem; }
.page-hero .breadcrumb-item.active { color: var(--brand-orange); }
.page-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }

/* ─── CONTACT CARDS ──────────────────────────────────── */
.contact-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 28px 22px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--brand-border);
  transition: var(--transition);
  height: 100%;
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.contact-card .icon-wrap {
  width: 60px; height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.4rem;
}
.icon-blue   { background: rgba(37,99,235,0.1); color: var(--brand-blue); }
.icon-orange { background: rgba(245,158,11,0.12); color: var(--brand-orange); }
.icon-green  { background: rgba(37,211,102,0.12); color: #25D366; }
.icon-red    { background: rgba(220,38,38,0.1); color: var(--brand-red); }
.contact-card h6 { font-weight: 700; margin-bottom: 6px; }
.contact-card p, .contact-card a { font-size: 0.9rem; color: var(--brand-gray); margin: 0; }
.contact-card a:hover { color: var(--brand-orange); }

/* ─── CONTACT FORM ───────────────────────────────────── */
.contact-form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--brand-border);
}
.form-label { font-weight: 600; font-size: 0.88rem; color: var(--brand-dark); margin-bottom: 6px; }
.form-control, .form-select {
  border: 2px solid var(--brand-border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.9rem;
  transition: var(--transition);
}
.form-control:focus, .form-select:focus {
  border-color: var(--brand-orange);
  box-shadow: 0 0 0 4px rgba(245,158,11,0.12);
  outline: none;
}

/* ─── CTA SECTION ────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  text-align: center;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(245,158,11,0.1) 0%, transparent 70%);
}
.cta-section h2 { color: #fff; font-weight: 800; font-size: clamp(1.6rem, 3vw, 2.4rem); }
.cta-section p { color: rgba(255,255,255,0.7); font-size: 1rem; }

/* ─── FOOTER ─────────────────────────────────────────── */
.footer {
  background: #0a0f1a;
  color: rgba(255,255,255,0.7);
  padding: 70px 0 0;
}
.footer .footer-brand { margin-bottom: 20px; }
.footer .footer-brand img { height: 50px; }
.footer .footer-desc { font-size: 0.88rem; max-width: 280px; line-height: 1.8; }
.footer h6 { color: #fff; font-weight: 700; font-size: 0.92rem; margin-bottom: 18px; text-transform: uppercase; letter-spacing: 0.08em; }
.footer .footer-links a {
  display: block;
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  padding: 4px 0;
  transition: var(--transition);
}
.footer .footer-links a:hover { color: var(--brand-orange); padding-left: 6px; }
.rtl .footer .footer-links a:hover { padding-left: 0; padding-right: 6px; }
.footer .social-icons { display: flex; gap: 10px; margin-top: 16px; }
.footer .social-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  transition: var(--transition);
}
.footer .social-icon:hover { background: var(--brand-orange); border-color: var(--brand-orange); color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  margin-top: 50px;
  padding: 20px 0;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: var(--brand-orange); }

/* ─── WHATSAPP FLOAT ─────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  animation: waPulse 2.5s infinite;
}
.wa-float:hover { transform: scale(1.1); color: #fff; }
.rtl .wa-float { right: auto; left: 28px; }

@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 4px 32px rgba(37,211,102,0.75), 0 0 0 10px rgba(37,211,102,0.1); }
}

/* ─── ANIMATIONS ─────────────────────────────────────── */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ─── PRODUCT DETAIL ─────────────────────────────────── */
.product-detail-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-detail-img img { width: 100%; height: 100%; object-fit: cover; }
.product-detail-img .img-ph { font-size: 5rem; color: var(--brand-orange); opacity: 0.4; }
.spec-table { width: 100%; border-collapse: collapse; margin-top: 16px; }
.spec-table td { padding: 10px 14px; border-bottom: 1px solid var(--brand-border); font-size: 0.9rem; }
.spec-table tr:last-child td { border-bottom: none; }
.spec-table td:first-child { font-weight: 600; color: var(--brand-dark); width: 45%; background: var(--brand-light); }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--brand-mid);
  border-bottom: 1px solid var(--brand-border);
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li i { color: var(--brand-orange); margin-top: 3px; flex-shrink: 0; }

/* ─── POST DETAIL ────────────────────────────────────── */
.post-content h2 { font-size: 1.5rem; font-weight: 700; margin: 28px 0 12px; color: var(--brand-dark); }
.post-content h3 { font-size: 1.2rem; font-weight: 700; margin: 22px 0 10px; }
.post-content p { color: var(--brand-mid); line-height: 1.9; margin-bottom: 16px; }
.post-content strong { color: var(--brand-dark); }

/* ─── LOADING SPINNER ────────────────────────────────── */
.spinner-brand {
  width: 42px; height: 42px;
  border: 4px solid var(--brand-border);
  border-top-color: var(--brand-orange);
  border-radius: 50%;
  animation: spin 0.75s linear infinite;
  margin: 40px auto;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ─── NO RESULTS ─────────────────────────────────────── */
.no-results {
  text-align: center;
  padding: 60px 20px;
  color: var(--brand-gray);
}
.no-results i { font-size: 3rem; margin-bottom: 16px; display: block; opacity: 0.4; }

/* ─── ABOUT SECTION ──────────────────────────────────── */
.about-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
}
.about-img-wrap::after {
  content: '';
  position: absolute;
  bottom: -20px; right: -20px;
  width: 120px; height: 120px;
  background: var(--brand-orange);
  border-radius: var(--radius-md);
  z-index: -1;
}
.why-card {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--brand-border);
  transition: var(--transition);
}
.why-card:hover { box-shadow: var(--shadow-lg); transform: translateX(4px); }
.rtl .why-card:hover { transform: translateX(-4px); }
.why-card .wi-icon { flex-shrink: 0; width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, rgba(245,158,11,0.15), rgba(37,99,235,0.1)); display: flex; align-items: center; justify-content: center; }
.why-card .wi-icon i { color: var(--brand-orange); font-size: 1.2rem; }
.why-card h6 { font-weight: 700; margin-bottom: 4px; }
.why-card p { font-size: 0.85rem; color: var(--brand-gray); margin: 0; }

/* ─── MISC ───────────────────────────────────────────── */
.divider-line {
  height: 4px;
  width: 50px;
  background: linear-gradient(90deg, var(--brand-orange), var(--brand-red));
  border-radius: 2px;
  margin: 12px auto 0;
}
.text-start .divider-line { margin-left: 0; }
.rtl .text-start .divider-line { margin-left: auto; margin-right: 0; }

.view-all-link { color: var(--brand-orange); font-weight: 600; font-size: 0.9rem; display: inline-flex; align-items: center; gap: 6px; transition: var(--transition); }
.view-all-link:hover { gap: 10px; color: var(--brand-orange); }

/* Responsive tweaks */
@media (max-width: 768px) {
  .hero-stats-strip { gap: 20px; }
  .hero-stats-strip .stat .num { font-size: 1.4rem; }
  .contact-form-card { padding: 24px 18px; }
  .hero-btns { justify-content: center; }
  .hero-section p { text-align: center; }
  .hero-section h1 { text-align: center; }
  .hero-section .badge-pill { display: flex; justify-content: center; }
}
