/* ============================================================
   VERITUS THEME — Main Stylesheet
   Inspired by modern bento-grid, clean typography design
   ============================================================ */

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* --- Base --- */
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #1a1a1a;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* RTL */
body.rtl, [dir="rtl"] {
  font-family: 'Noto Sans Arabic', 'Inter', sans-serif;
  direction: rtl;
  text-align: right;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  line-height: 1.1;
  color: #0a0a0a;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; }
h4 { font-size: 1.25rem; font-weight: 700; }

p { color: #555; line-height: 1.7; }
a { color: inherit; text-decoration: none; }

.text-muted { color: #888; }
.text-red { color: #E62F43; }
.text-white { color: #fff; }
.text-center { text-align: center; }
.fw-400 { font-weight: 400; }
.fw-500 { font-weight: 500; }

/* --- Layout --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 6rem 0;
}

.section--sm { padding: 4rem 0; }

/* --- Grid System --- */
.grid { display: grid; gap: 1rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-6 { grid-template-columns: repeat(6, 1fr); }

/* Bento grid — mixed sizes */
.bento {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(180px, auto);
}

.bento > *:nth-child(1) { grid-column: span 7; grid-row: span 2; }
.bento > *:nth-child(2) { grid-column: span 5; }
.bento > *:nth-child(3) { grid-column: span 5; }
.bento > *:nth-child(4) { grid-column: span 4; }
.bento > *:nth-child(5) { grid-column: span 4; }
.bento > *:nth-child(6) { grid-column: span 4; }

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-6 { grid-template-columns: repeat(3, 1fr); }
  .bento { grid-template-columns: repeat(6, 1fr); }
  .bento > *:nth-child(1) { grid-column: span 6; grid-row: span 1; }
  .bento > *:nth-child(n+2) { grid-column: span 3; }
}

@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4, .grid-6 { grid-template-columns: 1fr; }
  .bento { grid-template-columns: 1fr; }
  .bento > * { grid-column: span 1 !important; grid-row: span 1 !important; }
  .section { padding: 3.5rem 0; }
}

/* --- Flex --- */
.flex { display: flex; }
.flex-center { align-items: center; justify-content: center; }
.flex-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.flex-col { flex-direction: column; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.gap-4 { gap: 2rem; }

/* ============================
   HEADER
   ============================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 72px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

.site-header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo img {
  height: 32px;
  width: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.site-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: #555;
  transition: color 0.2s;
  position: relative;
}

.site-nav a:hover, .site-nav a.active {
  color: #0a0a0a;
}

.site-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: #E62F43;
  border-radius: 1px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Language pill */
.lang-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid #e5e5e5;
  font-size: 0.8rem;
  font-weight: 500;
  color: #555;
  cursor: pointer;
  transition: all 0.2s;
  background: #fff;
  position: relative;
}

.lang-pill:hover { border-color: #ccc; }

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  border: 1px solid #eee;
  min-width: 150px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all 0.2s;
  overflow: hidden;
  z-index: 100;
}

[dir="rtl"] .lang-dropdown { right: auto; left: 0; }

.lang-pill:hover .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-dropdown a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  font-size: 0.85rem;
  color: #333;
  transition: background 0.15s;
}

.lang-dropdown a:hover { background: #f5f5f5; }

/* Mobile nav */
.mobile-toggle {
  display: none;
  width: 36px;
  height: 36px;
  border: none;
  background: none;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.mobile-toggle span {
  width: 20px;
  height: 2px;
  background: #1a1a1a;
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.mobile-overlay.open { display: flex; }
.mobile-overlay a { font-size: 1.5rem; font-weight: 700; color: #0a0a0a; }
.mobile-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  border: none;
  background: none;
  font-size: 1.5rem;
  cursor: pointer;
}

[dir="rtl"] .mobile-close { right: auto; left: 1.5rem; }

@media (max-width: 768px) {
  .site-nav { display: none; }
  .mobile-toggle { display: flex; }
}

/* ============================
   BUTTONS
   ============================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  line-height: 1;
}

.btn-red {
  background: #E62F43;
  color: #fff;
}
.btn-red:hover {
  background: #C41E32;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230,47,67,0.3);
}

.btn-dark {
  background: #0a0a0a;
  color: #fff;
}
.btn-dark:hover {
  background: #222;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.btn-outline {
  background: transparent;
  color: #0a0a0a;
  border: 1.5px solid #d5d5d5;
}
.btn-outline:hover {
  border-color: #0a0a0a;
  transform: translateY(-2px);
}

.btn-white {
  background: #fff;
  color: #0a0a0a;
}
.btn-white:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
}
.btn-whatsapp:hover {
  background: #1ebe57;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.3);
}

.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-sm { padding: 8px 20px; font-size: 0.8rem; }

/* ============================
   HERO
   ============================ */
.hero {
  padding: calc(72px + 4rem) 0 4rem;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: #fff;
  position: relative;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content h1 {
  margin-bottom: 1.5rem;
}

.hero-content h1 .accent {
  color: #E62F43;
}

.hero-content .subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.hero-content .desc {
  color: #777;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 480px;
}

.hero-content .desc li {
  list-style: none;
  padding: 4px 0;
  position: relative;
  padding-right: 1.5rem;
}

[dir="rtl"] .hero-content .desc li { padding-right: 0; padding-left: 1.5rem; }

.hero-content .desc li::before {
  content: '✓';
  position: absolute;
  right: 0;
  color: #E62F43;
  font-weight: 700;
}

[dir="rtl"] .hero-content .desc li::before { right: auto; left: 0; }

.hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* Hero visual — bento collage */
.hero-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0.75rem;
}

.hero-card {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  min-height: 160px;
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card--dark {
  background: #1a1a1a;
  color: #fff;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero-card--red {
  background: #E62F43;
  color: #fff;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero-card--tall { grid-row: span 2; }

.hero-card h4 { color: inherit; font-size: 1rem; margin-bottom: 0.25rem; }
.hero-card p { color: rgba(255,255,255,0.75); font-size: 0.8rem; }

@media (max-width: 768px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero { min-height: auto; padding-top: calc(72px + 3rem); }
}

/* ============================
   STATS ROW
   ============================ */
.stats-row {
  display: flex;
  gap: 3rem;
  padding: 2rem 0;
  border-top: 1px solid #eee;
  margin-top: 3rem;
}

.stat-item {}

.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: #0a0a0a;
  line-height: 1;
  letter-spacing: -0.03em;
}

.stat-number .red { color: #E62F43; }

.stat-label {
  font-size: 0.8rem;
  color: #888;
  margin-top: 4px;
}

@media (max-width: 640px) {
  .stats-row { flex-direction: column; gap: 1.5rem; }
}

/* ============================
   SERVICE CARDS (Bento style)
   ============================ */
.service-card {
  background: #f8f8f8;
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  background: #f0f0f0;
  transform: translateY(-4px);
}

.service-card--dark {
  background: #1a1a1a;
  color: #fff;
}

.service-card--dark:hover { background: #222; }

.service-card--red {
  background: #E62F43;
  color: #fff;
}

.service-card--red:hover { background: #d12a3c; }

.service-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.service-card h4 {
  margin-bottom: 0.5rem;
  color: inherit;
}

.service-card p {
  color: inherit;
  opacity: 0.75;
  font-size: 0.875rem;
  line-height: 1.6;
}

.service-card .arrow {
  margin-top: auto;
  padding-top: 1rem;
  font-size: 1.2rem;
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s;
}

[dir="rtl"] .service-card .arrow { transform: translateX(8px); }

.service-card:hover .arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ============================
   PILL TABS
   ============================ */
.pill-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.pill-tab {
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  background: #f3f3f3;
  color: #555;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}

[dir="rtl"] .pill-tab { font-family: 'Noto Sans Arabic', 'Inter', sans-serif; }

.pill-tab:hover { background: #e8e8e8; }
.pill-tab.active { background: #0a0a0a; color: #fff; }

.tab-panel { display: none; animation: fadeUp 0.3s ease; }
.tab-panel.active { display: block; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================
   COUNTRY CARDS
   ============================ */
.country-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem 1rem;
  border-radius: 16px;
  background: #f8f8f8;
  transition: all 0.25s ease;
  text-decoration: none;
  color: #1a1a1a;
}

.country-card:hover {
  background: #1a1a1a;
  color: #fff;
  transform: translateY(-4px);
}

.country-card img { width: 40px; height: 40px; }
.country-card span { font-weight: 600; font-size: 0.85rem; }

/* ============================
   CTA SECTION
   ============================ */
.cta-section {
  background: #0a0a0a;
  border-radius: 24px;
  padding: 4rem;
  text-align: center;
  color: #fff;
  margin: 0 1.5rem;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(230,47,67,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section h2 { color: #fff; margin-bottom: 0.75rem; }
.cta-section p { color: rgba(255,255,255,0.6); margin-bottom: 2rem; font-size: 1.05rem; }

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.cta-phone {
  margin-top: 1.5rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

@media (max-width: 768px) {
  .cta-section { padding: 3rem 1.5rem; margin: 0 0.75rem; border-radius: 16px; }
}

/* ============================
   FOOTER
   ============================ */
.site-footer {
  background: #fafafa;
  padding: 4rem 0 0;
  border-top: 1px solid #eee;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-brand img { height: 28px; margin-bottom: 1rem; }
.footer-brand p { color: #888; font-size: 0.85rem; max-width: 260px; line-height: 1.6; }

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: #666;
  transition: all 0.2s;
}

.footer-social a:hover {
  background: #E62F43;
  border-color: #E62F43;
  color: #fff;
}

.footer-col h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #999;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: #555;
  transition: color 0.15s;
}

.footer-links a:hover { color: #E62F43; }

.footer-bottom {
  padding: 1.5rem 0;
  border-top: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: #aaa;
}

.footer-bottom a { color: #aaa; }
.footer-bottom a:hover { color: #E62F43; }

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ============================
   WHATSAPP FLOAT
   ============================ */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  transition: all 0.3s ease;
  text-decoration: none;
}

[dir="rtl"] .whatsapp-float { right: auto; left: 2rem; }

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37,211,102,0.4);
  color: #fff;
}

/* ============================
   MARQUEE / LOGO SCROLL
   ============================ */
.logo-marquee {
  overflow: hidden;
  position: relative;
  padding: 2rem 0;
}

.logo-marquee::before,
.logo-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
}

.logo-marquee::before { left: 0; background: linear-gradient(to right, #fff, transparent); }
.logo-marquee::after { right: 0; background: linear-gradient(to left, #fff, transparent); }

.logo-track {
  display: flex;
  animation: marquee 30s linear infinite;
  gap: 4rem;
  align-items: center;
  white-space: nowrap;
}

.logo-track img {
  height: 36px;
  opacity: 0.35;
  filter: grayscale(100%);
  transition: all 0.3s;
}

.logo-track img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

[dir="rtl"] .logo-track {
  animation-name: marquee-rtl;
}

@keyframes marquee-rtl {
  0% { transform: translateX(0); }
  100% { transform: translateX(50%); }
}

/* ============================
   TIMELINE
   ============================ */
.timeline {
  display: flex;
  align-items: flex-start;
  position: relative;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: calc(2rem + 24px);
  left: 24px;
  right: 24px;
  height: 2px;
  background: #eee;
}

.timeline-step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
}

.timeline-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #1a1a1a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  margin: 0 auto 0.75rem;
}

.timeline-num.red { background: #E62F43; }

.timeline-title { font-weight: 600; font-size: 0.85rem; margin-bottom: 0.25rem; }
.timeline-desc { font-size: 0.75rem; color: #888; max-width: 140px; margin: 0 auto; }

@media (max-width: 768px) {
  .timeline { flex-direction: column; gap: 1.5rem; }
  .timeline::before {
    top: 0; bottom: 0; left: 23px; right: auto;
    width: 2px; height: auto;
  }
  [dir="rtl"] .timeline::before { left: auto; right: 23px; }
  .timeline-step { display: flex; gap: 1rem; text-align: left; align-items: center; }
  [dir="rtl"] .timeline-step { text-align: right; }
  .timeline-num { margin: 0; flex-shrink: 0; }
  .timeline-desc { max-width: none; margin: 0; }
}

/* ============================
   UTILITIES / SCROLL REVEAL
   ============================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Body offset for fixed header */
body { padding-top: 72px; }

/* Section headings */
.section-header {
  margin-bottom: 3rem;
}

.section-header.centered { text-align: center; }

.section-header .overline {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #E62F43;
  margin-bottom: 0.75rem;
}

.section-header p {
  max-width: 560px;
  font-size: 1.05rem;
  margin-top: 0.75rem;
}

.section-header.centered p { margin-left: auto; margin-right: auto; }

/* ============================
   RTL FIXES
   ============================ */
/* Phone numbers & LTR content in RTL pages */
[dir="rtl"] .ltr-num,
[dir="rtl"] .phone-num,
.phone-num {
  direction: ltr;
  unicode-bidi: embed;
  display: inline-block;
}

[dir="rtl"] .stats-row { direction: ltr; }
[dir="rtl"] .stat-item { direction: rtl; }

[dir="rtl"] .cta-phone {
  direction: ltr;
  unicode-bidi: embed;
}

/* ============================
   PHOTO CARDS
   ============================ */
.photo-card {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-card--overlay {
  position: relative;
}

.photo-card--overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%);
}

.photo-card--overlay .photo-label {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  z-index: 2;
  color: #fff;
}

[dir="rtl"] .photo-card--overlay .photo-label { left: 1.5rem; right: 1.5rem; }

.photo-card--overlay .photo-label h4 { color: #fff; margin-bottom: 0.25rem; }
.photo-card--overlay .photo-label p { color: rgba(255,255,255,0.8); font-size: 0.85rem; margin: 0; }

/* Featured / highlight card with image background */
.featured-card {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  padding: 2rem;
  background-size: cover;
  background-position: center;
}

.featured-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 60%);
}

.featured-card > * { position: relative; z-index: 2; }
.featured-card h3 { color: #fff; margin-bottom: 0.5rem; }
.featured-card p { color: rgba(255,255,255,0.8); margin: 0; }

/* Badge pill */
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-red { background: #E62F43; color: #fff; }
.badge-dark { background: #1a1a1a; color: #fff; }
.badge-light { background: #f0f0f0; color: #555; }

/* ============================
   SPLIT SECTION (text + image)
   ============================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.split--reverse { direction: ltr; }
[dir="rtl"] .split--reverse { direction: rtl; }

.split-image {
  border-radius: 24px;
  overflow: hidden;
  max-height: 480px;
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .split { grid-template-columns: 1fr; gap: 2rem; }
  .split-image { max-height: 300px; }
}

/* Numbered list */
.num-list { list-style: none; counter-reset: numlist; }
.num-list li {
  counter-increment: numlist;
  padding: 1rem 0;
  border-bottom: 1px solid #eee;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.num-list li::before {
  content: counter(numlist, decimal-leading-zero);
  font-weight: 800;
  font-size: 1.25rem;
  color: #E62F43;
  flex-shrink: 0;
  min-width: 2rem;
}
