@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700;800;900&family=Outfit:wght@300;400;500;600;700;900&display=swap");


/* ==========================================
   CSS Variables & Design Tokens (Light Theme)
   ========================================== */
:root {
  /* Colors */
  --bg-light: #f8fafc;
  --bg-card: rgba(255, 255, 255, 0.75);
  --border-glass: rgba(21, 57, 96, 0.06);
  --primary-brand: #153960; /* Navy Blue from Logo */
  --secondary-brand: #e87c24; /* Vibrant Orange from Logo */
  --text-primary: #153960; /* Deep Navy Blue */
  --text-muted: #52647c; /* Slate Muted Navy */

  /* Gradients */
  --gradient-brand: linear-gradient(
    135deg,
    var(--primary-brand) 0%,
    var(--secondary-brand) 100%
  );
  --gradient-brand-hover: linear-gradient(
    135deg,
    var(--secondary-brand) 0%,
    var(--primary-brand) 100%
  );
  --gradient-glow: radial-gradient(
    circle,
    rgba(232, 124, 36, 0.05) 0%,
    rgba(21, 57, 96, 0.05) 50%,
    transparent 100%
  );

  /* Typography */
  --font-ar: "Cairo", sans-serif;
  --font-en: "Outfit", sans-serif;

  /* Structure */
  --max-width: 1440px;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================
   Reset & Base Styles
   ========================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-light);
  color: var(--text-primary);
  font-family: var(--font-ar);
  direction: rtl;
  overflow-x: hidden;
  line-height: 1.6;
  position: relative;
}

body.menu-open {
  overflow: hidden !important;
}

/* Base link reset */
a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

/* ==========================================
   Background Art & Effects
   ========================================== */
/* Soft Tech Grid Overlay */
body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: 1;
  pointer-events: none;
}

/* Animated Aurora Glows (Soft Light Pastel) */
.aurora-bg {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1400px;
  height: 800px;
  background: var(--gradient-glow);
  filter: blur(120px);
  z-index: 0;
  pointer-events: none;
  animation: pulseGlow 10s ease-in-out infinite alternate;
}

.aurora-secondary {
  position: absolute;
  top: 300px;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(124, 58, 237, 0.05) 0%,
    transparent 80%
  );
  filter: blur(80px);
  z-index: 0;
  pointer-events: none;
  animation: driftGlow 15s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
  0% {
    opacity: 0.7;
    transform: translateX(-50%) scale(1);
  }
  100% {
    opacity: 1;
    transform: translateX(-50%) scale(1.15);
  }
}

@keyframes driftGlow {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(-50px, 30px) scale(1.2);
  }
}

/* ==========================================
   Header (Navbar) Design
   ========================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(248, 250, 252, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-glass);
  transition: var(--transition-smooth);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(21, 57, 96, 0.1);
  box-shadow: 0 10px 30px -15px rgba(21, 57, 96, 0.08);
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem 2rem; /* Reduced padding slightly for larger logo height */
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo Design */
.logo {
  display: flex;
  align-items: center;
  transition: var(--transition-smooth);
}

.logo-img {
  height: 48px; /* High-res readable height */
  width: auto;
  display: block;
  object-fit: contain;
}

.logo:hover {
  transform: scale(1.03);
}

/* Navigation Links */
.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  position: relative;
  padding: 0.5rem 0;
  font-weight: bold;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-brand);
  transition: var(--transition-smooth);
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--text-primary);
}

.nav-links a.active::after {
  width: 100%;
}

/* Header CTA */
.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.phone-badge {
  font-family: var(--font-en);
  background: rgba(15, 23, 42, 0.03);
  border: 1px solid var(--border-glass);
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-smooth);
}

.phone-badge svg {
  color: var(--primary-brand);
}

.phone-badge:hover {
  background: rgba(21, 57, 96, 0.04);
  border-color: rgba(21, 57, 96, 0.15);
  box-shadow: 0 5px 15px rgba(21, 57, 96, 0.05);
  transform: translateY(-2px);
}

/* ==========================================
   Hero Section Design
   ========================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
  padding: 3rem 2rem 2rem 2rem;
}

.hero-container {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 4.5fr 5.5fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Eyebrow Label */
.hero-eyebrow {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--primary-brand);
  background: rgba(21, 57, 96, 0.05);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  border: 1px solid rgba(21, 57, 96, 0.12);
  margin-bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: inset 0 0 10px rgba(21, 57, 96, 0.02);
}

.hero-eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  background-color: var(--primary-brand);
  border-radius: 50%;
  animation: pulseDot 1.5s infinite;
}

@keyframes pulseDot {
  0% {
    transform: scale(0.9);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.2);
    opacity: 1;
    box-shadow: 0 0 8px rgba(2, 132, 199, 0.3);
  }
  100% {
    transform: scale(0.9);
    opacity: 0.5;
  }
}

/* Title & Description */
.hero-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
  color: var(--text-primary);
}

.hero-title span.gradient-text {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  display: inline-block;
}

.hero-desc {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  margin-bottom: 3rem;
  max-width: 100%;
}

/* Call to Actions (CTAs) */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.1rem 2.2rem;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: 12px;
  transition: var(--transition-smooth);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-brand) 0%, #0a1f36 100%);
  color: #fff;
  box-shadow:
    0 10px 25px -5px rgba(21, 57, 96, 0.25),
    0 0 15px rgba(21, 57, 96, 0.1);
  border: none;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0a1f36 0%, var(--primary-brand) 100%);
  opacity: 0;
  transition: var(--transition-smooth);
  z-index: 1;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow:
    0 15px 30px -5px rgba(21, 57, 96, 0.4),
    0 0 25px rgba(21, 57, 96, 0.15);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary > * {
  position: relative;
  z-index: 2;
}

.btn-secondary {
  background: rgba(15, 23, 42, 0.02);
  color: var(--text-primary);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(15, 23, 42, 0.05);
  border-color: rgba(15, 23, 42, 0.15);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px -10px rgba(15, 23, 42, 0.08);
}

/* Floating Badges & Creative Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 450px;
}

/* Glowing central orb simulating photography/advertising lens */
.visual-orb {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(232, 124, 36, 0.08) 0%,
    rgba(21, 57, 96, 0.03) 60%,
    transparent 100%
  );
  border: 1px solid rgba(21, 57, 96, 0.04);
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: floatOrb 6s ease-in-out infinite;
}

.visual-orb::before {
  content: "";
  position: absolute;
  width: 80%;
  height: 80%;
  border-radius: 50%;
  border: 1px dashed rgba(232, 124, 36, 0.15);
  animation: rotateDashed 20s linear infinite;
}

.visual-orb::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 60px;
  background: var(--gradient-brand);
  border-radius: 50%;
  filter: blur(15px);
  opacity: 0.5;
}

@keyframes floatOrb {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(5deg);
  }
  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

@keyframes rotateDashed {
  100% {
    transform: rotate(360deg);
  }
}

/* 3D Horizontal Coverflow Carousel Cards with Background Images */
.cards-carousel {
  position: relative;
  width: 100%;
  height: 480px;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1200px;
  transform-style: preserve-3d;
}

/* Navigation Buttons for Hero Carousel */
.carousel-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--border-glass);
  color: var(--primary-brand);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 20;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(21, 57, 96, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.carousel-nav-btn:hover {
  background: linear-gradient(135deg, var(--primary-brand) 0%, #0a1f36 100%);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 8px 20px rgba(21, 57, 96, 0.3);
  transform: translateY(-50%) scale(1.1);
}

.carousel-nav-btn.prev-btn {
  right: -40px;
}

.carousel-nav-btn.next-btn {
  left: -40px;
}

@media (max-width: 1200px) {
  .carousel-nav-btn.prev-btn {
    right: 10px;
  }
  .carousel-nav-btn.next-btn {
    left: 10px;
  }
}

.carousel-card {
  position: absolute;
  width: 380px;
  height: auto; /* Let the image natural height define the card height */
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 24px;
  overflow: hidden; /* Clips the background image zoom and overlay */
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.04);
  transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.5) translate3d(0, 0, -300px);
}

/* Background Image & Overlay Scrim */
.card-bg-img {
  position: relative; /* Relative flow to establish natural height */
  display: block;
  width: 100%;
  height: auto; /* Natural image height */
  object-fit: contain; /* Keep natural aspect ratio */
  z-index: 1;
  transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Dark gradient scrim starting from bottom and fading to transparent at the top */
  background: linear-gradient(
    to top,
    rgba(21, 57, 96, 0.9) 0%,
    rgba(21, 57, 96, 0.45) 55%,
    transparent 100%
  );
  z-index: 2;
  transition: var(--transition-smooth);
}

/* Horizontal 3D Coverflow States */
.carousel-card.active {
  opacity: 1;
  z-index: 10;
  pointer-events: auto;
  transform: scale(1.25) translate3d(0, 0, 100px); /* Zoom and Z-push */
  box-shadow:
    0 30px 60px -15px rgba(21, 57, 96, 0.25),
    0 0 40px rgba(232, 124, 36, 0.15);
  border-color: rgba(232, 124, 36, 0.4);
}

.carousel-card.active .card-bg-img {
  transform: scale(1.08); /* Soft background zoom for active state */
}

.carousel-card.active .card-overlay {
  /* Slight orange glow gradient at the top of the scrim for the active card */
  background: linear-gradient(
    to top,
    rgba(21, 57, 96, 0.95) 0%,
    rgba(232, 124, 36, 0.15) 75%,
    transparent 100%
  );
}

.carousel-card.prev {
  opacity: 0.75;
  z-index: 5;
  pointer-events: auto;
  transform: scale(0.95) translate3d(200px, 0, -100px) rotateY(25deg); /* Right position, Y rotation */
}

.carousel-card.next {
  opacity: 0.75;
  z-index: 5;
  pointer-events: auto;
  transform: scale(0.95) translate3d(-200px, 0, -100px) rotateY(-25deg); /* Left position, Y rotation */
}

.carousel-card.far-prev {
  opacity: 0.35;
  z-index: 2;
  transform: scale(0.78) translate3d(360px, 0, -250px) rotateY(45deg);
}

.carousel-card.far-next {
  opacity: 0.35;
  z-index: 2;
  transform: scale(0.78) translate3d(-360px, 0, -250px) rotateY(-45deg);
}

/* Card Content & Typography (White on scrim overlay for maximum readability) */
.fc-content {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 3;
  padding: 1.4rem 1.8rem;
  width: 100%;
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.fc-title {
  font-size: 1.25rem;
  font-weight: 850;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(21, 57, 96, 0.5);
}

.fc-sub {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  text-shadow: 0 1px 3px rgba(21, 57, 96, 0.4);
}

/* Base Header & Base Section Layouts */

/* ==========================================
   About Us Section Style (Non-traditional)
   ========================================== */
.about {
  padding: 0 2rem;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.about-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr; /* Left visual, Right text in RTL */
  gap: 2.5rem;
  align-items: center;
}

/* About Visual side with Hover-spread stack */
.about-visual {
  position: relative;
  width: 100%;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-stack {
  position: relative;
  width: 320px;
  height: 400px;
}

.stack-card {
  position: absolute;
  width: 280px;
  height: 320px;
  background: #ffffff;
  border: 1px solid var(--border-glass);
  border-radius: 24px;
  padding: 0.8rem;
  box-shadow: 0 15px 35px -15px rgba(21, 57, 96, 0.15);
  transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.stack-card img {
  width: 100%;
  height: 80%;
  object-fit: cover;
  border-radius: 16px;
}

.stack-label {
  text-align: center;
  font-size: 0.95rem;
  font-weight: 750;
  color: var(--primary-brand);
}

/* Base stack rotation/translations */
.sc-1 {
  transform: rotate(-6deg) translate(-25px, -25px);
  z-index: 1;
}

.sc-2 {
  transform: rotate(5deg) translate(25px, 25px);
  z-index: 2;
}

.sc-3 {
  transform: rotate(-1deg);
  z-index: 3;
}

/* Exploding fan-out hover effect */
.about-visual:hover .sc-1 {
  transform: rotate(-14deg) translate(-140px, -50px);
}

.about-visual:hover .sc-2 {
  transform: rotate(12deg) translate(140px, 50px);
}

.about-visual:hover .sc-3 {
  transform: rotate(-3deg) translate(0px, -30px) scale(1.05);
  box-shadow: 0 25px 50px -20px rgba(21, 57, 96, 0.25);
}

/* Floating Stats glass card */
.stats-glass-card {
  position: absolute;
  bottom: 25px;
  right: 5%;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 1.25rem 2rem;
  border-radius: 20px;
  box-shadow: 0 20px 40px -15px rgba(21, 57, 96, 0.1);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: var(--transition-smooth);
}

.stats-glass-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 45px -10px rgba(21, 57, 96, 0.15);
  border-color: rgba(232, 124, 36, 0.25);
}

.stats-num {
  font-family: var(--font-en);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--secondary-brand);
  line-height: 1;
}

.stats-plus {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--secondary-brand);
}

.stats-txt {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* About text column */
.about-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.section-eyebrow {
  font-size: 3rem;
  font-weight: 800;
  color: var(--secondary-brand);
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 900;
  line-height: 1.3;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.section-title .highlight-orange {
  color: var(--secondary-brand);
  position: relative;
  display: inline-block;
}

.about-lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
  line-height: 1.7;
}

/* Staggered Row Pillars */
.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
  width: 100%;
}

.pillar-row {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.pillar-num {
  font-family: var(--font-en);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--secondary-brand);
  background: rgba(232, 124, 36, 0.08);
  padding: 0.5rem 0.8rem;
  border-radius: 10px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pillar-body h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.pillar-body p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Vision & Mission Sub-Grid */
.vision-mission-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2.25rem;
  border-top: 1px dashed rgba(21, 57, 96, 0.15);
}

.vision-mission-card {
  position: relative;
  border-radius: 24px;
  padding: 2.2rem;
  transition: var(--transition-smooth);
  overflow: hidden;
}

.vision-card {
  background: linear-gradient(135deg, #ffffff 0%, #fffbf8 100%);
  border: 1px solid rgba(232, 124, 36, 0.25);
  box-shadow: 0 10px 30px rgba(232, 124, 36, 0.06);
}

.mission-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(21, 57, 96, 0.2);
  box-shadow: 0 10px 30px rgba(21, 57, 96, 0.06);
}

.card-watermark {
  position: absolute;
  bottom: -10px;
  left: 15px;
  font-family: var(--font-en);
  font-size: 4.5rem;
  font-weight: 900;
  user-select: none;
  pointer-events: none;
  line-height: 1;
}

.vision-card .card-watermark {
  color: rgba(232, 124, 36, 0.04);
}

.mission-card .card-watermark {
  color: rgba(21, 57, 96, 0.04);
}

.vision-mission-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  gap: 1rem;
}

.card-title-group {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.card-icon-container {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.vision-icon {
  background: linear-gradient(135deg, rgba(232, 124, 36, 0.15) 0%, rgba(232, 124, 36, 0.05) 100%);
  border: 1px solid rgba(232, 124, 36, 0.3);
  color: var(--secondary-brand);
  box-shadow: 0 6px 16px rgba(232, 124, 36, 0.1);
}

.mission-icon {
  background: linear-gradient(135deg, rgba(21, 57, 96, 0.12) 0%, rgba(21, 57, 96, 0.04) 100%);
  border: 1px solid rgba(21, 57, 96, 0.25);
  color: var(--primary-brand);
  box-shadow: 0 6px 16px rgba(21, 57, 96, 0.08);
}

.card-title-text {
  display: flex;
  flex-direction: column;
}

.card-title-text h4 {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--primary-brand);
  margin: 0;
  line-height: 1.2;
}

.card-title-text .card-subtitle {
  font-size: 0.78rem;
  font-weight: 700;
}

.vision-card .card-subtitle {
  color: var(--secondary-brand);
}

.mission-card .card-subtitle {
  color: var(--primary-brand);
}

.card-badge {
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  white-space: nowrap;
}

.vision-badge {
  background: rgba(232, 124, 36, 0.1);
  color: var(--secondary-brand);
  border: 1px solid rgba(232, 124, 36, 0.2);
}

.mission-badge {
  background: rgba(21, 57, 96, 0.08);
  color: var(--primary-brand);
  border: 1px solid rgba(21, 57, 96, 0.15);
}

.vision-mission-card p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0;
  position: relative;
  z-index: 2;
}

/* Services Offerings Grid Section */
.services-offerings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.services-offering-card {
  background: #f8fafc;
  border: 1px solid rgba(21, 57, 96, 0.08);
  border-radius: 20px;
  padding: 1.8rem;
  transition: var(--transition-smooth);
}

.services-offering-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(21, 57, 96, 0.05);
  border-color: rgba(232, 124, 36, 0.2);
}

.services-offering-card .card-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.services-offering-card .card-icon {
  font-size: 1.8rem;
  color: var(--secondary-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.services-offering-card h4 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary-brand);
  margin: 0;
}

.services-offering-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* About Us Responsive adaptation */
@media (max-width: 992px) {
  .about {
    padding: 5rem 2rem;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 5rem;
  }

  .about-visual {
    order: 1;
    height: 420px;
  }

  .image-stack {
    width: 260px;
    height: 340px;
    transform: scale(0.9);
  }

  .stack-card {
    width: 220px;
    height: 260px;
  }

  .about-visual:hover .sc-1 {
    transform: rotate(-10deg) translate(-90px, -30px);
  }

  .about-visual:hover .sc-2 {
    transform: rotate(8deg) translate(90px, 30px);
  }

  .services-offerings-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .vision-mission-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
  }

  .vision-mission-card {
    padding: 1.5rem;
  }

  .vision-mission-card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .services-offerings-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .services-offering-card .card-header {
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
  }

  .services-offering-card .card-icon {
    font-size: 1.5rem;
  }

  .value-card-item .card-header {
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
  }

  /* Interactive Accordion Mobile Responsiveness */
  .interactive-accordion-wrapper {
    flex-direction: column;
    height: auto !important;
    overflow: visible !important;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    gap: 1rem;
  }

  .accordion-card-panel {
    flex: none !important;
    width: 100% !important;
    height: 72px !important;
    min-height: 72px !important;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid rgba(21, 57, 96, 0.08);
    transition: height 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  }

  .accordion-card-panel.active {
    flex: none !important;
    height: 460px !important;
    background: #ffffff;
    box-shadow: 0 15px 35px -10px rgba(21, 57, 96, 0.1);
  }

  .collapsed-vertical-view {
    inset: 0 0 auto 0;
    height: 72px;
    padding: 0 1.25rem;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
    opacity: 1;
    pointer-events: none;
  }

  .vertical-card-title {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: 1.15rem;
    margin: 0;
    white-space: nowrap;
  }

  .vertical-card-num {
    font-size: 1.2rem;
  }

  .accordion-icon-badge {
    width: 44px;
    height: 44px;
  }

  .accordion-card-content {
    padding: 1.25rem;
  }

  .accordion-expanded-top {
    margin-bottom: 1.25rem;
  }

  .accordion-expanded-body h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
  }

  .accordion-expanded-body p {
    font-size: 0.92rem;
    margin-bottom: 1.25rem;
  }

  .expanded-features-pills {
    gap: 0.5rem;
    margin-bottom: 1.25rem;
  }

  .expanded-features-pills span {
    font-size: 0.82rem;
    padding: 0.4rem 0.85rem;
  }

  .accordion-expanded-footer {
    padding-top: 0.75rem;
  }
}

@media (max-width: 480px) {
  .vision-mission-card {
    padding: 1.25rem;
  }

  .card-title-text h4 {
    font-size: 1.2rem;
  }

  .vision-mission-card p {
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .services-offering-card {
    padding: 1.4rem 1.25rem;
  }
}

/* ==========================================
   Portfolio Works Section Styling (سكشن أعمالنا)
   ========================================== */
.portfolio-section {
  position: relative;
  padding: 2.5rem 2rem;
  z-index: 2;
  background: linear-gradient(
    180deg,
    rgba(21, 57, 96, 0.02) 0%,
    transparent 100%
  );
}

.portfolio-container-wrapper {
  max-width: var(--max-width);
  margin: 0 auto;
}

.portfolio-header {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 2.2rem auto;
}

/* Portfolio Filter Pills (تصنيفات الخدمات) */
.portfolio-filter-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.filter-tab-btn {
  font-family: inherit;
  font-size: 0.84rem;
  font-weight: 800;
  color: var(--primary-brand);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.5rem 1.2rem;
  border-radius: 20px;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(21, 57, 96, 0.05);
}

.filter-tab-btn:hover {
  background: #ffffff;
  color: var(--secondary-brand);
  border-color: rgba(232, 124, 36, 0.4);
  transform: translateY(-2px);
}

.filter-tab-btn.active {
  background: linear-gradient(135deg, var(--primary-brand) 0%, #0a1f36 100%);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 8px 20px rgba(21, 57, 96, 0.35);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.portfolio-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 12px 30px -12px rgba(21, 57, 96, 0.08);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.portfolio-card:hover {
  transform: translateY(-8px);
  border-color: rgba(232, 124, 36, 0.45);
  box-shadow: 0 25px 50px -15px rgba(232, 124, 36, 0.22);
  background: #ffffff;
}

.portfolio-img-box {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #0f172a;
}

.portfolio-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.portfolio-card:hover .portfolio-img {
  transform: scale(1.08);
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
}

.overlay-zoom-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.8);
  transition: transform 0.35s ease;
}

.portfolio-card:hover .overlay-zoom-icon {
  transform: scale(1.1);
}

.portfolio-card-info {
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.portfolio-card-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.65rem;
}

.click-hint-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--secondary-brand);
  background: rgba(232, 124, 36, 0.08);
  border: 1px solid rgba(232, 124, 36, 0.25);
  padding: 0.25rem 0.65rem;
  border-radius: 12px;
  transition: all 0.35s ease;
}

.portfolio-card:hover .click-hint-badge {
  background: var(--gradient-brand);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(232, 124, 36, 0.4);
  transform: translateY(-1px);
}

.portfolio-tag {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--primary-brand);
  background: rgba(21, 57, 96, 0.06);
  padding: 0.25rem 0.65rem;
  border-radius: 12px;
}

.portfolio-work-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--primary-brand);
  line-height: 1.4;
  transition: var(--transition-smooth);
}

.portfolio-card:hover .portfolio-work-title {
  color: var(--secondary-brand);
}

.portfolio-work-desc {
  font-size: 0.78rem;
  color: #64748b;
  line-height: 1.5;
  margin-top: 0.4rem;
}

/* ==========================================
   Portfolio Lightbox Modal Window Styling (نافذة العرض التفاعلية المطابقة للصورة)
   ========================================== */
.portfolio-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.portfolio-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.portfolio-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.portfolio-modal-container {
  position: relative;
  width: 100%;
  max-width: 820px;
  background: #ffffff;
  border-radius: 24px;
  padding: 1.8rem 2.2rem;
  box-shadow: 0 30px 80px -15px rgba(0, 0, 0, 0.5);
  z-index: 2;
  transform: scale(0.92);
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  max-height: 88vh;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: rgba(21, 57, 96, 0.2) transparent;
}

.portfolio-modal.active .portfolio-modal-container {
  transform: scale(1);
}

/* Close & Nav Arrows */
.modal-close-btn {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(21, 57, 96, 0.06);
  border: 1px solid rgba(21, 57, 96, 0.1);
  color: var(--primary-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
  z-index: 10;
}

.modal-close-btn:hover {
  background: #ef4444;
  color: #ffffff;
  border-color: transparent;
  transform: rotate(90deg);
}

.modal-nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--primary-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  z-index: 10001;
}

.modal-nav-arrow:hover {
  background: linear-gradient(135deg, var(--primary-brand) 0%, #0a1f36 100%);
  color: #ffffff;
  border-color: transparent;
  transform: translateY(-50%) scale(1.1);
}

.arrow-prev {
  right: 2rem;
}
.arrow-next {
  left: 2rem;
}

.modal-header-bar {
  margin-bottom: 1.2rem;
  padding-left: 2.2rem; /* Space for close btn */
}

.modal-work-title {
  font-size: 1.25rem;
  font-weight: 850;
  color: var(--primary-brand);
  line-height: 1.35;
}

.modal-body-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
  align-items: center;
}

.modal-info-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.modal-category-badge {
  display: inline-flex;
  align-self: flex-start;
  font-size: 0.78rem;
  font-weight: 800;
  color: #ffffff;
  background: #14b8a6;
  padding: 0.28rem 0.85rem;
  border-radius: 20px;
}

.modal-section-block {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.modal-block-title {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--primary-brand);
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.modal-block-title svg {
  color: var(--secondary-brand);
}

.modal-block-text {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.modal-block-text.highlight-result {
  color: var(--primary-brand);
  font-weight: 750;
}

.btn-modal-action {
  margin-top: 0.3rem;
  justify-content: center;
  padding: 0.7rem 1.1rem;
  font-size: 0.85rem;
  font-weight: 800;
  border-radius: 14px;
}

.modal-image-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-img-frame {
  width: 100%;
  max-width: 330px;
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.15);
  border: 1px solid rgba(21, 57, 96, 0.1);
}

.modal-work-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Portfolio Responsive Media Queries */
@media (max-width: 1100px) {
  .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .portfolio-card-header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.45rem;
  }
  .modal-body-grid {
    grid-template-columns: 1fr;
  }
  .arrow-prev {
    right: 5px;
  }
  .arrow-next {
    left: 5px;
  }
}

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

/* ==========================================
   Why Choose Us Section Style (Interactive)
   ========================================== */
.why-us {
  padding: 2.5rem 2rem;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(21, 57, 96, 0.02) 100%
  );
  position: relative;
  z-index: 2;
}

.why-us-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 1.8rem auto;
}

.why-us-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr; /* Steps on the right, Visual on the left in RTL */
  gap: 2.5rem;
  align-items: center;
}

/* Left Column: Visual Canvas Container */
.why-us-visual {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.canvas-container {
  position: relative;
  width: 440px;
  height: 440px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 32px;
  box-shadow:
    0 25px 60px -25px rgba(21, 57, 96, 0.12),
    inset 0 0 40px rgba(21, 57, 96, 0.02);
  overflow: hidden;
  transform-style: preserve-3d;
  perspective: 1000px;
}

/* Cybernetic Scanline and Grid Backdrops */
.canvas-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(21, 57, 96, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 57, 96, 0.02) 1px, transparent 1px);
  background-size: 20px 20px;
  z-index: 0;
  pointer-events: none;
}

.canvas-container::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(232, 124, 36, 0.03) 50%,
    transparent 100%
  );
  z-index: 10;
  pointer-events: none;
  animation: scanLine 6s linear infinite;
}

@keyframes scanLine {
  0% {
    top: -100%;
  }
  100% {
    top: 100%;
  }
}

.canvas-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.92) translateZ(-50px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
}

.canvas-panel.active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1) translateZ(0);
  z-index: 5;
}

/* --- Panel 1: ROI Focus Dashboard --- */
.mock-dash {
  width: 80%;
  background: #ffffff;
  border: 1px solid rgba(21, 57, 96, 0.08);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 15px 35px -15px rgba(21, 57, 96, 0.12);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.dash-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dash-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.dash-title {
  font-size: 0.85rem;
  font-weight: 750;
  color: var(--text-primary);
  margin-right: auto;
}

.dash-chart {
  height: 120px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.8rem;
  border-bottom: 2px solid rgba(21, 57, 96, 0.05);
  padding-bottom: 0.5rem;
}

.chart-bar {
  flex: 1;
  height: var(--height);
  background: linear-gradient(
    to top,
    var(--primary-brand) 0%,
    rgba(21, 57, 96, 0.4) 100%
  );
  border-radius: 6px 6px 0 0;
  transform-origin: bottom;
  animation: growBar 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.chart-bar.animated {
  background: var(--gradient-brand);
  box-shadow: 0 0 15px rgba(232, 124, 36, 0.3);
}

@keyframes growBar {
  0% {
    transform: scaleY(0);
  }
  100% {
    transform: scaleY(1);
  }
}

.dash-badge {
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.badge-num {
  font-family: var(--font-en);
  font-size: 1.3rem;
  font-weight: 900;
  color: #10b981;
}

.badge-lbl {
  font-size: 0.85rem;
  font-weight: 750;
  color: #10b981;
}

/* --- Panel 2: Orbital Synergy --- */
.orbital-system {
  position: relative;
  width: 280px;
  height: 280px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.orbital-center {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gradient-brand);
  box-shadow: 0 10px 25px -5px rgba(232, 124, 36, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.center-brand {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 900;
}

.orbit {
  position: absolute;
  border: 1px dashed rgba(21, 57, 96, 0.08);
  border-radius: 50%;
  animation: rotateOrbit 12s linear infinite;
}

.ob-1 {
  width: 140px;
  height: 140px;
  animation-duration: 8s;
}
.ob-2 {
  width: 190px;
  height: 190px;
  animation-duration: 12s;
  animation-direction: reverse;
}
.ob-3 {
  width: 240px;
  height: 240px;
  animation-duration: 16s;
}
.ob-4 {
  width: 280px;
  height: 280px;
  animation-duration: 20s;
  animation-direction: reverse;
}

.orbit-node {
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid var(--primary-brand);
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 4px 10px rgba(21, 57, 96, 0.15);
}

.node-1 {
  border-color: #e87c24;
}
.node-2 {
  border-color: #153960;
}
.node-3 {
  border-color: #e87c24;
}
.node-4 {
  border-color: #059669;
}

.orbit-node::after {
  content: attr(data-label);
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--text-primary);
  white-space: nowrap;
}

@keyframes rotateOrbit {
  100% {
    transform: rotate(360deg);
  }
}

/* --- Panel 3: Speed Rocket Gauge --- */
.speed-dial {
  position: relative;
  width: 240px;
  height: 240px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.dial-track {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 8px solid rgba(21, 57, 96, 0.03);
  clip-path: polygon(0 0, 100% 0, 100% 80%, 0 80%);
  transform: rotate(-135deg);
}

.dial-fill {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 8px solid var(--secondary-brand);
  border-top-color: transparent;
  border-left-color: transparent;
  transform: rotate(45deg);
  animation: fillGauge 1.5s ease-out forwards;
}

@keyframes fillGauge {
  0% {
    transform: rotate(-135deg);
  }
  100% {
    transform: rotate(85deg);
  }
}

.dial-center {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(21, 57, 96, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.25rem;
  z-index: 3;
}

.dial-center svg {
  color: var(--secondary-brand);
  animation: floatRocket 3s ease-in-out infinite alternate;
}

.dial-number {
  font-family: var(--font-en);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--primary-brand);
}

.dial-txt {
  font-size: 0.8rem;
  font-weight: 750;
  color: var(--text-muted);
}

@keyframes floatRocket {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    transform: translateY(-8px) rotate(5deg);
  }
}

/* --- Panel 4: Quality Aperture --- */
.lens-aperture {
  position: relative;
  width: 220px;
  height: 220px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lens-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(21, 57, 96, 0.05);
}

.r-1 {
  width: 220px;
  height: 220px;
  border: 2px dashed rgba(21, 57, 96, 0.1);
  animation: spinRing 25s linear infinite;
}

.r-2 {
  width: 170px;
  height: 170px;
  border: 1px solid rgba(232, 124, 36, 0.15);
  animation: spinRing 15s linear infinite reverse;
}

.r-3 {
  width: 120px;
  height: 120px;
  border: 4px solid var(--primary-brand);
  clip-path: polygon(0 0, 80% 0, 100% 100%, 0 100%);
  animation: spinRing 8s linear infinite;
}

.lens-center {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow:
    inset 0 0 15px rgba(232, 124, 36, 0.1),
    0 5px 15px rgba(21, 57, 96, 0.08);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 5;
}

.star-sparkle {
  font-size: 1.8rem;
  color: var(--secondary-brand);
  animation: pulseSparkle 2s ease-in-out infinite alternate;
}

@keyframes spinRing {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes pulseSparkle {
  0% {
    transform: scale(0.8) rotate(0deg);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.15) rotate(45deg);
    opacity: 1;
  }
}

/* Right Column: Accordion Steps */
.why-us-steps {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
  margin-top: 2.5rem;
}

.why-step {
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid var(--border-glass);
  border-right: 5px solid transparent; /* Hidden indicator bar */
  border-radius: 20px;
  padding: 1.25rem 1.75rem;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.step-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.step-num {
  font-family: var(--font-en);
  font-size: 1.1rem;
  font-weight: 850;
  color: var(--text-muted);
  background: rgba(21, 57, 96, 0.04);
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.step-header h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-primary);
  transition: var(--transition-smooth);
}

.why-step .step-body {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.why-step .step-body p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  padding-right: 3.5rem; /* Indent under header texts */
}

/* Active Step Styling */
.why-step.active {
  background: #ffffff;
  border-color: rgba(232, 124, 36, 0.2);
  border-right: 5px solid var(--secondary-brand); /* Glowing orange indicator bar */
  box-shadow:
    0 15px 35px -15px rgba(21, 57, 96, 0.08),
    0 0 25px rgba(232, 124, 36, 0.03);
  transform: translateX(-8px); /* Slide slightly to the left in RTL */
}

.why-step.active .step-num {
  color: #ffffff;
  background: var(--secondary-brand);
  box-shadow: 0 4px 10px rgba(232, 124, 36, 0.3);
}

.why-step.active .step-header h3 {
  color: var(--secondary-brand);
}

.why-step.active .step-body {
  max-height: 150px; /* Expand accordion body */
  opacity: 1;
}

/* Why Choose Us Responsive Adaptation */
@media (max-width: 992px) {
  .why-us {
    padding: 5rem 2rem;
  }

  .why-us-container {
    grid-template-columns: 1fr;
    gap: 5rem;
  }

  .why-us-visual {
    order: -1; /* Display canvas at the top on mobiles */
  }

  .canvas-container {
    width: 320px;
    height: 320px;
    border-radius: 24px;
  }

  .mock-dash {
    width: 85%;
    padding: 1rem;
    gap: 1rem;
  }

  .dash-chart {
    height: 90px;
  }

  .orbital-system {
    transform: scale(0.75);
  }

  .speed-dial {
    transform: scale(0.8);
  }

  .lens-aperture {
    transform: scale(0.85);
  }

  .why-step.active .step-body {
    max-height: 200px; /* Allow slightly more wrapping on mobile */
  }
}

/* --- Panel 4 HUD Viewfinder styles --- */
.hud-circle-outer {
  position: absolute;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(232, 124, 36, 0.08);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.hud-line {
  position: absolute;
  background: rgba(21, 57, 96, 0.04);
  pointer-events: none;
  z-index: 1;
}

.h-line {
  width: 320px;
  height: 1px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.v-line {
  width: 1px;
  height: 320px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hud-tag {
  position: absolute;
  font-family: var(--font-en);
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(21, 57, 96, 0.05);
  padding: 0.15rem 0.4rem;
  border-radius: 6px;
  pointer-events: none;
  z-index: 6;
}

.hud-tr {
  top: 0;
  right: 0;
}
.hud-tl {
  top: 0;
  left: 0;
}
.hud-br {
  bottom: 0;
  right: 0;
}
.hud-bl {
  bottom: 0;
  left: 0;
}

/* ==========================================
   Client Journey / Process Section Styling (رحلة الشراكة والنجاح)
   ========================================== */
.process-section {
  position: relative;
  padding: 2.5rem 2rem;
  z-index: 2;
  background: linear-gradient(
    180deg,
    rgba(21, 57, 96, 0.02) 0%,
    transparent 100%
  );
}

.process-container-wrapper {
  max-width: var(--max-width);
  margin: 0 auto;
}

.process-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2.2rem auto;
}

/* ==========================================
   Clean 5-Step Process Grid Styling (رحلة العميل - كروت واضحة وأنيقة)
   ========================================== */
.process-steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
  position: relative;
}

.process-card {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 30px -12px rgba(21, 57, 96, 0.08);
  transition: var(--transition-smooth);
  position: relative;
}

.process-card:hover {
  background: #ffffff;
  border-color: rgba(232, 124, 36, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 45px -10px rgba(232, 124, 36, 0.18);
}

.step-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.8rem;
}

.step-num-badge {
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 1.15rem;
  color: var(--secondary-brand);
  background: rgba(232, 124, 36, 0.08);
  border: 1px solid rgba(232, 124, 36, 0.18);
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.process-card:hover .step-num-badge {
  background: var(--gradient-brand);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(232, 124, 36, 0.3);
}

.process-icon-box {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(21, 57, 96, 0.05);
  border: 1px solid rgba(21, 57, 96, 0.1);
  color: var(--primary-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.process-card:hover .process-icon-box {
  background: rgba(21, 57, 96, 0.1);
  color: var(--secondary-brand);
  transform: rotate(6deg);
}

.step-tag-pill {
  display: inline-flex;
  align-self: flex-start;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--primary-brand);
  background: rgba(21, 57, 96, 0.06);
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  margin-bottom: 0.6rem;
}

.step-title {
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--primary-brand);
  margin-bottom: 0.4rem;
  line-height: 1.35;
}

.step-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.step-deliverable-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--secondary-brand);
  background: rgba(232, 124, 36, 0.08);
  border: 1px solid rgba(232, 124, 36, 0.18);
  padding: 0.35rem 0.6rem;
  border-radius: 10px;
}

/* Highlighted Step 5 Card */
.process-card.highlight-card {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(255, 247, 237, 0.98) 100%
  );
  border: 1.8px solid rgba(232, 124, 36, 0.4);
  box-shadow: 0 15px 35px -10px rgba(232, 124, 36, 0.2);
}

.highlight-num {
  background: var(--gradient-brand);
  color: #ffffff;
  border: none;
}

.highlight-icon {
  background: var(--gradient-brand);
  color: #ffffff;
  border: none;
}

.highlight-pill {
  background: rgba(232, 124, 36, 0.12);
  color: var(--secondary-brand);
}

.highlight-deliverable {
  background: rgba(232, 124, 36, 0.15);
  border-color: rgba(232, 124, 36, 0.3);
}

/* Responsive Grid Breakpoints */
@media (max-width: 1200px) {
  .process-steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .process-steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .process-steps-grid {
    grid-template-columns: 1fr;
  }
}

/* Bottom CTA Banner Ribbon inside Process Section */
.process-cta-banner {
  background: linear-gradient(
    135deg,
    rgba(21, 57, 96, 0.95) 0%,
    rgba(15, 23, 42, 0.95) 100%
  );
  border: 1px solid rgba(232, 124, 36, 0.3);
  border-radius: 24px;
  padding: 1.3rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  box-shadow: 0 20px 45px -10px rgba(15, 23, 42, 0.25);
}

.cta-banner-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cta-icon-glow {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(232, 124, 36, 0.2);
  border: 1px solid rgba(232, 124, 36, 0.4);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(232, 124, 36, 0.3);
}

.cta-text-info h4 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.2rem;
}

.cta-text-info p {
  font-size: 0.85rem;
  color: #94a3b8;
}

.cta-btn {
  flex-shrink: 0;
  padding: 0.85rem 1.6rem;
}

/* ==========================================
   Articles / Blog Section Styling (سكشن المقالات والمدونة الإعلانية)
   ========================================== */
.articles-section {
  position: relative;
  padding: 2.5rem 2rem;
  z-index: 2;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(21, 57, 96, 0.03) 100%
  );
}

.articles-container-wrapper {
  max-width: var(--max-width);
  margin: 0 auto;
}

.articles-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2.2rem auto;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.article-card {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--border-glass);
  border-radius: 24px;
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 15px 35px -15px rgba(21, 57, 96, 0.08);
  transition: var(--transition-smooth);
  position: relative;
}

.article-card:hover {
  background: #ffffff;
  border-color: rgba(232, 124, 36, 0.45);
  transform: translateY(-6px);
  box-shadow: 0 25px 50px -15px rgba(232, 124, 36, 0.2);
}

.article-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.article-category-badge {
  font-size: 0.75rem;
  font-weight: 850;
  color: var(--secondary-brand);
  background: rgba(232, 124, 36, 0.08);
  border: 1px solid rgba(232, 124, 36, 0.2);
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
}

.article-date-badge {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--primary-brand);
  background: rgba(21, 57, 96, 0.06);
  padding: 0.25rem 0.65rem;
  border-radius: 10px;
}

.article-title {
  font-size: 1.15rem;
  font-weight: 850;
  color: var(--primary-brand);
  line-height: 1.4;
  margin-bottom: 0.75rem;
  transition: var(--transition-smooth);
}

.article-card:hover .article-title {
  color: var(--secondary-brand);
}

.article-desc {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.4rem;
  flex-grow: 1;
}

.article-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px dashed rgba(21, 57, 96, 0.1);
}

.btn-article-read,
.btn-article-consult {
  flex: 1;
  justify-content: center;
  padding: 0.65rem 0.8rem;
  font-size: 0.82rem;
  font-weight: 800;
  border-radius: 14px;
}

/* Articles Responsive Media Queries */
@media (max-width: 992px) {
  .articles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .articles-grid {
    grid-template-columns: 1fr;
  }
  .article-actions {
    flex-direction: column;
    gap: 0.5rem;
  }
  .btn-article-read,
  .btn-article-consult {
    width: 100%;
  }
}

/* ==========================================
   Interactive Services Section (قسم الخدمات التفاعلي بالعمود الجانبي)
   ========================================== */
.services-section {
  position: relative;
  padding: 1.8rem 0;
  z-index: 2;
}

.services-container-wrapper {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.services-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 1.5rem auto;
}

.services-header .section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-top: 0.8rem;
  line-height: 1.6;
}

/* 8 Modern Service Cards Grid Layout */
.services-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.modern-service-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(21, 57, 96, 0.08);
  border-radius: 24px;
  padding: 2.2rem 2rem 1.8rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow:
    0 10px 30px -10px rgba(21, 57, 96, 0.06),
    0 1px 3px rgba(0, 0, 0, 0.02);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

/* Top Gradient Accent Line */
.modern-service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--secondary-brand) 0%,
    var(--primary-brand) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* Ambient Backlight Glow */
.modern-service-card::after {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(232, 124, 36, 0.15) 0%,
    transparent 70%
  );
  pointer-events: none;
  opacity: 0;
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}

.modern-service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(232, 124, 36, 0.3);
  box-shadow:
    0 22px 45px -12px rgba(21, 57, 96, 0.12),
    0 0 25px rgba(232, 124, 36, 0.12);
}

.modern-service-card:hover::before {
  opacity: 1;
}

.modern-service-card:hover::after {
  opacity: 1;
  transform: scale(1.2);
}

.service-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.service-card-icon-box {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    rgba(232, 124, 36, 0.12) 0%,
    rgba(21, 57, 96, 0.06) 100%
  );
  border: 1px solid rgba(232, 124, 36, 0.2);
  color: var(--secondary-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.8),
    0 4px 12px rgba(232, 124, 36, 0.08);
  transition: all 0.4s ease;
}

.modern-service-card:hover .service-card-icon-box {
  background: var(--gradient-brand);
  color: #ffffff;
  border-color: transparent;
  transform: scale(1.08) rotate(-3deg);
  box-shadow: 0 10px 20px -5px rgba(232, 124, 36, 0.4);
}

.service-card-num {
  font-family: var(--font-en);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--primary-brand);
  opacity: 0.2;
  line-height: 1;
  letter-spacing: -1px;
  transition: opacity 0.3s ease;
}

.modern-service-card:hover .service-card-num {
  opacity: 0.5;
  color: var(--secondary-brand);
}

.service-category-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  background: rgba(232, 124, 36, 0.08);
  border: 1px solid rgba(232, 124, 36, 0.18);
  color: var(--secondary-brand);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.35rem 0.9rem;
  border-radius: 30px;
  margin-bottom: 0.85rem;
  transition: var(--transition-smooth);
}

.modern-service-card:hover .service-category-tag {
  background: rgba(232, 124, 36, 0.15);
  border-color: rgba(232, 124, 36, 0.35);
}

.service-card-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary-brand);
  line-height: 1.4;
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

.modern-service-card:hover .service-card-title {
  color: var(--primary-brand);
}

.service-card-desc {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.4rem;
}

.service-card-features {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: 1.6rem;
  padding-top: 1.1rem;
  border-top: 1px dashed rgba(21, 57, 96, 0.12);
}

.feature-bullet {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.4rem 0.6rem;
  border-radius: 10px;
  transition: background 0.3s ease;
}

.feature-bullet:hover {
  background: rgba(21, 57, 96, 0.03);
}

.feature-bullet-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(232, 124, 36, 0.12);
  color: var(--secondary-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  transition: all 0.3s ease;
}

.feature-bullet:hover .feature-bullet-icon {
  background: var(--secondary-brand);
  color: #ffffff;
}

.feature-bullet strong {
  display: block;
  font-size: 0.9rem;
  color: var(--primary-brand);
  font-weight: 700;
  line-height: 1.3;
}

.feature-bullet span {
  display: block;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.35;
  margin-top: 2px;
}

.service-card-actions {
  margin-top: auto;
}

.service-card-cta {
  width: 100%;
  justify-content: center;
  padding: 0.8rem 1.4rem;
  font-size: 0.92rem;
  font-weight: 700;
  border-radius: 14px;
  box-shadow: 0 6px 16px rgba(21, 57, 96, 0.12);
  transition: all 0.3s ease;
}

.modern-service-card:hover .service-card-cta {
  background: var(--gradient-brand-hover);
  box-shadow: 0 10px 25px rgba(232, 124, 36, 0.3);
}

/* 2-Column Grid Layout */
.services-interactive-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 2.2rem;
  align-items: start;
}

/* Sidebar Navigation (Right Column in RTL) */
.services-sidebar {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: 0 15px 35px -10px rgba(21, 57, 96, 0.06);
}

.sidebar-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.2rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(21, 57, 96, 0.08);
}

.sidebar-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--primary-brand);
}

.sidebar-title svg {
  color: var(--secondary-brand);
}

.sidebar-count-badge {
  background: rgba(232, 124, 36, 0.12);
  color: var(--secondary-brand);
  font-weight: 800;
  font-size: 0.78rem;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  border: 1px solid rgba(232, 124, 36, 0.2);
}

.services-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

/* Individual Sidebar Item Button */
.service-nav-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-align: right;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(21, 57, 96, 0.05);
  padding: 0.85rem 1rem;
  border-radius: 16px;
  cursor: pointer;
  transition: var(--transition-smooth);
  width: 100%;
  font-family: var(--font-ar);
  position: relative;
  outline: none;
}

.service-nav-item:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(232, 124, 36, 0.25);
  transform: translateX(-4px);
  box-shadow: 0 6px 16px rgba(21, 57, 96, 0.04);
}

.service-nav-item.active {
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    rgba(255, 247, 237, 0.9) 100%
  );
  border-color: rgba(232, 124, 36, 0.4);
  box-shadow: 0 10px 25px -5px rgba(232, 124, 36, 0.15);
}

.service-nav-item .nav-num {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(21, 57, 96, 0.06);
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-brand);
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.service-nav-item.active .nav-num {
  background: var(--gradient-brand);
  color: #ffffff;
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(232, 124, 36, 0.3);
}

.service-nav-item .nav-info {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  flex-grow: 1;
  min-width: 0;
}

.service-nav-item .nav-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-primary);
  transition: var(--transition-smooth);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.service-nav-item.active .nav-title {
  color: var(--primary-brand);
  font-weight: 800;
}

.service-nav-item .nav-tag {
  font-size: 0.73rem;
  color: var(--text-muted);
}

.service-nav-item.active .nav-tag {
  color: var(--secondary-brand);
  font-weight: 600;
}

.service-nav-item .nav-arrow {
  opacity: 0.3;
  transition: var(--transition-smooth);
  flex-shrink: 0;
  color: var(--text-muted);
}

.service-nav-item:hover .nav-arrow,
.service-nav-item.active .nav-arrow {
  opacity: 1;
  transform: translateX(-4px);
  color: var(--secondary-brand);
}

/* Display Canvas (Left Column in RTL) */
.services-display-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: 28px;
  padding: 2.2rem;
  box-shadow: 0 25px 60px -15px rgba(21, 57, 96, 0.08);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.display-card-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.2rem;
  align-items: center;
}

/* Image Showcase Box */
.service-image-box {
  position: relative;
  width: 100%;
  border-radius: 20px;
}

.img-glow-ambient {
  position: absolute;
  top: -15%;
  left: -15%;
  width: 130%;
  height: 130%;
  background: radial-gradient(
    circle,
    rgba(232, 124, 36, 0.15) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
  filter: blur(30px);
}

.img-frame {
  position: relative;
  width: 100%;
  height: 440px;
  border-radius: 24px;
  overflow: hidden;
  background: #0f172a;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(21, 57, 96, 0.1);
  z-index: 1;
}

.img-frame-portrait {
  height: 520px;
  aspect-ratio: 3/4;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.18);
  border-color: rgba(232, 124, 36, 0.2);
}

.service-active-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

.service-active-img.fade-out {
  opacity: 0;
  transform: scale(0.97);
}

.img-tag-badge {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.4rem 0.9rem;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 3;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--secondary-brand);
  box-shadow: 0 0 10px var(--secondary-brand);
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0% {
    transform: scale(0.95);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.3);
    opacity: 1;
  }
  100% {
    transform: scale(0.95);
    opacity: 0.8;
  }
}

.img-number-watermark {
  position: absolute;
  bottom: -1rem;
  left: 1rem;
  font-family: var(--font-en);
  font-size: 5.5rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.15);
  pointer-events: none;
  z-index: 2;
  line-height: 1;
  user-select: none;
}

/* Text Content Showcase Box */
.service-text-box {
  display: flex;
  flex-direction: column;
}

.service-badge-pill {
  display: inline-flex;
  align-self: flex-start;
  background: rgba(232, 124, 36, 0.1);
  color: var(--secondary-brand);
  font-weight: 800;
  font-size: 0.78rem;
  padding: 0.35rem 0.9rem;
  border-radius: 20px;
  border: 1px solid rgba(232, 124, 36, 0.2);
  margin-bottom: 0.8rem;
}

.service-display-title {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--primary-brand);
  line-height: 1.35;
  margin-bottom: 0.85rem;
  transition: var(--transition-smooth);
}

.service-display-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.4rem;
  transition: var(--transition-smooth);
}

.features-section-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--primary-brand);
  margin-bottom: 0.9rem;
  padding-top: 0.9rem;
  border-top: 1px dashed rgba(21, 57, 96, 0.12);
}

.features-section-title svg {
  color: var(--secondary-brand);
}

/* Features Grid */
.service-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-bottom: 1.6rem;
}

.feature-item-card {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(21, 57, 96, 0.08);
  border-radius: 14px;
  padding: 0.8rem 0.9rem;
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  transition: var(--transition-smooth);
}

.feature-item-card:hover {
  background: #ffffff;
  border-color: rgba(232, 124, 36, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(21, 57, 96, 0.06);
}

.feature-icon-wrapper {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(
    135deg,
    rgba(232, 124, 36, 0.14) 0%,
    rgba(21, 57, 96, 0.08) 100%
  );
  border: 1px solid rgba(232, 124, 36, 0.25);
  color: var(--secondary-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 12px rgba(232, 124, 36, 0.08);
}

.feature-item-card:hover .feature-icon-wrapper {
  background: var(--gradient-brand);
  color: #ffffff;
  border-color: transparent;
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 18px rgba(232, 124, 36, 0.3);
}

.feature-info h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-brand);
  margin-bottom: 0.15rem;
}

.feature-info p {
  font-size: 0.76rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Action Buttons */
.service-actions-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.btn-service-action {
  padding: 0.85rem 1.4rem;
  font-size: 0.9rem;
}

.btn-service-call {
  padding: 0.85rem 1.4rem;
  font-size: 0.9rem;
}

/* Service Trust & Guarantees Banner (شريط ممتد بكامل العرض أسفل الصورة والنص) */
.service-trust-banner {
  width: 100%;
  margin-top: 0;
  padding: 1rem 1.2rem;
  background: linear-gradient(
    135deg,
    rgba(21, 57, 96, 0.04) 0%,
    rgba(232, 124, 36, 0.08) 100%
  );
  border: 1px dashed rgba(232, 124, 36, 0.28);
  border-radius: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
  transition: var(--transition-smooth);
}

.service-trust-banner:hover {
  background: linear-gradient(
    135deg,
    rgba(21, 57, 96, 0.06) 0%,
    rgba(232, 124, 36, 0.12) 100%
  );
  border-color: rgba(232, 124, 36, 0.45);
  box-shadow: 0 10px 25px -5px rgba(232, 124, 36, 0.1);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(21, 57, 96, 0.06);
  padding: 0.75rem 0.85rem;
  border-radius: 14px;
  transition: var(--transition-smooth);
}

.trust-item:hover {
  background: #ffffff;
  border-color: rgba(232, 124, 36, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(21, 57, 96, 0.04);
}

.trust-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(
    135deg,
    rgba(232, 124, 36, 0.14) 0%,
    rgba(21, 57, 96, 0.08) 100%
  );
  border: 1px solid rgba(232, 124, 36, 0.25);
  color: var(--secondary-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 12px rgba(232, 124, 36, 0.08);
}

.trust-item:hover .trust-icon {
  background: var(--gradient-brand);
  color: #ffffff;
  border-color: transparent;
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 8px 18px rgba(232, 124, 36, 0.3);
}

.trust-info h5 {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--primary-brand);
  margin-bottom: 0.1rem;
  line-height: 1.25;
}

.trust-info p {
  font-size: 0.71rem;
  color: var(--text-muted);
  line-height: 1.25;
}

/* ==========================================
   Header Mobile Menu Toggle & Navigation Drawer
   ========================================== */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 36px;
  height: 26px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 2px;
  z-index: 110;
  margin-right: 0.5rem;
}

.mobile-toggle .bar {
  width: 100%;
  height: 3px;
  background-color: var(--primary-brand);
  border-radius: 4px;
  transition: var(--transition-smooth);
}

.mobile-toggle.active .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mobile-toggle.active .bar:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ==========================================
   Footer Section Styling
   ========================================== */
.footer {
  background: #0b1727;
  color: #ffffff;
  padding: 2rem 0 1.5rem 0;
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px 20px 0 0;
}

.footer-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr 1.2fr;
  gap: 2.5rem;
  margin-bottom: 1.5rem;
}

.footer-logo {
  display: inline-block;
  background: #ffffff;
  padding: 0.6rem 1.2rem;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  margin-bottom: 1.2rem;
  transition: transform 0.3s ease;
}

.footer-logo:hover {
  transform: translateY(-3px);
}

.footer-logo img {
  height: 44px;
  display: block;
}

.footer-desc {
  font-size: 0.92rem;
  color: #ffffff;
  opacity: 0.95;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-phone-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.9rem 1.2rem;
  border-radius: 16px;
}

.footer-phone-box svg {
  color: var(--secondary-brand);
  flex-shrink: 0;
}

.phone-label {
  display: block;
  font-size: 0.78rem;
  color: #ffffff;
  opacity: 0.9;
}

.phone-number {
  font-size: 1.1rem;
  font-weight: 800;
  color: #ffffff;
}

/* Footer Social Media Buttons */
.footer-social-links {
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px dashed rgba(255, 255, 255, 0.15);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.social-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: #ffffff;
}

.social-icons-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.social-icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  text-decoration: none;
}

.social-icon-btn:hover {
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.3);
}

.social-icon-btn.instagram:hover {
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  border-color: transparent;
}

.social-icon-btn.facebook:hover {
  background: #1877f2;
  border-color: transparent;
}

.social-icon-btn.tiktok:hover {
  background: #000000;
  border-color: #25f4ee;
  box-shadow:
    -2px 2px 10px rgba(37, 244, 238, 0.4),
    2px -2px 10px rgba(254, 44, 85, 0.4);
}

.footer-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.4rem;
  position: relative;
  padding-bottom: 0.6rem;
}

.footer-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 35px;
  height: 3px;
  background: var(--secondary-brand);
  border-radius: 2px;
}

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

.footer-links a {
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 600;
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links a::before {
  content: "›";
  color: var(--secondary-brand);
  font-weight: 800;
  font-size: 1.25rem;
  line-height: 1;
  transition: transform 0.3s ease;
}

.footer-links a:hover {
  color: var(--secondary-brand);
  transform: translateX(-5px);
}

.footer-cta-card {
  background: linear-gradient(
    135deg,
    rgba(21, 57, 96, 0.8) 0%,
    rgba(232, 124, 36, 0.2) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 1.5rem;
}

.footer-cta-card h4 {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.footer-cta-card p {
  color: #cbd5e1;
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 1.2rem;
}

.btn-footer-wa {
  width: 100%;
  justify-content: center;
  padding: 0.8rem 1rem;
  font-size: 0.88rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #ffffff;
  opacity: 0.9;
  font-size: 0.85rem;
}

/* Universal Floating Contact Dock (3 Circular Icon-Only Buttons) */
.floating-contact-dock {
  position: fixed;
  bottom: 24px;
  left: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 99999;
}

.dock-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.dock-btn:hover {
  transform: translateY(-4px) scale(1.12);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
  color: #ffffff;
}

.dock-wa {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
}

.dock-call {
  background: linear-gradient(135deg, #1d4d7f 0%, #153960 100%);
  box-shadow: 0 8px 25px rgba(21, 57, 96, 0.45);
}

.dock-email {
  background: linear-gradient(135deg, #ea4335 0%, #c5221f 100%);
  box-shadow: 0 8px 25px rgba(234, 67, 53, 0.45);
}

/* Mobile Adjustments: Bottom Floating Horizontal Bar with 3 Icon Buttons */
@media (max-width: 768px) {
  .floating-contact-dock {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    flex-direction: row;
    justify-content: center;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    padding: 0.5rem 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    gap: 16px;
    border-radius: 50px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
  }

  .dock-btn {
    width: 46px;
    height: 46px;
    box-shadow: none;
  }

  .dock-btn:hover {
    transform: scale(1.1);
  }
}

/* ==========================================
   Scroll Reveal Animations
   ========================================== */
.reveal {
  opacity: 0;
  transition:
    opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.reveal-fade.active {
  opacity: 1;
}

.reveal-slide-up {
  transform: translateY(40px);
}
.reveal-slide-up.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-slide-down {
  transform: translateY(-40px);
}
.reveal-slide-down.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-slide-left {
  transform: translateX(45px);
}
.reveal-slide-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-slide-right {
  transform: translateX(-45px);
}
.reveal-slide-right.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-zoom {
  transform: scale(0.95);
}
.reveal-zoom.active {
  opacity: 1;
  transform: scale(1);
}

/* Staggering delays for list items and cards grid */
.reveal-delay-100 {
  transition-delay: 100ms;
}
.reveal-delay-200 {
  transition-delay: 200ms;
}
.reveal-delay-300 {
  transition-delay: 300ms;
}
.reveal-delay-400 {
  transition-delay: 400ms;
}
.reveal-delay-500 {
  transition-delay: 500ms;
}

/* ==========================================
   Comprehensive Responsiveness Media Queries
   ========================================== */

/* Overflow Prevention & Root Constraints */
html,
body {
  overflow-x: hidden !important;
  width: 100%;
  max-width: 100vw;
}

/* --- Laptop Breakpoint (1200px) --- */
@media (max-width: 1200px) {
  .hero-container {
    gap: 3rem;
  }
  .about-container {
    gap: 3rem;
  }
  .services-interactive-grid {
    grid-template-columns: 340px 1fr;
    gap: 1.8rem;
  }
  .why-us-container {
    gap: 3rem;
  }
}

/* --- Tablet Breakpoint (992px) --- */
@media (max-width: 992px) {
  /* Header & Mobile Toggle Drawer */
  .mobile-toggle {
    display: flex;
  }

  .header {
    z-index: 1000;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 82%;
    max-width: 320px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    box-shadow: -10px 0 35px rgba(21, 57, 96, 0.15);
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1005;
    padding: 2.5rem 1.5rem;
    list-style: none;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-brand);
  }

  .nav-cta {
    margin-right: auto;
  }

  /* Hero Section */
  .hero {
    padding-top: 7.5rem;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 3.5rem;
    text-align: center;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-eyebrow {
    margin: 0 auto 1.25rem auto;
  }

  .hero-title {
    font-size: 2.3rem;
  }

  .hero-desc {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    height: 360px;
    order: -1;
  }

  /* 3D Carousel Mobile Containment */
  .cards-carousel {
    height: 350px;
    perspective: 800px;
  }

  .carousel-card {
    width: 250px;
  }

  .carousel-card.prev {
    transform: scale(0.88) translate3d(120px, 0, -60px) rotateY(18deg);
  }

  .carousel-card.next {
    transform: scale(0.88) translate3d(-120px, 0, -60px) rotateY(-18deg);
  }

  .carousel-card.far-prev,
  .carousel-card.far-next {
    opacity: 0;
    pointer-events: none;
  }

  /* About Section */
  .about {
    padding: 2.2rem 1.5rem;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-visual {
    order: 1;
    height: 380px;
  }

  .image-stack {
    width: 280px;
    height: 320px;
  }

  .stack-card {
    width: 230px;
    height: 270px;
  }

  .about-visual:hover .sc-1 {
    transform: rotate(-8deg) translate(-60px, -20px);
  }

  .about-visual:hover .sc-2 {
    transform: rotate(6deg) translate(60px, 20px);
  }

  /* Interactive Services Section (Last Section) */
  .services-section {
    padding: 1.8rem 0;
  }

  .services-interactive-grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .services-nav-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
  }

  .display-card-content {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .img-frame-portrait {
    height: 380px;
  }

  .service-trust-banner {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  /* Why Choose Us Section */
  .why-us {
    padding: 2.2rem 1.5rem;
  }

  .why-us-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .why-us-visual {
    order: -1;
  }

  .canvas-container {
    width: 330px;
    height: 330px;
    margin: 0 auto;
  }

  .orbital-system {
    transform: scale(0.72);
  }
  .speed-dial {
    transform: scale(0.75);
  }
  .lens-aperture {
    transform: scale(0.8);
  }

  /* Footer Section */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.2rem;
  }
}

/* --- Mobile Landscape / Medium Screens (768px) --- */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    max-width: 340px;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .cards-carousel {
    height: 310px;
  }

  .carousel-card {
    width: 220px;
  }

  .carousel-card.prev {
    transform: scale(0.85) translate3d(80px, 0, -40px) rotateY(12deg);
  }

  .carousel-card.next {
    transform: scale(0.85) translate3d(-80px, 0, -40px) rotateY(-12deg);
  }

  .stats-glass-card {
    padding: 1rem 1.5rem;
    right: 2%;
    bottom: 10px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Mobile Portrait Breakpoint (640px and below) --- */
@media (max-width: 640px) {
  body {
    padding-bottom: 0;
  }

  .footer {
    padding-bottom: 90px !important;
  }

  .floating-mobile-bar {
    display: flex;
  }

  .nav-container {
    padding: 0.75rem 1rem;
  }

  .logo-img {
    height: 38px;
  }

  .phone-badge {
    padding: 0.35rem 0.65rem;
    font-size: 0.78rem;
  }

  .section-title {
    font-size: 1.55rem;
  }

  /* Vertical stacked services sidebar for ultra-easy tapping on mobile */
  .services-sidebar {
    padding: 1.1rem;
  }

  .services-nav-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .service-nav-item {
    width: 100%;
    padding: 0.8rem 0.9rem;
  }

  .service-nav-item .nav-title {
    white-space: normal; /* Allow titles to wrap naturally if needed on mobile */
    font-size: 0.85rem;
  }

  .service-features-grid {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  .service-actions-row {
    flex-direction: column;
    width: 100%;
  }

  .service-actions-row .btn {
    width: 100%;
    justify-content: center;
  }

  .services-display-card {
    padding: 1.2rem;
    border-radius: 20px;
  }

  .service-display-title {
    font-size: 1.25rem;
  }

  .img-frame,
  .img-frame-portrait {
    height: 300px;
  }

  .canvas-container {
    width: 280px;
    height: 280px;
    margin: 0 auto;
  }

  .orbital-system {
    transform: scale(0.62);
  }
  .speed-dial {
    transform: scale(0.65);
  }
  .lens-aperture {
    transform: scale(0.68);
  }
}

/* --- Ultra Small Devices (under 400px) --- */
@media (max-width: 400px) {
  .phone-badge span {
    display: none; /* Show phone icon only on tiny screens */
  }

  .phone-badge {
    padding: 0.4rem;
    border-radius: 50%;
  }

  .carousel-card {
    width: 190px;
  }

  .carousel-card.prev {
    transform: scale(0.8) translate3d(50px, 0, -30px);
  }

  .carousel-card.next {
    transform: scale(0.8) translate3d(-50px, 0, -30px);
  }

  .canvas-container {
    width: 250px;
    height: 250px;
  }
}

/* Process Section Media Queries */
@media (max-width: 1200px) {
  .process-steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .process-steps-grid {
    grid-template-columns: 1fr 1fr;
  }
  .process-cta-banner {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .cta-banner-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .process-steps-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================
   FAQ Section Styles (الأسئلة الشائعة)
   ========================================== */
.faq-section {
  padding: 5rem 2rem;
  background: var(--bg-soft);
  position: relative;
  overflow: hidden;
}

.faq-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem auto;
}

.faq-container-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.faq-filter-tabs {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.faq-tab-btn {
  padding: 0.65rem 1.4rem;
  background: rgba(21, 57, 96, 0.05);
  border: 1px solid rgba(21, 57, 96, 0.1);
  color: var(--primary-brand);
  border-radius: 30px;
  font-weight: 800;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.35s ease;
}

.faq-tab-btn.active,
.faq-tab-btn:hover {
  background: linear-gradient(135deg, var(--primary-brand) 0%, #0a1f36 100%);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(21, 57, 96, 0.2);
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(21, 57, 96, 0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.35s ease;
}

.faq-item:hover {
  border-color: rgba(232, 124, 36, 0.3);
  box-shadow: 0 8px 24px rgba(21, 57, 96, 0.04);
}

.faq-item.active {
  background: #ffffff;
  border-color: var(--secondary-brand);
  box-shadow: 0 8px 30px rgba(232, 124, 36, 0.06);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  text-align: right;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary-brand);
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: var(--secondary-brand);
}

.faq-icon-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(21, 57, 96, 0.05);
  border-radius: 50%;
  color: var(--primary-brand);
  transition:
    transform 0.35s ease,
    background-color 0.35s ease;
}

.faq-item.active .faq-icon-arrow {
  transform: rotate(180deg);
  background: var(--secondary-brand);
  color: #ffffff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
  padding: 0 1.5rem 1.5rem 1.5rem;
  font-size: 0.95rem;
  color: #4a5568;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .faq-section {
    padding: 3.5rem 1rem;
  }
  .faq-question {
    font-size: 0.95rem;
    padding: 1.1rem 1.2rem;
  }
  .faq-answer-inner {
    padding: 0 1.2rem 1.2rem 1.2rem;
    font-size: 0.88rem;
  }
}

/* ==========================================
   About Page Custom Sections (Matching Home Design System)
   ========================================== */

/* 1. Hero Section */
.about-hero {
  position: relative;
  padding: 8rem 2rem 5rem 2rem;
  background: linear-gradient(
    180deg,
    rgba(21, 57, 96, 0.08) 0%,
    rgba(248, 250, 252, 0) 100%
  );
  overflow: hidden;
}

.about-hero-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.about-hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: right;
}

.breadcrumbs {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(21, 57, 96, 0.1);
  font-size: 0.88rem;
  color: var(--primary-brand);
  margin-bottom: 1.25rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.breadcrumbs a {
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.breadcrumbs a:hover {
  color: var(--secondary-brand);
}

.breadcrumbs .sep {
  opacity: 0.4;
  font-size: 0.75rem;
}

.breadcrumbs .current {
  color: var(--secondary-brand);
}

.about-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1.25rem;
  border-radius: 50px;
  background: rgba(21, 57, 96, 0.05);
  border: 1px solid rgba(21, 57, 96, 0.12);
  font-size: 0.88rem;
  color: var(--primary-brand);
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--secondary-brand);
  box-shadow: 0 0 10px var(--secondary-brand);
  animation: pulseDot 1.6s infinite;
}

.about-hero-title {
  font-size: clamp(2.2rem, 3.5vw, 3.5rem);
  font-weight: 900;
  color: var(--primary-brand);
  line-height: 1.25;
  margin-bottom: 1.25rem;
}

.about-hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.75rem;
  max-width: 680px;
}

.about-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.25rem;
}

.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 1rem;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid rgba(21, 57, 96, 0.08);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-brand);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.about-hero-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.about-hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-hero-card-main {
  width: 100%;
  max-width: 440px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(21, 57, 96, 0.1);
  border-radius: 24px;
  padding: 2.25rem;
  box-shadow: 0 20px 50px -15px rgba(21, 57, 96, 0.12);
  position: relative;
  z-index: 2;
}

.about-hero-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(21, 57, 96, 0.06);
  padding-bottom: 1.25rem;
}

.agency-brand-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--gradient-brand);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 8px 20px rgba(21, 57, 96, 0.25);
}

.agency-brand-info h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary-brand);
}

.agency-brand-info span {
  font-size: 0.82rem;
  color: var(--secondary-brand);
  font-weight: 600;
}

.about-hero-features-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.hero-feature-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(232, 124, 36, 0.12);
  color: var(--secondary-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.85rem;
  font-weight: 800;
  margin-top: 0.1rem;
}

.hero-feature-text h5 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--primary-brand);
}

.hero-feature-text p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.floating-stat-badge {
  position: absolute;
  background: #ffffff;
  border: 1px solid rgba(21, 57, 96, 0.1);
  padding: 0.75rem 1.25rem;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(21, 57, 96, 0.1);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 3;
}

.floating-stat-badge.pos-top-left {
  top: -1.25rem;
  left: -1rem;
}

.floating-stat-badge.pos-bottom-right {
  bottom: -1.25rem;
  right: -1rem;
}

.badge-icon-circle {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: rgba(21, 57, 96, 0.06);
  color: var(--primary-brand);
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-info-num {
  font-family: var(--font-en);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary-brand);
  line-height: 1;
}

.badge-info-lbl {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* 2. Bento Grid & Comparison Showcase */
.why-choose-bento-section {
  padding: 6.5rem 2rem;
  position: relative;
  background: linear-gradient(
    180deg,
    rgba(248, 250, 252, 0) 0%,
    rgba(21, 57, 96, 0.05) 50%,
    rgba(248, 250, 252, 0) 100%
  );
  overflow: hidden;
}

.bento-section-container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.bento-section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4rem auto;
}

.bento-grid-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 3.5rem auto;
}

.bento-card-item {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(21, 57, 96, 0.08);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px -10px rgba(21, 57, 96, 0.05);
  position: relative;
  overflow: hidden;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bento-card-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px -12px rgba(21, 57, 96, 0.12);
  border-color: rgba(232, 124, 36, 0.3);
}

.bento-icon-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.bento-icon-box {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(232, 124, 36, 0.1);
  color: var(--secondary-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.bento-icon-box.navy {
  background: rgba(21, 57, 96, 0.1);
  color: var(--primary-brand);
}

.bento-tag {
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  background: rgba(21, 57, 96, 0.04);
  color: var(--primary-brand);
  border: 1px solid rgba(21, 57, 96, 0.08);
}

.bento-card-item h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary-brand);
  margin-bottom: 0.75rem;
}

.bento-card-item p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.bento-compare-pill {
  margin-top: 1.5rem;
  padding: 0.85rem 1.2rem;
  border-radius: 14px;
  background: rgba(248, 250, 252, 0.9);
  border: 1px dashed rgba(21, 57, 96, 0.12);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
}

.bento-compare-pill .vs-badge {
  background: var(--secondary-brand);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.2rem 0.6rem;
  border-radius: 8px;
  flex-shrink: 0;
}

.bento-compare-pill .vs-text {
  color: var(--primary-brand);
}

.agency-comparison-banner {
  max-width: 1200px;
  margin: 0 auto;
  background: var(--primary-brand);
  border-radius: 24px;
  padding: 3rem;
  color: #ffffff;
  box-shadow: 0 20px 45px rgba(21, 57, 96, 0.2);
  position: relative;
  overflow: hidden;
}

.comparison-banner-title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 2rem;
  color: #ffffff;
}

.comparison-banner-title span {
  color: var(--secondary-brand);
}

.comparison-grid-rows {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.comparison-row-item {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
  padding: 1.1rem 1.5rem;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.92rem;
}

.comparison-row-item.header-row {
  background: transparent;
  border: none;
  font-weight: 800;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  padding-bottom: 0.5rem;
}

.comp-feature {
  font-weight: 700;
  color: #ffffff;
}

.comp-trad {
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.comp-our {
  color: var(--secondary-brand);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* 3. Company Statistics Section */
.stats-grid-section {
  padding: 5rem 2rem;
  position: relative;
  background: linear-gradient(
    180deg,
    rgba(21, 57, 96, 0.03) 0%,
    transparent 100%
  );
}

.stats-section-container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.stats-grid-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.75rem;
  max-width: 1200px;
  margin: 0 auto;
}

.stat-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(21, 57, 96, 0.08);
  border-radius: 20px;
  padding: 2.25rem 1.5rem;
  text-align: center;
  box-shadow: 0 10px 30px -10px rgba(21, 57, 96, 0.05);
  position: relative;
  overflow: hidden;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px -12px rgba(21, 57, 96, 0.12);
}

.stat-number-box {
  font-family: var(--font-en);
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--primary-brand);
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.2rem;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.stat-number-box .plus-sign {
  color: var(--secondary-brand);
  font-size: 2rem;
  font-weight: 800;
}

.stat-label-txt {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-muted);
}

/* 4. Values & Work Method Section */
.values-method-section {
  padding: 6rem 2rem;
  position: relative;
}

.values-method-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.value-card-item {
  background: #ffffff;
  border: 1px solid rgba(21, 57, 96, 0.07);
  border-radius: 18px;
  padding: 1.75rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.value-card-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(21, 57, 96, 0.08);
}

.value-card-item .card-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.value-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(232, 124, 36, 0.1);
  color: var(--secondary-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.value-icon-box.navy {
  background: rgba(21, 57, 96, 0.1);
  color: var(--primary-brand);
}

.value-card-item h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-brand);
  margin: 0;
}

.value-card-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.method-timeline-list {
  position: relative;
  margin-top: 2rem;
  padding-right: 3rem;
}

.method-timeline-list::before {
  content: "";
  position: absolute;
  top: 1rem;
  bottom: 1rem;
  right: 1.25rem;
  width: 2px;
  background: rgba(21, 57, 96, 0.12);
}

.method-step-row {
  position: relative;
  margin-bottom: 2.25rem;
}

.method-step-row:last-child {
  margin-bottom: 0;
}

.method-step-circle {
  position: absolute;
  right: -3rem;
  top: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid var(--primary-brand);
  color: var(--primary-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  font-family: var(--font-en);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.method-step-circle.orange {
  border-color: var(--secondary-brand);
  color: var(--secondary-brand);
}

.method-step-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-brand);
  margin-bottom: 0.35rem;
}

.method-step-body p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* 5. Customer Reviews Section */
.testimonials-section {
  padding: 6rem 2rem;
  background: linear-gradient(
    180deg,
    rgba(21, 57, 96, 0.04) 0%,
    transparent 100%
  );
  position: relative;
}

.testimonials-container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.testimonials-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 3.5rem auto;
}

.testimonials-grid-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card-item {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(21, 57, 96, 0.07);
  border-radius: 20px;
  padding: 2.25rem 2rem;
  box-shadow: 0 10px 28px -10px rgba(21, 57, 96, 0.05);
  position: relative;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px -10px rgba(21, 57, 96, 0.12);
}

.quote-mark-icon {
  position: absolute;
  top: 0;
  right: 2rem;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--secondary-brand);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
  box-shadow: 0 6px 16px rgba(232, 124, 36, 0.3);
}

.quote-mark-icon.navy {
  background: var(--primary-brand);
  box-shadow: 0 6px 16px rgba(21, 57, 96, 0.3);
}

.star-rating-row {
  color: var(--secondary-brand);
  display: flex;
  gap: 0.2rem;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.testimonial-txt {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.client-author-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid rgba(21, 57, 96, 0.06);
  padding-top: 1rem;
}

.client-avatar-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-brand);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-author-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-brand);
}

.client-author-info span {
  font-size: 0.8rem;
  color: #8a99ad;
  display: block;
}

/* ==========================================
   Ultra-Luxury Bento Grid Showcase Section (UI/UX Pro Max)
   ========================================== */
.why-choose-bento-section {
  padding: 2rem 2rem;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  position: relative;
  overflow: hidden;
}

.bento-section-container {
  max-width: 1240px;
  margin: 0 auto;
}

.bento-section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 3.5rem auto;
}

.bento-grid-wrapper {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
}

/* Bento Card Item Base */
.bento-card-item {
  position: relative;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(21, 57, 96, 0.08);
  box-shadow: 0 10px 30px -10px rgba(21, 57, 96, 0.06);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.bento-card-item::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: transparent;
  transition: background 0.35s ease;
}

.bento-card-item:hover {
  transform: translateY(-8px);
  border-color: rgba(232, 124, 36, 0.35);
  box-shadow: 0 20px 45px -12px rgba(21, 57, 96, 0.12);
}

.bento-card-item:hover::before {
  background: linear-gradient(90deg, #e87c24, #153960);
}

/* Layout Spans */
.bento-card-item.span-7 {
  grid-column: span 7;
}

.bento-card-item.span-5 {
  grid-column: span 5;
}

.bento-card-item.span-6 {
  grid-column: span 6;
}

/* Featured Card 1 Custom Gradient Tone */
.bento-card-item.featured-bento {
  background: linear-gradient(
    135deg,
    rgba(21, 57, 96, 0.03) 0%,
    rgba(232, 124, 36, 0.04) 100%
  );
  border: 1px solid rgba(232, 124, 36, 0.2);
}

.bento-icon-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.bento-icon-box {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    rgba(232, 124, 36, 0.12) 0%,
    rgba(21, 57, 96, 0.06) 100%
  );
  border: 1px solid rgba(232, 124, 36, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(232, 124, 36, 0.12);
}

.bento-icon-box.navy {
  background: linear-gradient(
    135deg,
    rgba(21, 57, 96, 0.12) 0%,
    rgba(232, 124, 36, 0.05) 100%
  );
  border-color: rgba(21, 57, 96, 0.2);
  box-shadow: 0 6px 16px rgba(21, 57, 96, 0.1);
}

.bento-tag {
  font-size: 0.82rem;
  font-weight: 800;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  background: rgba(21, 57, 96, 0.05);
  color: var(--primary-brand);
  border: 1px solid rgba(21, 57, 96, 0.09);
}

.bento-card-top h3 {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--primary-brand);
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.bento-card-top p {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.75rem;
}

/* Compare Pill Section */
.bento-compare-pill {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.85rem 1.1rem;
  border-radius: 16px;
  background: rgba(248, 250, 252, 0.9);
  border: 1px solid rgba(232, 124, 36, 0.18);
  margin-top: 0.5rem;
}

.vs-badge {
  font-size: 0.75rem;
  font-weight: 900;
  padding: 0.3rem 0.65rem;
  border-radius: 8px;
  background: var(--secondary-brand);
  color: #ffffff;
  white-space: nowrap;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 10px rgba(232, 124, 36, 0.25);
}

.vs-text {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary-brand);
  line-height: 1.4;
}

/* Responsive Grid */
@media (max-width: 992px) {
  .bento-card-item.span-7,
  .bento-card-item.span-5,
  .bento-card-item.span-6 {
    grid-column: span 12;
  }
}
.max-w-7xl {
    max-width: 100rem !important;
}
/* ==========================================
   Premium Light Luxury Accordion Showcase (UI/UX Pro Max)
   ========================================== */
.services-summary-section {
  padding: 2rem 2rem;
  position: relative;
  background: linear-gradient(180deg, #f8fafc 0%, rgba(21, 57, 96, 0.04) 100%);
  color: var(--primary-brand);
  overflow: hidden;
}

.services-summary-section::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(232, 124, 36, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.services-summary-section::after {
  content: "";
  position: absolute;
  bottom: -120px;
  left: -120px;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(21, 57, 96, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.interactive-accordion-wrapper {
  display: flex;
  flex-direction: row;
  gap: 1.25rem;
  height: 490px;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid rgba(21, 57, 96, 0.09);
  padding: 0.75rem;
  box-shadow: 0 20px 50px -15px rgba(21, 57, 96, 0.08);
}

.accordion-card-panel {
  position: relative;
  flex: 1;
  min-width: 85px;
  height: 100%;
  border-radius: 22px;
  background: rgba(248, 250, 252, 0.8);
  border: 1px solid rgba(21, 57, 96, 0.08);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
  cursor: pointer;
  overflow: hidden;
  transition:
    flex 0.55s cubic-bezier(0.25, 1, 0.5, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    background-color 0.35s ease;
  display: flex;
  flex-direction: column;
}

.accordion-card-panel:hover {
  border-color: rgba(232, 124, 36, 0.4);
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(21, 57, 96, 0.08);
}

.accordion-card-panel.active {
  flex: 4.8;
  background: #ffffff;
  border-color: rgba(232, 124, 36, 0.5);
  box-shadow: 0 18px 45px -10px rgba(21, 57, 96, 0.12);
  cursor: default;
}

.accordion-bg-gradient {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.accordion-card-panel.active .accordion-bg-gradient {
  opacity: 0.07;
}

.c-blue-grad {
  background: radial-gradient(circle at top left, #153960, transparent 70%);
}
.c-orange-grad {
  background: radial-gradient(circle at top left, #e87c24, transparent 70%);
}
.c-purple-grad {
  background: radial-gradient(circle at top left, #9333ea, transparent 70%);
}

.accordion-card-content {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Collapsed View */
.collapsed-vertical-view {
  position: absolute;
  inset: 0;
  padding: 2.25rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  opacity: 1;
  transition: opacity 0.3s ease 0.15s;
  pointer-events: none;
}

.accordion-card-panel.active .collapsed-vertical-view {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease 0s;
}

.vertical-card-num {
  font-family: var(--font-en);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--secondary-brand);
}

.vertical-card-title {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary-brand);
  white-space: nowrap;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.accordion-card-panel:hover .vertical-card-title {
  color: var(--secondary-brand);
}

.accordion-icon-badge {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(21, 57, 96, 0.05);
  border: 1px solid rgba(21, 57, 96, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  transition:
    transform 0.3s ease,
    background-color 0.3s ease;
}

.accordion-card-panel:hover .accordion-icon-badge {
  transform: scale(1.08);
  background: rgba(232, 124, 36, 0.12);
  border-color: rgba(232, 124, 36, 0.3);
}

.accordion-icon-badge.large {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: rgba(232, 124, 36, 0.1);
  border: 1px solid rgba(232, 124, 36, 0.25);
  box-shadow: 0 8px 20px rgba(232, 124, 36, 0.15);
}

/* Expanded View */
.expanded-rich-view {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
  pointer-events: none;
}

.accordion-card-panel.active .expanded-rich-view {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  transition:
    opacity 0.45s ease 0.2s,
    transform 0.45s ease 0.2s;
}

.accordion-expanded-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.expanded-badge-tag {
  font-size: 0.88rem;
  font-weight: 800;
  padding: 0.45rem 1.25rem;
  border-radius: 50px;
  background: rgba(21, 57, 96, 0.05);
  color: var(--primary-brand);
  border: 1px solid rgba(21, 57, 96, 0.1);
}

.accordion-expanded-body h3 {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--primary-brand);
  margin-bottom: 0.85rem;
  line-height: 1.3;
}

.accordion-expanded-body p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.75rem;
}

.expanded-features-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.expanded-features-pills span {
  font-size: 0.88rem;
  font-weight: 700;
  padding: 0.5rem 1.1rem;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid rgba(21, 57, 96, 0.08);
  color: var(--primary-brand);
}

.accordion-expanded-footer {
  border-top: 1px solid rgba(21, 57, 96, 0.08);
  padding: 0.75rem;
  display: flex;
  justify-content: flex-start;
}

/* Colorful Icon Palette */
.service-summary-icon.c-blue {
  background: rgba(37, 99, 235, 0.12);
  color: #2563eb;
}
.service-summary-icon.c-orange {
  background: rgba(232, 124, 36, 0.15);
  color: #e87c24;
}
.service-summary-icon.c-purple {
  background: rgba(147, 51, 234, 0.12);
  color: #9333ea;
}
.service-summary-icon.c-emerald {
  background: rgba(16, 185, 129, 0.15);
  color: #059669;
}
.service-summary-icon.c-rose {
  background: rgba(225, 29, 72, 0.12);
  color: #e11d48;
}
.service-summary-icon.c-navy {
  background: rgba(21, 57, 96, 0.12);
  color: #153960;
}
.service-summary-icon.c-indigo {
  background: rgba(79, 70, 229, 0.12);
  color: #4f46e5;
}
.service-summary-icon.c-violet {
  background: rgba(124, 58, 237, 0.12);
  color: #7c3aed;
}

.service-summary-card:hover .service-summary-icon.c-blue {
  background: #2563eb;
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.3);
}
.service-summary-card:hover .service-summary-icon.c-orange {
  background: #e87c24;
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(232, 124, 36, 0.3);
}
.service-summary-card:hover .service-summary-icon.c-purple {
  background: #9333ea;
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(147, 51, 234, 0.3);
}
.service-summary-card:hover .service-summary-icon.c-emerald {
  background: #059669;
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(5, 150, 105, 0.3);
}
.service-summary-card:hover .service-summary-icon.c-rose {
  background: #e11d48;
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(225, 29, 72, 0.3);
}
.service-summary-card:hover .service-summary-icon.c-navy {
  background: #153960;
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(21, 57, 96, 0.3);
}
.service-summary-card:hover .service-summary-icon.c-indigo {
  background: #4f46e5;
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(79, 70, 229, 0.3);
}
.service-summary-card:hover .service-summary-icon.c-violet {
  background: #7c3aed;
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(124, 58, 237, 0.3);
}

.service-summary-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-brand);
  margin-bottom: 0.6rem;
  transition: color 0.3s ease;
}

.service-summary-card:hover h3 {
  color: var(--secondary-brand);
}

.service-summary-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.service-card-link-lbl {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary-brand);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

@media (max-width: 992px) {
  .about-hero-container,
  .values-method-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .bento-grid-wrapper {
    grid-template-columns: 1fr;
  }
  .agency-comparison-banner {
    padding: 2rem 1.5rem;
  }
  .comparison-row-item {
    grid-template-columns: 1.2fr 1fr 1fr;
    font-size: 0.82rem;
    padding: 0.85rem 1rem;
  }
}

@media (max-width: 640px) {
  .about-hero {
    padding: 6.5rem 1rem 3.5rem 1rem;
  }
  .values-grid,
  .testimonials-grid-layout,
  .services-summary-grid {
    grid-template-columns: 1fr;
  }
  .comparison-row-item {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    text-align: center;
  }
  .comparison-row-item.header-row {
    display: none;
  }
}

/* ==========================================================================
   Responsive Why Choose Us Section (.why-us-card)
   ========================================================================== */
.why-us-card {
  position: relative;
  background: linear-gradient(135deg, #ffffff 0%, #fffbf8 100%);
  border: 1px solid rgba(232, 124, 36, 0.2);
  border-radius: 24px;
  padding: 2rem 2.4rem;
  box-shadow: 0 10px 30px rgba(232, 124, 36, 0.05);
  display: flex;
  align-items: center;
  gap: 2rem;
  transition: var(--transition-smooth);
  overflow: hidden;
}

.why-us-card.navy-border {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-color: rgba(21, 57, 96, 0.15);
  box-shadow: 0 10px 30px rgba(21, 57, 96, 0.04);
}

.why-us-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(21, 57, 96, 0.08);
}

.why-us-card-num {
  position: absolute;
  bottom: -15px;
  left: 20px;
  font-family: var(--font-en);
  font-size: 5rem;
  font-weight: 900;
  color: rgba(232, 124, 36, 0.04);
  user-select: none;
  pointer-events: none;
  line-height: 1;
}

.why-us-card.navy-border .why-us-card-num {
  color: rgba(21, 57, 96, 0.04);
}

.why-us-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    rgba(232, 124, 36, 0.15) 0%,
    rgba(232, 124, 36, 0.05) 100%
  );
  border: 1px solid rgba(232, 124, 36, 0.3);
  color: var(--secondary-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(232, 124, 36, 0.1);
}

.why-us-card.navy-border .why-us-card-icon {
  background: linear-gradient(
    135deg,
    rgba(21, 57, 96, 0.12) 0%,
    rgba(21, 57, 96, 0.04) 100%
  );
  border-color: rgba(21, 57, 96, 0.25);
  color: var(--primary-brand);
  box-shadow: 0 6px 16px rgba(21, 57, 96, 0.08);
}

.why-us-card-content {
  position: relative;
  z-index: 2;
  flex: 1;
  width: 100%;
}

.why-us-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
}

.why-us-card-title {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--primary-brand);
  margin: 0;
}

.why-us-card-badge {
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  background: rgba(232, 124, 36, 0.1);
  color: var(--secondary-brand);
  border: 1px solid rgba(232, 124, 36, 0.2);
  white-space: nowrap;
}

.why-us-card.navy-border .why-us-card-badge {
  background: rgba(21, 57, 96, 0.08);
  color: var(--primary-brand);
  border-color: rgba(21, 57, 96, 0.15);
}

.why-us-card-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0;
}

/* Mobile & Tablet Responsive Rules */
@media (max-width: 768px) {
  .why-us-card {
    padding: 1.5rem 1.4rem;
    gap: 1.25rem;
    border-radius: 20px;
  }

  .why-us-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

  .why-us-card-icon svg {
    width: 22px;
    height: 22px;
  }

  .why-us-card-title {
    font-size: 1.15rem;
  }

  .why-us-card-desc {
    font-size: 0.92rem;
    line-height: 1.65;
  }

  .why-us-card-num {
    font-size: 3.5rem;
    bottom: -10px;
    left: 10px;
  }
}

@media (max-width: 576px) {
  .why-us-card {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    gap: 0.75rem 1rem;
    padding: 1.25rem 1rem;
  }

  .why-us-card-icon {
    grid-column: 1;
    grid-row: 1;
    margin: 0;
  }

  .why-us-card-content {
    display: contents;
  }

  .why-us-card-header {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin: 0;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .why-us-card-title {
    font-size: 1.1rem;
  }

  .why-us-card-desc {
    grid-column: 1 / span 2;
    grid-row: 2;
    width: 100%;
    margin: 0;
  }
}

/* Process 6-Steps Grid (3 items side-by-side on large screens) */
.process-6steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  margin-bottom: 3.5rem;
}

@media (max-width: 991px) {
  .process-6steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.4rem;
  }
}

@media (max-width: 640px) {
  .process-6steps-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* ==========================================================================
   Signature Connected Journey Timeline (.journey-timeline-wrapper)
   ========================================================================== */
.journey-timeline-wrapper {
  position: relative;
  max-width: 1100px;
  margin: 0 auto 4rem auto;
  padding: 1rem 0;
}

/* Central Glowing Spine Line */
.journey-timeline-spine {
  position: absolute;
  top: 40px;
  bottom: 40px;
  right: 50%;
  transform: translateX(50%);
  width: 4px;
  background: linear-gradient(
    180deg,
    var(--secondary-brand) 0%,
    var(--primary-brand) 50%,
    var(--secondary-brand) 100%
  );
  border-radius: 4px;
  box-shadow: 0 0 16px rgba(232, 124, 36, 0.4);
  z-index: 1;
}

/* Individual Journey Node Item */
.journey-step-node {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  margin-bottom: 0.4rem;
  width: 100%;
}

.journey-step-node:last-child {
  margin-bottom: 0;
}

/* Alternate Left / Right sides (in RTL: right-node is right side) */
.journey-step-node.right-node {
  flex-direction: row;
}

.journey-step-node.left-node {
  flex-direction: row-reverse;
}

.journey-node-content {
  width: calc(50% - 45px);
  background: linear-gradient(135deg, #ffffff 0%, #fffbf8 100%);
  border: 1px solid rgba(232, 124, 36, 0.2);
  border-radius: 18px;
  padding: 0.9rem 1.25rem;
  box-shadow: 0 6px 20px rgba(232, 124, 36, 0.04);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.journey-step-node.left-node .journey-node-content {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-color: rgba(21, 57, 96, 0.18);
  box-shadow: 0 12px 35px rgba(21, 57, 96, 0.05);
}

.journey-node-content:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(21, 57, 96, 0.12);
}

/* Center Pulse Icon Ring */
.journey-center-ring {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #ffffff;
  border: 4px solid var(--secondary-brand);
  box-shadow: 0 0 22px rgba(232, 124, 36, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--secondary-brand);
  z-index: 3;
  margin: 0 20px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.journey-step-node.left-node .journey-center-ring {
  border-color: var(--primary-brand);
  color: var(--primary-brand);
  box-shadow: 0 0 22px rgba(21, 57, 96, 0.25);
}

.journey-step-node:hover .journey-center-ring {
  transform: scale(1.1);
}

/* Spacer for opposite side */
.journey-node-spacer {
  width: calc(50% - 45px);
}

/* Responsive Mobile / Tablet Behavior */
@media (max-width: 991px) {
  .journey-timeline-spine {
    right: 32px;
    transform: none;
  }

  .journey-step-node.right-node,
  .journey-step-node.left-node {
    flex-direction: row;
    justify-content: flex-start;
  }

  .journey-center-ring {
    margin: 0 0 0 18px;
    width: 54px;
    height: 54px;
    font-size: 1.1rem;
  }

  .journey-node-content {
    width: calc(100% - 85px);
    padding: 1.5rem 1.6rem;
  }

  .journey-node-spacer {
    display: none;
  }
}

@media (max-width: 576px) {
  .journey-timeline-spine {
    right: 22px;
  }

  .journey-center-ring {
    width: 44px;
    height: 44px;
    font-size: 0.95rem;
    margin-left: 12px;
  }

  .journey-node-content {
    width: calc(100% - 62px);
    padding: 1.25rem;
    border-radius: 18px;
  }
}
