/* ==========================================================================
   الصيانة EG-SIANA - Main Style Sheet
   ========================================================================== */

/* =========================
   Reset & Root Variables
========================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --primary-color: #0b63ce;
  --primary-hover: #084ca4;
  --accent-navy: #0f223a;
  --accent-navy-hover: #0a182b;
  --accent-orange: #ff6b00;
  --accent-orange-hover: #e05e00;
  --accent-yellow: #f4c20d;
  --accent-yellow-light: #ffe87f;
  --accent-yellow-dark: #b88700;

  --navbar-background: #ffffff;
  --page-background: #f7f7f8;

  --text-color: #1a1a1a;
  --muted-text-color: #555555;
  --light-muted: #777777;

  --button-background: #171717;
  --button-text-color: #ffffff;

  --top-border-color: #f0d77a;
  --dropdown-border-color: #eeeeee;

  --container-width: 1200px;
  --navbar-height: 72px;
  --transition-speed: 220ms;
}

/* ==========================================================================
   Global Top Scroll Progress Bar
   ========================================================================== */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--sky), var(--navy), var(--blue-deep));
  background-size: 200% 100%;
  animation: progressGlow 3s ease infinite alternate;
  z-index: 999999;
  width: 0%;
  transition: width 0.08s ease-out;
  box-shadow: 0 0 10px rgba(var(--sky-rgb), 0.6);
  pointer-events: none;
}

@keyframes progressGlow {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

/* ==========================================================================
   Global Visual Enhancement Utilities (Gradients, Glows & Micro-Interactions)
   ========================================================================== */
.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--blue-deep) 60%, var(--navy) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

[data-theme="dark"] .gradient-text {
  background: linear-gradient(135deg, var(--blue-soft) 0%, var(--sky) 60%, #93c5fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.card-elevated {
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.card-elevated:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: var(--shadow-card-hover, 0 20px 40px -10px rgba(11, 25, 49, 0.12));
}

.pulse-glow {
  position: relative;
}

.pulse-glow::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  border: 2px solid rgba(var(--primary-rgb), 0.5);
  animation: pulseGlowRing 2.5s infinite ease-out;
  pointer-events: none;
  opacity: 0;
}

@keyframes pulseGlowRing {
  0% {
    transform: scale(0.96);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.06);
    opacity: 0.3;
  }
  100% {
    transform: scale(1.14);
    opacity: 0;
  }
}

/* =========================
   Fixed/Sticky Header
========================= */
html, body {
  overflow-x: clip;
}

.site-header {
  position: sticky !important;
  top: 0 !important;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000 !important;
  background: var(--bg-header, var(--navbar-background, var(--white)));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(15, 34, 58, 0.12) !important;
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
}

[data-theme="dark"] .site-header {
  background: rgba(11, 15, 25, 0.95);
  border-bottom-color: var(--slate-800);
}

[data-theme="dark"] .site-header.is-scrolled {
  background: rgba(11, 15, 25, 0.96) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
}

/* ==========================================================================
   Scroll Reveal Animations & Micro-Interactions (Smooth Side Slide - 0.7s)
   ========================================================================== */
.reveal-on-scroll {
  opacity: 0;
  transform: translate3d(0, 35px, 0);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-from-right {
  opacity: 0;
  transform: translate3d(80px, 0, 0) scale(0.97);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-from-left {
  opacity: 0;
  transform: translate3d(-80px, 0, 0) scale(0.97);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-zoom-in {
  opacity: 0;
  transform: scale(0.92) translate3d(0, 20px, 0);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-on-scroll.reveal-active,
.reveal-from-right.reveal-active,
.reveal-from-left.reveal-active,
.reveal-zoom-in.reveal-active {
  opacity: 1 !important;
  transform: translate3d(0, 0, 0) scale(1);
}

@media (max-width: 768px) {
  .reveal-from-right {
    transform: translate3d(35px, 0, 0) scale(0.98);
  }
  .reveal-from-left {
    transform: translate3d(-35px, 0, 0) scale(0.98);
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll,
  .reveal-from-right,
  .reveal-from-left,
  .reveal-zoom-in {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* =========================
   Reviews Section
========================= */
.reviews-section {
  padding: 80px 0;
  background-color: var(--bg);
  background-image: radial-gradient(circle at 50% 0%, rgba(var(--primary-rgb), 0.04) 0%, transparent 60%), linear-gradient(180deg, var(--bg) 0%, #edf4ff 100%);
  direction: rtl;
}

.reviews-container {
  width: min(calc(100% - 40px), var(--container-width, 1200px));
  margin-inline: auto;
}

.reviews-header {
  text-align: center;
  margin-bottom: 48px;
}

.reviews-heading {
  font-size: 34px;
  font-weight: 900;
  color: var(--gray-850);
  margin: 0 0 16px 0;
  line-height: 1.3;
}

p.trust-row {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  font-size: 15px;
  color: #475569;
  margin: 0 auto;
  flex-wrap: wrap;
}

.trust-score {
  color: var(--green);
  font-weight: 900;
  background: rgba(16, 185, 129, 0.1);
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 14px;
}

.trust-count {
  line-height: 1.5;
}

.reviews-content {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  align-items: center;
}

.reviews-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.quote-icon {
  color: var(--primary-color, var(--primary));
  opacity: 0.85;
  margin-bottom: 16px;
}

.reviews-intro h2 {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.35;
  color: var(--gray-850);
  margin: 0 0 20px 0;
}

.slider-controls {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.slider-progress {
  flex: 1;
  height: 5px;
  background: var(--slate-300);
  border-radius: 3px;
  overflow: hidden;
  max-width: 120px;
}

#reviewProgress {
  display: block;
  height: 100%;
  width: 20%;
  background: var(--primary-color, var(--primary));
  border-radius: 3px;
  transition: width 0.25s ease-out;
}

/* Section Motion Effects */
.js-enabled .section-motion {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.js-enabled .section-motion.is-section-visible {
  opacity: 1;
  transform: translateY(0);
}

.reduced-motion .section-motion {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--slate-300);
  background: var(--white);
  color: var(--slate-600);
  font-size: 18px;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.slider-btn:hover:not(:disabled) {
  background: var(--primary-color, var(--primary));
  color: var(--white);
  border-color: var(--primary-color, var(--primary));
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.2);
}

.slider-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  box-shadow: none;
}

.reviews-viewport {
  overflow: hidden;
  padding: 10px 4px;
}

.reviews-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 4px 20px 4px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.reviews-track::-webkit-scrollbar {
  display: none;
}

.review-card-wrapper {
  flex: 0 0 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  scroll-snap-align: start;
}

.review-item {
  flex: 1;
  background: var(--white);
  border-radius: 20px;
  padding: 26px;
  border: 1px solid var(--border-soft);
  box-shadow: 0 4px 20px -2px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--slate-600);
  margin-bottom: 16px;
  flex-grow: 1;
}

.stars {
  color: #f59e0b;
  font-size: 16px;
  letter-spacing: 2px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-inline: 4px;
}

.review-author img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.author-name {
  font-weight: 800;
  font-size: 15px;
  color: var(--gray-850);
  margin: 0;
}

.author-date {
  font-size: 12px;
  color: var(--slate-500);
  margin-top: 2px;
}

@media (max-width: 992px) {
  .reviews-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .reviews-intro {
    align-items: center;
    text-align: center;
  }

  .slider-controls {
    justify-content: center;
  }

  .review-card-wrapper {
    flex: 0 0 280px;
  }
}

/* ===== FAQ Section ===== */
.faq-section {
  padding: 100px 0;
  background-color: #e5edf8;
  background-image: radial-gradient(circle at 50% 0%, rgba(15, 34, 58, 0.04) 0%, transparent 60%), linear-gradient(180deg, #e5edf8 0%, var(--bg) 100%);
  direction: rtl;
}

[data-theme="dark"] .faq-section {
  background-color: var(--ink-900);
  background-image: linear-gradient(180deg, #0d1627 0%, var(--ink-900) 100%);
}

.faq-section__inner {
  width: min(calc(100% - 48px), 1180px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 56px;
  align-items: center;
}

.faq-intro {
  text-align: right;
  padding-top: 0;
}

.faq-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-blue-light, #e0f2fe);
  color: var(--primary-color, var(--primary));
  font-size: 14px;
  font-weight: 700;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
  box-shadow: 0 2px 10px rgba(var(--primary-rgb), 0.08);
}

.faq-badge svg {
  color: var(--primary-color, var(--primary));
}

.faq-intro h2 {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.5px;
  color: var(--text-color, var(--gray-900));
  margin: 0 0 20px 0;
  font-family: var(--font-primary, 'Cairo', sans-serif);
}

.faq-intro h2 .brand-accent-text,
.faq-intro h2 .purple-text {
  color: var(--primary-color, var(--primary));
  display: inline-block;
}

.faq-description {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--muted-text-color, var(--gray-neutral));
  max-width: 440px;
  margin: 0;
}

/* Site-Wide Unified FAQ Accordion Styling (Matching Brands Page) */
.faq-list,
.faq-accordion-wrap {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--card-bg, var(--white));
  border-radius: 18px;
  border: 1px solid rgba(15, 34, 58, 0.09);
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.faq-item:hover {
  border-color: rgba(var(--primary-rgb), 0.25);
  box-shadow: 0 6px 20px rgba(var(--primary-rgb), 0.06);
}

.faq-item.is-open,
.faq-item.active {
  background: var(--card-bg, var(--white));
  border-color: rgba(var(--primary-rgb), 0.35);
  box-shadow: 0 8px 28px rgba(var(--primary-rgb), 0.09);
}

.faq-header,
.faq-item__trigger {
  width: 100%;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--text-color, var(--near-black));
  text-align: right;
  cursor: pointer;
  outline: none;
  transition: color 0.2s ease;
}

.faq-item__trigger span:first-child,
.faq-header span:first-child {
  flex: 1;
}

.faq-icon-chevron,
.faq-item__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(var(--primary-rgb), 0.08);
  color: var(--primary-color, var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background 0.25s ease, color 0.25s ease;
  flex-shrink: 0;
}

.faq-item:hover .faq-icon-chevron,
.faq-item:hover .faq-item__icon {
  background: rgba(var(--primary-rgb), 0.14);
}

.faq-item.is-open .faq-icon-chevron,
.faq-item.active .faq-icon-chevron,
.faq-item.is-open .faq-item__icon,
.faq-item.active .faq-item__icon {
  transform: rotate(180deg);
  background: var(--primary-color, var(--primary));
  color: var(--white);
}

.faq-body,
.faq-item__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), padding 0.35s ease;
  padding: 0 26px;
}

.faq-item.is-open .faq-body,
.faq-item.active .faq-body,
.faq-item.is-open .faq-item__panel,
.faq-item.active .faq-item__panel {
  display: block;
  max-height: 500px;
  padding: 0 26px 22px;
}

.faq-body p,
.faq-item__content {
  font-size: 0.96rem;
  color: var(--muted-text-color, #475569);
  line-height: 1.75;
  margin: 0;
}

@media (max-width: 992px) {
  .faq-section__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

/* ==========================================================================
   Why Choose Us (New Modern Design)
   ========================================================================== */
.why-us-features {
  padding: 90px 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--white) 100%);
  direction: rtl;
  position: relative;
}

.why-us-container {
  width: min(calc(100% - 40px), var(--container-width, 1200px));
  margin-inline: auto;
}

.why-us-header {
  text-align: center;
  margin-bottom: 54px;
}

.why-us-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(var(--primary-rgb), 0.1);
  color: var(--primary-color, var(--primary));
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 14px;
}

.why-us-title {
  font-size: 38px;
  font-weight: 900;
  color: var(--gray-850);
  margin: 0 0 14px 0;
  line-height: 1.25;
}

.why-us-subtitle {
  font-size: 16px;
  color: var(--slate-500);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Grid Cards */
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.why-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: 24px;
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.why-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-color, var(--primary));
  box-shadow: 0 20px 40px rgba(var(--primary-rgb), 0.12);
}

.why-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.why-icon-box {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 24px;
  color: var(--white);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.blue-gradient { background: linear-gradient(135deg, var(--primary) 0%, var(--cyan) 100%); }
.yellow-gradient { background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%); }
.green-gradient { background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%); }
.purple-gradient { background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%); }

.why-num {
  font-size: 16px;
  font-weight: 900;
  color: var(--slate-400);
  letter-spacing: 1px;
}

.why-card-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--gray-850);
  margin: 0 0 10px 0;
  line-height: 1.3;
}

.why-card-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--slate-500);
  margin: 0;
}

/* Callout Banner */
.why-us-banner {
  background: linear-gradient(135deg, var(--gray-850) 0%, var(--slate-800) 100%);
  border-radius: 24px;
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.2);
  gap: 24px;
}

.banner-content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.banner-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--hero-btn-bg, #f4c20d);
  color: var(--gray-850);
  display: grid;
  place-items: center;
  font-size: 24px;
  flex-shrink: 0;
}

.banner-content h3 {
  font-size: 20px;
  font-weight: 900;
  margin: 0 0 4px 0;
  color: var(--white);
}

.banner-content p {
  font-size: 14px;
  color: var(--slate-400);
  margin: 0;
}

.banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  border-radius: 999px;
  background: var(--primary-color, var(--primary));
  color: var(--white);
  font-weight: 800;
  font-size: 15px;
  transition: all 0.25s ease;
  white-space: nowrap;
  box-shadow: 0 6px 18px rgba(var(--primary-rgb), 0.35);
}

.banner-btn:hover {
  background: var(--primary-hover, var(--blue-800));
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(var(--primary-rgb), 0.45);
}

@media (max-width: 1024px) {
  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-us-banner {
    flex-direction: column;
    text-align: center;
  }
  .banner-content {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .why-us-grid {
    grid-template-columns: 1fr;
  }
  .why-us-title {
    font-size: 28px;
  }
}

/* ==========================================================================
   Reviews & FAQ Dark Mode Styles
   ========================================================================== */
[data-theme="dark"] .reviews-section {
  background: var(--ink-900);
}

[data-theme="dark"] .reviews-heading,
[data-theme="dark"] .reviews-intro h2,
[data-theme="dark"] .author-name,
[data-theme="dark"] .trust-score,
[data-theme="dark"] .trustpilot-text {
  color: var(--bg);
}

[data-theme="dark"] .trust-count,
[data-theme="dark"] .author-date {
  color: var(--slate-400);
}

[data-theme="dark"] .quote-icon {
  color: var(--slate-600);
}

[data-theme="dark"] .slider-btn {
  color: var(--slate-400);
}

[data-theme="dark"] .slider-btn:hover {
  color: var(--bg);
}

[data-theme="dark"] .slider-progress {
  background: var(--slate-600);
}

[data-theme="dark"] #reviewProgress {
  background: var(--sky);
}

[data-theme="dark"] .review-item {
  background: #1f2937;
  border-color: #374151;
}

[data-theme="dark"] .review-item::before {
  border-top-color: #374151;
}

[data-theme="dark"] .review-item::after {
  border-top-color: #1f2937;
}

[data-theme="dark"] .review-text {
  color: var(--slate-300);
}

[data-theme="dark"] .faq-section {
  background: var(--ink-900);
}

[data-theme="dark"] .faq-badge {
  background: rgba(var(--primary-rgb), 0.2);
  color: var(--sky);
}

[data-theme="dark"] .faq-badge svg {
  color: var(--sky);
}

[data-theme="dark"] .faq-intro h2,
[data-theme="dark"] .faq-item__trigger {
  color: var(--bg);
}

[data-theme="dark"] .faq-intro h2 .brand-accent-text,
[data-theme="dark"] .faq-intro h2 .purple-text {
  color: var(--sky);
}

[data-theme="dark"] .faq-description {
  color: var(--slate-400);
}

[data-theme="dark"] .faq-item {
  background: var(--gray-900);
  border-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .faq-item.is-open,
[data-theme="dark"] .faq-item.active {
  background: var(--gray-900);
  border-color: rgba(var(--sky-rgb), 0.35);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .faq-header,
[data-theme="dark"] .faq-item__trigger {
  color: var(--bg);
}

[data-theme="dark"] .faq-icon-chevron,
[data-theme="dark"] .faq-item__icon {
  background: rgba(var(--sky-rgb), 0.12);
  color: var(--sky);
}

[data-theme="dark"] .faq-item.is-open .faq-icon-chevron,
[data-theme="dark"] .faq-item.active .faq-icon-chevron,
[data-theme="dark"] .faq-item.is-open .faq-item__icon,
[data-theme="dark"] .faq-item.active .faq-item__icon {
  background: var(--sky);
  color: var(--ink-950);
}

[data-theme="dark"] .faq-body p,
[data-theme="dark"] .faq-item__content {
  color: var(--slate-400);
}

/* ==========================================================================
   Infographic Section Modern Styling
   ========================================================================== */
.infographic-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--white) 100%);
  direction: rtl;
}

.infographic-main-title {
  font-size: 38px;
  font-weight: 900;
  text-align: center;
  color: var(--text-color, var(--gray-900));
  margin-bottom: 50px;
  letter-spacing: -0.5px;
}

.infographic-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 36px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.info-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-card-text {
  background: var(--white);
  border: 1.5px solid var(--border-soft);
  border-radius: 18px;
  padding: 22px 24px;
  text-align: right;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.03);
  cursor: pointer;
  position: relative;
}

.info-card-text:hover,
.info-card-text.active-card,
.info-card-text.active {
  background: var(--white);
  border-color: var(--primary-color, var(--primary));
  box-shadow: 0 12px 30px rgba(var(--primary-rgb), 0.12);
  transform: translateY(-3px);
}

.info-card-text h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-color, var(--gray-900));
  margin: 0 0 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.25s ease;
}

.info-card-text:hover h3,
.info-card-text.active-card h3 {
  color: var(--primary-color, var(--primary));
}

.info-card-text p {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--muted-text-color, var(--slate-500));
  margin: 0;
}

/* Pie Chart Diagram */
.info-center-diagram {
  display: flex;
  justify-content: center;
  align-items: center;
}

.pie-chart-wrapper {
  position: relative;
  width: 380px;
  height: 380px;
}

.pie-chart-svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 18px 40px rgba(var(--primary-rgb), 0.12));
}

.pie-slice {
  fill: var(--white);
  stroke: var(--slate-300);
  stroke-width: 2;
  transition: all 0.35s ease;
  cursor: pointer;
}

.pie-slice.active-slice {
  fill: url(#pieActiveGrad) !important;
  stroke: var(--cyan);
  filter: drop-shadow(0 8px 20px rgba(var(--primary-rgb), 0.35));
}

.pie-slice:hover {
  filter: brightness(0.96);
}

.pie-spoke {
  stroke: var(--bg);
  stroke-width: 6;
}

.pie-center-circle {
  fill: var(--gray-850);
}

.pie-center-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--cyan) 100%);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 6px 20px rgba(var(--primary-rgb), 0.4);
  pointer-events: none;
  z-index: 5;
}

.slice-icon {
  position: absolute;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #475569;
  cursor: pointer;
  pointer-events: auto;
  transition: all 0.3s ease;
  border-radius: 50%;
  z-index: 10;
  background: var(--white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.slice-icon:hover,
.slice-icon.active-icon {
  background: linear-gradient(135deg, var(--primary) 0%, var(--cyan) 100%);
  color: var(--white) !important;
  transform: scale(1.15);
  box-shadow: 0 6px 18px rgba(var(--primary-rgb), 0.38);
}

.slice-icon.active-icon i {
  color: var(--white) !important;
}

/* Dark Mode Support */
[data-theme="dark"] .infographic-section {
  background: var(--ink-900);
}

[data-theme="dark"] .infographic-main-title {
  color: var(--bg);
}

[data-theme="dark"] .info-card-text {
  background: #1f2937;
  border-color: #374151;
}

[data-theme="dark"] .info-card-text:hover,
[data-theme="dark"] .info-card-text.active-card,
[data-theme="dark"] .info-card-text.active {
  background: var(--slate-800);
  border-color: var(--sky);
  box-shadow: 0 12px 30px rgba(var(--sky-rgb), 0.15);
}

[data-theme="dark"] .info-card-text h3 {
  color: var(--bg);
}

[data-theme="dark"] .info-card-text:hover h3,
[data-theme="dark"] .info-card-text.active-card h3 {
  color: var(--sky);
}

[data-theme="dark"] .info-card-text p {
  color: var(--slate-400);
}

[data-theme="dark"] .pie-slice {
  fill: #1f2937;
  stroke: #374151;
}

[data-theme="dark"] .pie-spoke {
  stroke: var(--ink-900);
}

[data-theme="dark"] .slice-icon {
  background: #1f2937;
  color: var(--slate-400);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* ==========================================================================
   About Identity Section (Section 2 - After Hero)
   ========================================================================== */
.about-identity-section {
  padding: 90px 0 100px;
  background-color: var(--bg);
  background-image: radial-gradient(circle at 50% 0%, rgba(var(--primary-rgb), 0.04) 0%, transparent 70%);
  position: relative;
  direction: rtl;
}

.about-identity-section .reveal-on-scroll,
.about-identity-section .reveal-zoom-in,
.about-identity-section .reveal-from-right,
.about-identity-section .reveal-from-left {
  opacity: 1 !important;
  transform: none !important;
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-theme="dark"] .about-identity-section {
  background-color: var(--ink-950);
  background-image: radial-gradient(circle at 50% 0%, rgba(var(--sky-rgb), 0.05) 0%, transparent 70%);
}

.about-identity-container {
  width: min(calc(100% - 48px), 1160px);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Header */
.about-identity-header {
  text-align: center;
  max-width: 820px;
  margin-bottom: 45px;
}

.about-identity-badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--primary-color, var(--primary));
  text-transform: uppercase;
  margin-bottom: 14px;
  background: rgba(var(--primary-rgb), 0.08);
  padding: 6px 20px;
  border-radius: 50px;
}

[data-theme="dark"] .about-identity-badge {
  color: var(--sky);
  background: rgba(var(--sky-rgb), 0.12);
}

.about-identity-title {
  font-size: 38px;
  font-weight: 900;
  line-height: 1.3;
  color: var(--text-color, var(--near-black));
  margin: 0 0 18px;
  font-family: var(--font-primary, 'Cairo', sans-serif);
}

[data-theme="dark"] .about-identity-title {
  color: var(--white);
}

.about-identity-subtitle {
  font-size: 17px;
  line-height: 1.8;
  color: var(--muted-text-color, var(--gray-neutral));
  margin: 0;
}

[data-theme="dark"] .about-identity-subtitle {
  color: var(--gray-400);
}

/* Floating Navy/Blue Bar */
.about-floating-bar {
  width: 100%;
  max-width: 880px;
  background: linear-gradient(135deg, var(--navy) 0%, #163866 50%, var(--primary) 100%);
  border-radius: 28px;
  padding: 32px 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  box-shadow: 0 20px 50px rgba(var(--primary-rgb), 0.25);
  position: relative;
  z-index: 5;
  margin-bottom: -40px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
}

.floating-pillar {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.pillar-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.floating-pillar:hover .pillar-icon {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-4px);
  border-color: var(--white);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.pillar-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.2px;
}

/* Lower White Card */
.about-white-card {
  width: 100%;
  background: var(--white);
  border-radius: 40px;
  padding: 90px 48px 48px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.04);
  position: relative;
  z-index: 2;
}

[data-theme="dark"] .about-white-card {
  background: var(--gray-900);
  border-color: #1f293d;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

/* Questions Grid */
.about-questions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 44px 48px;
  position: relative;
}

.about-questions-grid::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.08) 20%, rgba(0, 0, 0, 0.08) 80%, transparent 100%);
  transform: translateX(-50%);
}

[data-theme="dark"] .about-questions-grid::before {
  background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.08) 20%, rgba(255, 255, 255, 0.08) 80%, transparent 100%);
}

.question-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 8px;
  transition: transform 0.3s ease;
}

.question-header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.question-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(var(--primary-rgb), 0.08);
  color: var(--primary-color, var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

[data-theme="dark"] .question-icon {
  background: rgba(var(--sky-rgb), 0.12);
  color: var(--sky);
}

.question-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-color, var(--near-black));
  margin: 0;
  font-family: var(--font-primary, 'Cairo', sans-serif);
}

[data-theme="dark"] .question-title {
  color: var(--white);
}

.question-desc {
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--muted-text-color, var(--gray-neutral));
  margin: 0;
}

[data-theme="dark"] .question-desc {
  color: var(--gray-400);
}

/* CTA Action */
.about-card-action {
  margin-top: 48px;
  display: flex;
  justify-content: center;
  padding-top: 24px;
  border-top: 1px dashed rgba(0, 0, 0, 0.08);
}

[data-theme="dark"] .about-card-action {
  border-top-color: rgba(255, 255, 255, 0.08);
}

.btn-about-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--primary) 100%);
  color: var(--white) !important;
  font-size: 16.5px;
  font-weight: 700;
  padding: 14px 38px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(var(--primary-rgb), 0.28);
  transition: all 0.3s ease;
}

.btn-about-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(var(--primary-rgb), 0.38);
  background: linear-gradient(135deg, var(--primary) 0%, var(--blue-800) 100%);
}

.btn-about-cta i {
  transition: transform 0.3s ease;
}

.btn-about-cta:hover i {
  transform: translateX(-5px);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .about-identity-title {
    font-size: 32px;
  }
  .about-floating-bar {
    grid-template-columns: repeat(2, 1fr);
    padding: 24px 28px;
    gap: 20px;
    margin-bottom: -30px;
  }
  .about-white-card {
    padding: 70px 28px 36px;
  }
  .about-questions-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .about-questions-grid::before {
    display: none;
  }
}

@media (max-width: 576px) {
  .about-identity-title {
    font-size: 26px;
  }
  .about-identity-subtitle {
    font-size: 15px;
  }
  .about-floating-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 20px 16px;
    border-radius: 20px;
  }
  .pillar-icon {
    width: 46px;
    height: 46px;
    font-size: 18px;
  }
  .pillar-title {
    font-size: 14px;
  }
  .about-white-card {
    border-radius: 28px;
    padding: 60px 20px 28px;
  }
  .question-title {
    font-size: 18px;
  }
  .question-desc {
    font-size: 14.5px;
  }
}

/* ==========================================================================
   Vision & Mission Split Section (Section 3 - Exact Screenshot Replica)
   ========================================================================== */
.about-vision-split-section {
  padding: 90px 0 100px;
  background-color: var(--bg);
  direction: rtl;
  overflow: hidden;
}

[data-theme="dark"] .about-vision-split-section {
  background-color: var(--ink-900);
}

.vision-split-container {
  width: min(calc(100% - 48px), 1200px);
  margin-inline: auto;
  position: relative;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 0 25px 65px rgba(15, 34, 58, 0.12);
  border: 1px solid var(--border-soft);
}

[data-theme="dark"] .vision-split-container {
  border-color: #1f293d;
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.4);
}

.vision-split-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  position: relative;
}

/* Dark Side (Right Panel in RTL) */
.vision-dark-side {
  background-color: var(--accent-navy, var(--navy));
  background-image: radial-gradient(circle at 20% 20%, rgba(var(--primary-rgb), 0.25) 0%, transparent 70%);
  padding: 70px 60px 70px 140px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}

[data-theme="dark"] .vision-dark-side {
  background-color: #08101d;
}

.vision-dark-content {
  max-width: 420px;
  color: var(--white);
}

.vision-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--sky);
  font-size: 13px;
  font-weight: 800;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
  backdrop-filter: blur(8px);
}

.vision-split-title {
  font-size: 42px;
  font-weight: 900;
  line-height: 1.25;
  margin: 0 0 24px;
  color: var(--white);
  font-family: var(--font-primary, 'Cairo', sans-serif);
}

.vision-split-title .text-highlight {
  color: var(--sky);
  display: inline-block;
  margin-right: 6px;
}

.vision-split-desc {
  font-size: 16px;
  line-height: 1.85;
  color: var(--slate-300);
  margin: 0 0 16px;
  font-weight: 500;
}

.vision-split-subdesc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--slate-400);
  margin: 0;
}

/* Center Overlapping Emblem (Target & Dart Graphic) */
.vision-center-emblem {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 15;
  pointer-events: none;
}

.target-ring-outer {
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(var(--sky-rgb), 0.25);
  padding: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.target-ring-middle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--white);
  padding: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

[data-theme="dark"] .target-ring-middle {
  background: var(--slate-800);
}

.target-ring-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.target-bullseye-svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Light Side (Left Panel in RTL) */
.vision-light-side {
  background-color: var(--bg-subtle);
  padding: 60px 100px 60px 50px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}

[data-theme="dark"] .vision-light-side {
  background-color: var(--gray-850);
}

.vision-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 480px;
}

/* Stack Cards */
.vision-stack-card {
  background: var(--white);
  border-radius: 20px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
  border: 1px solid var(--border-soft);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

[data-theme="dark"] .vision-stack-card {
  background: var(--gray-900);
  border-color: #1f293d;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.vision-stack-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 35px rgba(var(--primary-rgb), 0.12);
  border-color: rgba(var(--primary-rgb), 0.3);
}

.stack-card-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: rgba(var(--primary-rgb), 0.08);
  color: var(--primary-color, var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

[data-theme="dark"] .stack-card-icon {
  background: rgba(var(--sky-rgb), 0.12);
  color: var(--sky);
}

.stack-card-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.stack-card-title {
  font-size: 19px;
  font-weight: 800;
  color: var(--text-color, var(--gray-850));
  margin: 0;
  font-family: var(--font-primary, 'Cairo', sans-serif);
}

[data-theme="dark"] .stack-card-title {
  color: var(--white);
}

.stack-card-desc {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--muted-text-color, var(--slate-500));
  margin: 0;
  font-weight: 500;
}

[data-theme="dark"] .stack-card-desc {
  color: var(--slate-400);
}

/* Featured Primary Card (Middle Card - Extended to center seam!) */
.vision-stack-card.featured-primary-card {
  background: linear-gradient(135deg, var(--primary) 0%, var(--blue-800) 100%);
  border-color: var(--primary);
  box-shadow: 0 14px 35px rgba(var(--primary-rgb), 0.35);
  margin-right: -45px;
  width: calc(100% + 45px);
  position: relative;
  z-index: 5;
}

[data-theme="dark"] .vision-stack-card.featured-primary-card {
  background: linear-gradient(135deg, var(--primary) 0%, var(--navy) 100%);
  border-color: var(--sky);
}

.vision-stack-card.featured-primary-card .stack-card-icon {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.vision-stack-card.featured-primary-card .stack-card-title {
  color: var(--white);
}

.vision-stack-card.featured-primary-card .stack-card-desc {
  color: #e0f2fe;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .vision-split-wrapper {
    grid-template-columns: 1fr;
  }
  .vision-dark-side {
    padding: 60px 40px;
    justify-content: center;
    text-align: center;
  }
  .vision-dark-content {
    max-width: 100%;
  }
  .vision-light-side {
    padding: 60px 40px;
    justify-content: center;
  }
  .vision-cards-stack {
    max-width: 100%;
  }
  .vision-stack-card.featured-primary-card {
    margin-right: 0;
    width: 100%;
  }
  .vision-center-emblem {
    display: none;
  }
}

@media (max-width: 576px) {
  .vision-split-title {
    font-size: 32px;
  }
  .vision-stack-card {
    padding: 20px 18px;
    gap: 14px;
  }
  .stack-card-icon {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }
  .stack-card-title {
    font-size: 17px;
  }
}

/* ==========================================================================
   GLOBAL CTA BANNER CARD SECTION (Full Width Edge to Edge)
   ========================================================================== */
.brands-cta-section,
.global-cta-section {
  width: 100%;
  padding: 70px 0;
  position: relative;
  background: linear-gradient(135deg, #4f46e5 0%, #4338ca 100%);
  color: var(--white);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(79, 70, 229, 0.15);
}

.brands-cta-section::before,
.global-cta-section::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -10%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.brands-cta-section::after,
.global-cta-section::after {
  content: '';
  position: absolute;
  bottom: -40%;
  right: -10%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.brands-cta-container,
.global-cta-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta-card-box {
  background: transparent;
  border-radius: 0;
  padding: 0;
  text-align: center;
  color: var(--white);
  box-shadow: none;
  position: relative;
  overflow: visible;
}

.cta-card-title {
  font-size: clamp(1.6rem, 3.2vw, 2.3rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.35;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: -0.3px;
}

.cta-features-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  position: relative;
  z-index: 2;
}

.cta-feature-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
}

.cta-check-badge {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--white);
  color: #4f46e5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.cta-actions-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.btn-cta-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 38px;
  border-radius: 50px;
  background: var(--white);
  color: #4f46e5;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid var(--white);
}

.btn-cta-white:hover {
  background: var(--white);
  color: #3730a3;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.btn-cta-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 34px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  font-size: 15.5px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(4px);
}

.btn-cta-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .brands-cta-section,
  .global-cta-section {
    padding: 50px 0;
  }
  .cta-features-row {
    flex-direction: column;
    gap: 14px;
    align-items: center;
  }
  .cta-actions-row {
    flex-direction: column;
    width: 100%;
  }
  .btn-cta-white,
  .btn-cta-ghost {
    width: 100%;
    max-width: 320px;
  }
}

/* ==========================================================================
   DYNAMIC MOTION & MODERN ATMOSPHERE SYSTEM (ANIMATIONS, REVEALS, ORBS, SPOTLIGHT)
   ========================================================================== */

/* 1. Ambient Background Orbs (الكرات الضوئية الخلفية المتحركة) */
.ambient-orb-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.45;
  animation: orbFloat 18s ease-in-out infinite alternate;
  will-change: transform;
}

.ambient-orb-1 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(var(--primary-rgb), 0.5) 0%, rgba(2, 132, 199, 0) 70%);
  top: -100px;
  right: -80px;
  animation-duration: 22s;
}

.ambient-orb-2 {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.4) 0%, rgba(59, 130, 246, 0) 70%);
  bottom: -60px;
  left: -80px;
  animation-duration: 16s;
  animation-delay: -5s;
}

.ambient-orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.35) 0%, rgba(245, 158, 11, 0) 70%);
  top: 40%;
  left: 45%;
  animation-duration: 26s;
  animation-delay: -10s;
}

@keyframes orbFloat {
  0% {
    transform: translate(0, 0) scale(1) rotate(0deg);
  }
  33% {
    transform: translate(40px, -50px) scale(1.12) rotate(120deg);
  }
  66% {
    transform: translate(-30px, 30px) scale(0.9) rotate(240deg);
  }
  100% {
    transform: translate(25px, -20px) scale(1.05) rotate(360deg);
  }
}

[data-theme="dark"] .ambient-orb {
  opacity: 0.65;
  filter: blur(100px);
}

/* 2. Scroll Reveal Animations (التكشف الانسيابي عند التصفح) */
.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal.reveal-left {
  transform: translateX(-40px);
}

.reveal.reveal-right {
  transform: translateX(40px);
}

.reveal.reveal-zoom {
  transform: scale(0.92) translateY(20px);
}

.reveal.active,
.reveal.revealed {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

/* Stagger delay helpers */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* 3. Spotlight & 3D Tilt Card Glow (بطاقات الإضاءة وتتبع المؤشر) */
.spotlight-card,
.tilt-card {
  position: relative;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
  transform-style: preserve-3d;
  will-change: transform;
}

.spotlight-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: inherit;
  background: radial-gradient(
    600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(56, 189, 248, 0.15),
    transparent 40%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 2;
}

.spotlight-card:hover::before {
  opacity: 1;
}

/* Glassmorphism card glow */
.glass-card-glow {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 10px 30px -10px rgba(var(--primary-rgb), 0.08);
}

[data-theme="dark"] .glass-card-glow {
  background: rgba(15, 23, 42, 0.75);
  border-color: rgba(var(--sky-rgb), 0.18);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

.glass-card-glow:hover {
  border-color: rgba(var(--primary-rgb), 0.4);
  box-shadow: 0 15px 35px -5px rgba(var(--primary-rgb), 0.18);
  transform: translateY(-5px);
}

[data-theme="dark"] .glass-card-glow:hover {
  border-color: rgba(var(--sky-rgb), 0.5);
  box-shadow: 0 15px 35px -5px rgba(var(--sky-rgb), 0.25);
}

/* 4. Shining CTAs (وميض الأزرار المضيئة) */
.btn-shine {
  position: relative;
  overflow: hidden;
}

.btn-shine::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    60deg,
    transparent 30%,
    rgba(255, 255, 255, 0.35) 50%,
    transparent 70%
  );
  transform: rotate(30deg) translateY(-100%);
  transition: transform 0.75s ease;
}

.btn-shine:hover::after {
  transform: rotate(30deg) translateY(100%);
}

/* 5. Smooth Floating Badges & Pulsing Status (الأوسمة الطافية والإنذار الحي) */
.float-element {
  animation: floatSmooth 4s ease-in-out infinite;
}

.float-element-slow {
  animation: floatSmooth 6s ease-in-out infinite;
}

@keyframes floatSmooth {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.pulse-badge-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  animation: pulseDotGreen 2s infinite;
  vertical-align: middle;
  margin-left: 6px;
}

@keyframes pulseDotGreen {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

/* ==========================================================================
   Floating Side Contact Buttons (Bottom-Left FABs)
   ========================================================================== */
.floating-contact-bar {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  pointer-events: none;
}

.floating-contact-btn {
  pointer-events: auto;
  display: flex;
  align-items: center;
  position: relative;
  text-decoration: none !important;
  color: #ffffff !important;
  direction: rtl;
}

.floating-contact-btn .fab-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #ffffff;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.3s ease,
              background 0.3s ease;
  flex-shrink: 0;
  position: relative;
}

/* Button Gradients & Branding Colors */
.floating-contact-btn.btn-hotline .fab-circle {
  background: linear-gradient(135deg, var(--primary, #0b63ce) 0%, var(--blue-800, #084ca4) 100%);
  box-shadow: 0 8px 22px rgba(var(--primary-rgb, 11, 99, 206), 0.38);
}

.floating-contact-btn.btn-mobile .fab-circle {
  background: linear-gradient(135deg, var(--primary, #0284c7) 0%, var(--blue-900, #0f223a) 100%);
  box-shadow: 0 8px 22px rgba(var(--primary-rgb, 2, 132, 199), 0.35);
}

.floating-contact-btn.btn-whatsapp .fab-circle {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.38);
}

/* Subtle Pulse Glow Animation on WhatsApp */
.floating-contact-btn.btn-whatsapp .fab-circle::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.4);
  z-index: -1;
  animation: fabPulse 2.5s infinite;
}

@keyframes fabPulse {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.25); opacity: 0; }
  100% { transform: scale(0.95); opacity: 0; }
}

/* Glassmorphism Tooltip Badge */
.floating-contact-btn .fab-tooltip {
  position: absolute;
  left: 64px;
  background: rgba(15, 34, 58, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #ffffff;
  padding: 8px 14px;
  border-radius: 10px;
  font-family: var(--font-primary, 'Cairo', sans-serif);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.floating-contact-btn .fab-tooltip::before {
  content: '';
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: transparent rgba(15, 34, 58, 0.92) transparent transparent;
}

/* Hover States */
.floating-contact-btn:hover .fab-circle {
  transform: scale(1.12);
}

.floating-contact-btn.btn-hotline:hover .fab-circle {
  box-shadow: 0 12px 30px rgba(var(--primary-rgb, 11, 99, 206), 0.55);
}

.floating-contact-btn.btn-mobile:hover .fab-circle {
  box-shadow: 0 12px 30px rgba(var(--primary-rgb, 2, 132, 199), 0.55);
}

.floating-contact-btn.btn-whatsapp:hover .fab-circle {
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.55);
}

.floating-contact-btn:hover .fab-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .floating-contact-bar {
    left: 16px;
    bottom: 16px;
    gap: 10px;
  }
  .floating-contact-btn .fab-circle {
    width: 46px;
    height: 46px;
    font-size: 19px;
  }
  .floating-contact-btn .fab-tooltip {
    left: 56px;
    font-size: 12px;
    padding: 6px 12px;
  }
}

















