:root {
  --bg-main: #F8FAFC;
  --bg-section: #F1F5F9;
  --bg-card: #FFFFFF;
  --text-main: #1E293B;
  --text-light: #ffffff;
  --text-muted: #64748B;
  --accent-yellow: #F5B301;
  --accent-yellow-soft: #FFE8A3;
  --border-light: #E2E8F0;
  --shadow-soft: 0 8px 24px rgba(15, 23, 42, 0.06);

  --bg: var(--bg-main);
  --surface: var(--bg-section);
  --surface-2: var(--bg-card);
  --border: var(--border-light);
  --text: var(--text-main);
  --muted: var(--text-muted);
  --accent: var(--accent-yellow);
  --accent-2: var(--accent-yellow-soft);
  --success: #25d366;
  --shadow: var(--shadow-soft);
  --radius: 18px;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: 'Readex Pro', 'Cairo', 'Tajawal', sans-serif;
  background:
    radial-gradient(900px 450px at 15% 15%, rgba(245, 179, 1, .10), transparent 62%),
    radial-gradient(800px 380px at 85% 18%, rgba(30, 41, 59, .06), transparent 58%),
    radial-gradient(700px 420px at 50% 92%, rgba(245, 179, 1, .07), transparent 62%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none
}

img {
  max-width: 100%;
  display: block
}

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

.section {
  padding: 74px 0
}

.section--tight {
  padding: 52px 0
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 250, 252, .78);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 200px
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background-image:
    url("../img/logo.png"),
    linear-gradient(135deg, var(--accent), var(--accent-2));
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain, cover;
  box-shadow: 0 10px 18px rgba(15, 23, 42, .08);
}

.brand-name {
  font-weight: 800;
  letter-spacing: .3px;
  font-family: 'Almarai', 'Cairo', sans-serif;
}

.brand-sub {
  font-size: 8px;
  color: var(--muted);
  margin-top: -6px;
  font-family: 'Readex Pro', 'Cairo', sans-serif;
}

.expert-brackets {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  direction: ltr;
  font-family: 'Readex Pro', 'Cairo', sans-serif;
}

.expert-brackets .bracket {
  font-size: 32px;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}

.expert-brackets .inner-code {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.expert-brackets .inner-code .dot {
  width: 6px;
  height: 6px;
  background-color: var(--accent-yellow);
  border-radius: 50%;
}

.expert-brackets .inner-code .line {
  width: 6px;
  height: 20px;
  background-color: var(--accent-yellow);
  border-radius: 4px;
}

.expert-brackets--pulse .inner-code {
  animation: ecPulse 1.8s infinite ease-in-out
}

.expert-brackets--lg .bracket {
  font-size: 64px;
  font-weight: 600
}

.expert-brackets--lg .inner-code .line {
  height: 24px
}

@keyframes ecPulse {
  0% {
    transform: scale(1);
    opacity: 1
  }

  50% {
    transform: scale(1.1);
    opacity: .8
  }

  100% {
    transform: scale(1);
    opacity: 1
  }
}

@media (prefers-reduced-motion: reduce) {
  .expert-brackets--pulse .inner-code {
    animation: none
  }
}

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

.nav-links a {
  font-size: 14px;
  color: var(--muted);
  padding: 10px 10px;
  border-radius: 12px;
  transition: background .2s ease, color .2s ease, transform .2s ease;
  font-family: 'Almarai', 'Cairo', sans-serif;
  font-weight: 500;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, .06);
  color: var(--text)
}

.nav-links a.is-active {
  color: var(--text);
  background: rgb(245 183 13 / 19%)
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, .72);
  color: var(--text);
  font-weight: 650;
  font-size: 14px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  cursor: pointer;
  font-family: 'Almarai', 'Cairo', sans-serif;
}

.btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, .9)
}

.btn:active {
  transform: translateY(0)
}

.btn--primary {
  border-color: rgba(245, 179, 1, .55);
  background: linear-gradient(180deg, rgba(245, 179, 1, 1), rgba(255, 232, 163, 1));
  color: var(--text-main);
}

.btn--primary:hover {
  box-shadow: 0 12px 26px rgba(245, 179, 1, .18)
}

.btn--ghost {
  background: transparent
}

.icon-btn {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, .72);
  cursor: pointer;
}

.mobile-toggle {
  display: none
}

.hero {
  padding: 56px 0 18px
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 26px;
  align-items: stretch;
}

.hero-card {
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, .92));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 34px;
  position: relative;
  overflow: hidden;
}

.hero-card:before {
  content: "";
  position: absolute;
  inset: -120px -120px auto auto;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(245, 179, 1, .18), transparent 60%);
  transform: rotate(25deg);
}

.kicker {
  color: var(--text-muted);
  font-size: 13px;
  letter-spacing: .2px;
  font-family: 'Readex Pro', 'Cairo', sans-serif;
  font-weight: 500;
}

.h1 {
  font-size: 44px;
  line-height: 1.15;
  margin: 12px 0 12px;
  font-weight: 900;
  font-family: 'Readex Pro', 'Cairo', 'Tajawal', sans-serif;
}

.lead {
  color: var(--muted);
  font-size: 16px;
  margin: 0 0 18px;
  max-width: 54ch;
  font-family: 'Readex Pro', 'Cairo', sans-serif;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px
}

.hero-aside {
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(241, 245, 249, 1), rgba(248, 250, 252, .92));
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px
}

.stat {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 1);
  border-radius: 16px;
  padding: 14px;
}

.stat strong {
  font-size: 18px;
  display: block;
  font-family: 'Readex Pro', 'Cairo', sans-serif;
  font-weight: 700;
}

.stat span {
  font-size: 12px;
  color: var(--muted);
  font-family: 'Almarai', 'Cairo', sans-serif;
}

.badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px
}

.badge {
  font-size: 12px;
  color: var(--text-muted);
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, .8);
  font-family: 'Almarai', 'Cairo', sans-serif;
  font-weight: 500;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px
}

.card {
  border: 1px solid var(--border);
  background: var(--bg-card);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow-soft);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 179, 1, .35)
}

.card-title {
  font-weight: 800;
  margin: 6px 0 6px;
  font-family: 'Readex Pro', 'Cairo', 'Tajawal', sans-serif;
}

.card-text {
  color: var(--muted);
  margin: 0;
  font-size: 14px;
  font-family: 'Readex Pro', 'Cairo', sans-serif;
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(245, 179, 1, .22), rgba(255, 232, 163, .45));
  border: 1px solid rgba(245, 179, 1, .25);
}

.section-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px
}

.section-title h2 {
  margin: 0;
  font-size: 26px;
  line-height: 1.25;
  font-family: 'Readex Pro', 'Cairo', 'Tajawal', sans-serif;
  font-weight: 800;
}

.section-title p {
  margin: 0;
  color: var(--muted);
  max-width: 62ch;
  font-family: 'Readex Pro', 'Cairo', sans-serif;
}

.numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px
}

.number {
  border: 1px solid var(--border);
  background: var(--bg-card);
  border-radius: 18px;
  padding: 18px;
}

.number strong {
  font-size: 26px;
  display: block;
  margin-bottom: 2px;
  font-family: 'Readex Pro', 'Cairo', sans-serif;
  font-weight: 700;
}

.number span {
  font-size: 13px;
  color: var(--muted);
  font-family: 'Almarai', 'Cairo', sans-serif;
}

.slider {
  position: relative;
  border: 1px solid var(--border);
  background: var(--bg-card);
  border-radius: 18px;
  overflow: hidden;
}

.slider-track {
  display: flex;
  transition: transform .35s ease;
  will-change: transform
}

.slide {
  min-width: 100%;
  padding: 22px
}

.quote {
  color: var(--text);
  font-size: 15px;
  margin: 0 0 12px;
  font-family: 'Readex Pro', 'Cairo', sans-serif;
  line-height: 1.7;
}

.quote-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
  font-family: 'Almarai', 'Cairo', sans-serif;
}

.stars {
  letter-spacing: 1px;
  color: var(--accent-yellow)
}

.slider-controls {
  position: absolute;
  inset: auto 12px 12px 12px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.form {
  display: grid;
  gap: 16px;
  font-family: 'Readex Pro', 'Cairo', sans-serif;
}

.field {
  display: grid;
  gap: 8px
}

.label {
  font-size: 13px;
  color: var(--text-muted)
}

.input,
.select,
.textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text);
  padding: 12px 14px;
  font-size: 14px;
  outline: none;
  transition: border-color .2s ease, background .2s ease;
}

.input:focus,
.select:focus,
.textarea:focus {
  border-color: rgba(245, 179, 1, .55);
  background: var(--bg-card)
}

.textarea {
  min-height: 140px;
  resize: vertical
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px
}

.muted {
  color: var(--muted)
}

.footer {
  border-top: 1px solid var(--border);
  background: var(--bg-section);
  padding: 50px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 18px
}

.footer h3 {
  margin: 0 0 12px;
  font-size: 16px
}

.footer a {
  color: var(--muted)
}

.footer a:hover {
  color: var(--text)
}

.footer p {
  margin: 0;
  color: var(--muted);
  font-size: 14px
}

.footer-bottom {
  border-top: 1px solid var(--border);
  margin-top: 24px;
  padding-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 13px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, .9);
}

.map-placeholder {
  height: 280px;
  border-radius: 18px;
  border: 1px dashed var(--border-light);
  background: linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(241, 245, 249, 1));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}

.page-head {
  padding: 44px 0 14px
}

.page-head h1 {
  margin: 0 0 10px;
  font-size: 34px;
  line-height: 1.2;
  font-family: 'Readex Pro', 'Cairo', 'Tajawal', sans-serif;
  font-weight: 900;
}

.page-head p {
  margin: 0;
  color: var(--muted);
  max-width: 76ch;
  font-family: 'Readex Pro', 'Cairo', sans-serif;
}

.ec-intro {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #F1F5F9;
  direction: ltr;
  display: grid;
  place-items: center;
  pointer-events: auto;
}

.ec-intro__bg {
  position: absolute;
  inset: 0;
  overflow: hidden
}

.ec-intro__panel {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%
}

.ec-intro__panel--left {
  left: 0;
  background: #EEF2FF;
  transform: scaleX(0);
  transform-origin: center
}

.ec-intro__panel--right {
  right: 0;
  background: #F8FAFC;
  transform: scaleX(0);
  transform-origin: center
}

.ec-intro__centerline {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(245, 179, 1, 0), rgba(245, 179, 1, .92), rgba(245, 179, 1, 0));
  box-shadow: 0 0 22px rgba(245, 179, 1, .22);
  opacity: 0;
}

.ec-intro__content {
  position: relative;
  width: min(1100px, calc(100% - 40px));
}

.ec-intro__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: center
}

.ec-intro__col {
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center
}

.ec-intro__stack {
  display: grid;
  gap: 12px;
  justify-items: center
}

.ec-intro__item {
  opacity: 0;
  transform: translateY(10px);
  font-size: 22px;
  letter-spacing: .2px;
  color: var(--text-main);
  text-shadow: 0 10px 26px rgba(15, 23, 42, .10);
  filter: blur(0px);
}

.ec-intro__item--code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace
}

.ec-intro__item--design {
  font-family: 'Readex Pro', 'Cairo', sans-serif;
}

.ec-intro__logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(.96);
  display: flex;
  align-items: baseline;
  gap: 12px;
  opacity: 0;
  white-space: nowrap;
}

.ec-intro__braces {
  width: 46px;
  height: 46px;
  display: inline-block;
  background-image: url("../img/logo.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  color: transparent;
  text-shadow: none;
}

.ec-intro__word {
  font-weight: 900;
  letter-spacing: 2px;
  font-size: 34px;
  color: var(--text-main);
  font-family: 'Readex Pro', 'Cairo', 'Tajawal', sans-serif;
}

.ec-intro__word--thin {
  font-weight: 700;
  opacity: .92;
  font-family: 'Readex Pro', 'Cairo', sans-serif;
}

.ec-intro--ending {
  pointer-events: none
}

@media (max-width:980px) {
  .hero-grid {
    grid-template-columns: 1fr
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr)
  }

  .numbers {
    grid-template-columns: repeat(2, 1fr)
  }

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

@media (max-width:720px) {
  .container {
    width: min(1160px, calc(100% - 32px))
  }

  .nav {
    height: auto;
    padding: 14px 0
  }

  .brand {
    min-width: auto
  }

  .mobile-toggle {
    display: inline-flex
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    margin-top: 12px
  }

  .nav-links.is-open {
    display: flex
  }

  .nav-links a {
    padding: 12px 12px
  }

  .nav {
    flex-wrap: wrap
  }

  .h1 {
    font-size: 34px
  }

  .hero-card {
    padding: 22px
  }

  .hero-aside {
    padding: 18px
  }

  .grid-4 {
    grid-template-columns: 1fr
  }

  .grid-3 {
    grid-template-columns: 1fr
  }

  .grid-2 {
    grid-template-columns: 1fr
  }

  .split {
    grid-template-columns: 1fr
  }
}

/* Creative Slider Styles */
.creative-slider {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #334155 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.creative-slider__container {
  width: 100%;
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.creative-slider__slides {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.creative-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.creative-slide--active {
  opacity: 1;
  visibility: visible;
}

.creative-slide__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1160px;
  width: 100%;
  padding: 0 40px;
  direction: rtl;
}

.creative-slide__visual {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.creative-slide__text {
  text-align: right;
  color: #FFFFFF;
}

.creative-slide__title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  margin: 0 0 16px 0;
  background: linear-gradient(135deg, #FFFFFF 0%, #F5B301 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
  font-family: 'Readex Pro', 'Cairo', 'Tajawal', sans-serif;
  line-height: 1.1;
}

.creative-slide__subtitle {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 600;
  color: #F5B301;
  margin: 0 0 20px 0;
  opacity: 0.9;
  font-family: 'Almarai', 'Cairo', sans-serif;
  letter-spacing: 0.02em;
}

.creative-slide__desc {
  font-size: clamp(16px, 1.8vw, 18px);
  font-weight: 400;
  color: #CBD5E1;
  margin: 0 0 32px 0;
  line-height: 1.6;
  font-family: 'Readex Pro', 'Cairo', sans-serif;
}

.creative-slide__cta {
  font-family: 'Almarai', 'Cairo', sans-serif;
  font-weight: 700;
  background: linear-gradient(135deg, #F5B301 0%, #F59E0B 100%);
  color: #0F172A;
  border: none;
  padding: 16px 32px;
  font-size: 16px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(245, 179, 1, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.creative-slide__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(245, 179, 1, 0.4);
}

/* Slide 1: Code Innovation Elements */
.code-matrix {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 24px;
  font-weight: 700;
  color: #F5B301;
  text-align: center;
}

.code-line {
  opacity: 0;
  transform: translateX(-20px);
}

.floating-elements {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
}

.element {
  position: absolute;
  background: linear-gradient(135deg, #F5B301, #F59E0B);
  border-radius: 50%;
  opacity: 0;
}

.element--1 {
  width: 60px;
  height: 60px;
  top: 20%;
  left: 10%;
}

.element--2 {
  width: 40px;
  height: 40px;
  top: 60%;
  right: 20%;
}

.element--3 {
  width: 80px;
  height: 80px;
  bottom: 20%;
  left: 30%;
}

/* Slide 2: Design Elements */
.design-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 200px;
  height: 200px;
}

.grid-item {
  background: linear-gradient(135deg, rgba(245, 179, 1, 0.2), rgba(245, 179, 1, 0.1));
  border: 2px solid #F5B301;
  border-radius: 12px;
  opacity: 0;
}

.geometric-shapes {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 250px;
  height: 250px;
}

.shape {
  position: absolute;
  opacity: 0;
}

.shape--circle {
  width: 60px;
  height: 60px;
  background: #F5B301;
  border-radius: 50%;
  top: 10%;
  right: 10%;
}

.shape--square {
  width: 50px;
  height: 50px;
  background: #F59E0B;
  border-radius: 8px;
  bottom: 20%;
  left: 15%;
}

.shape--triangle {
  width: 0;
  height: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-bottom: 52px solid #F5B301;
  top: 50%;
  left: 50%;
}

/* Slide 3: Performance Elements */
.performance-chart {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  height: 200px;
}

.chart-bar {
  width: 40px;
  background: linear-gradient(to top, #F5B301, #F59E0B);
  border-radius: 8px 8px 0 0;
  opacity: 0;
  transform: scaleY(0);
  transform-origin: bottom;
}

.bar--1 {
  height: 60%
}

.bar--2 {
  height: 80%
}

.bar--3 {
  height: 100%
}

.bar--4 {
  height: 70%
}

.data-points {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
}

.point {
  position: absolute;
  width: 12px;
  height: 12px;
  background: #F5B301;
  border-radius: 50%;
  opacity: 0;
}

.point--a {
  top: 20%;
  left: 30%
}

.point--b {
  top: 50%;
  right: 25%
}

.point--c {
  bottom: 30%;
  left: 50%
}

/* Slide 4: Growth Elements */
.growth-graph {
  position: relative;
  width: 250px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.graph-line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #F5B301, #F59E0B);
  transform: scaleX(0);
  transform-origin: left;
}

.graph-dots {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}

.dot {
  width: 16px;
  height: 16px;
  background: #F5B301;
  border-radius: 50%;
  opacity: 0;
  transform: scale(0);
}

.dot--1 {
  position: relative;
}

.dot--2 {
  position: relative;
}

.dot--3 {
  position: relative;
}

.success-metrics {
  position: absolute;
  top: 20px;
  right: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.metric {
  font-size: 28px;
  font-weight: 900;
  color: #F5B301;
  opacity: 0;
  transform: rotate(-10deg) scale(0.5);
  background: linear-gradient(135deg, rgba(245, 179, 1, 0.15), rgba(245, 179, 1, 0.05));
  border: 2px solid #F5B301;
  border-radius: 12px;
  padding: 12px 16px;
  text-align: center;
  min-width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(245, 179, 1, 0.2);
  backdrop-filter: blur(10px);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  letter-spacing: -0.02em;
  line-height: 1;
}

/* Slide 5: Vision Elements */
.vision-orb {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orb-core {
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, #F5B301, #F59E0B);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0);
}

.orb-ring {
  position: absolute;
  border: 3px solid #F5B301;
  border-radius: 50%;
  opacity: 0;
}

.ring--1 {
  width: 120px;
  height: 120px;
}

.ring--2 {
  width: 160px;
  height: 160px;
}

.ring--3 {
  width: 200px;
  height: 200px;
}

.tech-particles {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
}

.particle {
  position: absolute;
  width: 8px;
  height: 8px;
  background: #F5B301;
  border-radius: 50%;
  opacity: 0;
}

.particle--1 {
  top: 10%;
  left: 20%
}

.particle--2 {
  top: 30%;
  right: 15%
}

.particle--3 {
  bottom: 25%;
  left: 30%
}

.particle--4 {
  bottom: 10%;
  right: 25%
}

/* Slider Controls */
.creative-slider__controls {
  position: absolute;
  top: 50%;
  left: 40px;
  right: 40px;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  z-index: 10;
  pointer-events: none;
}

.creative-slider__arrow {
  width: 56px;
  height: 56px;
  background: rgba(245, 179, 1, 0.1);
  border: 2px solid #F5B301;
  border-radius: 50%;
  color: #F5B301;
  font-size: 24px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  backdrop-filter: blur(10px);
}

.creative-slider__arrow:hover {
  background: rgba(245, 179, 1, 0.2);
  transform: scale(1.1);
}

.creative-slider__arrow--prev span {
  display: inline-block;
}

/* Slider Dots */
.creative-slider__dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.creative-slider__dot {
  width: 12px;
  height: 12px;
  background: rgba(245, 179, 1, 0.3);
  border: 2px solid #F5B301;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.creative-slider__dot--active {
  background: #F5B301;
  width: 32px;
  border-radius: 6px;
}

.creative-slider__dot:hover {
  background: rgba(245, 179, 1, 0.6);
}

/* Progress Bar */
.creative-slider__progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(245, 179, 1, 0.2);
  z-index: 10;
}

.creative-slider__progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #F5B301, #F59E0B);
  width: 0%;
  transition: width 0.1s linear;
}

/* Responsive Design */
@media (max-width:980px) {
  .creative-slide__content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .creative-slide__text {
    text-align: center;
  }

  .creative-slide__visual {
    height: 400px;
  }

  .creative-slider__controls {
    left: 20px;
    right: 20px;
  }

  .success-metrics {
    position: relative;
    top: auto;
    right: auto;
    justify-content: center;
    margin-top: 20px;
  }

  .metric {
    font-size: 24px;
    min-width: 50px;
    height: 50px;
    padding: 10px 12px;
  }
}

@media (max-width:720px) {
  .creative-slider {
    min-height: 80vh;
  }

  .creative-slider__container {
    height: 80vh;
  }

  .creative-slide__content {
    padding: 0 20px;
    gap: 30px;
  }

  .creative-slide__visual {
    height: 300px;
  }

  .creative-slide__title {
    font-size: 32px;
  }

  .creative-slide__subtitle {
    font-size: 20px;
  }

  .creative-slider__arrow {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  .creative-slider__controls {
    left: 15px;
    right: 15px;
  }

  .creative-slider__dots {
    bottom: 30px;
    gap: 8px;
  }

  .creative-slider__dot {
    width: 10px;
    height: 10px;
  }

  .creative-slider__dot--active {
    width: 24px;
  }

  .success-metrics {
    gap: 12px;
    margin-top: 15px;
  }

  .metric {
    font-size: 20px;
    min-width: 45px;
    height: 45px;
    padding: 8px 10px;
  }
}

@media (max-width:480px) {
  .creative-slider {
    min-height: 100vh;
  }

  .creative-slider__container {
    height: 100vh;
  }

  .creative-slide__visual {
    height: 250px;
  }

  .code-matrix {
    font-size: 20px;
  }

  .design-grid {
    width: 150px;
    height: 150px;
  }

  .performance-chart {
    height: 150px;
  }

  .chart-bar {
    width: 30px;
  }

  .vision-orb {
    width: 150px;
    height: 150px;
  }

  .orb-core {
    width: 60px;
    height: 60px;
  }

  .ring--1 {
    width: 90px;
    height: 90px;
  }

  .ring--2 {
    width: 120px;
    height: 120px;
  }

  .ring--3 {
    width: 150px;
    height: 150px;
  }
}

/* Services Section Styles */
.services-section {
  padding: 80px 0;
  background: var(--bg-main);
}

.services-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.services-kicker {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  font-family: 'Almarai', 'Cairo', sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
}

.services-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  color: var(--text-main);
  margin: 0 0 20px 0;
  font-family: 'Readex Pro', 'Cairo', 'Tajawal', sans-serif;
  line-height: 1.1;
}

.services-desc {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
  font-family: 'Readex Pro', 'Cairo', sans-serif;
}

/* Service Lanes */
.services-lanes {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto 60px;
}

.service-lane {
  background: var(--bg-lane, #FFFFFF);
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
  overflow: hidden;
  transition: all 0.4s ease-out;
}

.service-lane:hover {
  background: var(--bg-lane-hover, #F1F5F9);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1);
  transform: translateY(-2px);
}

.service-lane__header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  cursor: pointer;
  position: relative;
  user-select: none;
}

.service-lane__header::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--accent-yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease-out;
}

.service-lane:hover .service-lane__header::before,
.service-lane.is-active .service-lane__header::before {
  transform: scaleX(1);
}

.service-lane__icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(245, 179, 1, 0.1), rgba(245, 179, 1, 0.05));
  border: 1px solid rgba(245, 179, 1, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-yellow);
  flex-shrink: 0;
}

.service-lane__title {
  flex: 1;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-main);
  font-family: 'Almarai', 'Cairo', sans-serif;
  margin: 0;
}

.service-lane__chevron {
  color: var(--text-muted);
  transition: transform 0.4s ease-out;
  flex-shrink: 0;
}

.service-lane.is-active .service-lane__chevron {
  transform: rotate(90deg);
}

.service-lane__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.service-lane.is-active .service-lane__content {
  max-height: 200px;
  padding: 0 24px 24px 24px;
}

.service-lane__details {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.service-detail-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-muted);
  font-family: 'Readex Pro', 'Cairo', sans-serif;
}

.service-detail-icon {
  font-size: 16px;
}

.service-detail-text {
  font-weight: 500;
}

/* Services CTA */
.services-cta {
  text-align: center;
}

.services-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-yellow);
  color: var(--text-main);
  padding: 16px 32px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  font-family: 'Almarai', 'Cairo', sans-serif;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(245, 179, 1, 0.2);
}

.services-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 179, 1, 0.3);
  background: #F59E0B;
}

/* Responsive Design */
@media (max-width:768px) {
  .services-section {
    padding: 60px 0;
  }

  .services-header {
    margin-bottom: 40px;
  }

  .services-title {
    font-size: 32px;
  }

  .services-desc {
    font-size: 16px;
  }

  .service-lane__header {
    padding: 20px;
    gap: 12px;
  }

  .service-lane__icon {
    width: 40px;
    height: 40px;
  }

  .service-lane__title {
    font-size: 16px;
  }

  .service-lane__details {
    gap: 16px;
  }

  .service-detail-item {
    font-size: 13px;
  }

  .services-cta-btn {
    padding: 14px 24px;
    font-size: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .creative-slide {
    transition: none;
  }

  .creative-slider__arrow,
  .creative-slider__dot,
  .creative-slider__cta {
    transition: none;
  }

  .creative-slider__progress-bar {
    transition: none;
  }
}

/* Testimonials Section Styles */
.testimonials-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
  position: relative;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-yellow), transparent);
  opacity: 0.3;
}

.testimonials-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.testimonials-kicker {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  font-family: 'Almarai', 'Cairo', sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
}

.testimonials-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  color: var(--text-main);
  margin: 0 0 20px 0;
  font-family: 'Readex Pro', 'Cairo', 'Tajawal', sans-serif;
  line-height: 1.1;
}

.testimonials-desc {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
  font-family: 'Readex Pro', 'Cairo', sans-serif;
}

/* Testimonials Grid */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}

.testimonial-card {
  background: var(--bg-card);
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-yellow), #F59E0B);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.12);
}

.testimonial-card:hover::before {
  transform: translateX(0);
}

.testimonial-card__inner {
  padding: 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.testimonial-card__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

/* Avatar Styles */
.testimonial-avatar {
  position: relative;
  width: 64px;
  height: 64px;
  flex-shrink: 0;
}

.avatar-inner {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--accent-yellow), #F59E0B);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  font-size: 24px;
  font-weight: 700;
  font-family: 'Readex Pro', 'Cairo', sans-serif;
  position: relative;
  z-index: 2;
}

.avatar-ring {
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border: 2px solid rgba(245, 179, 1, 0.2);
  border-radius: 50%;
  animation: avatarPulse 3s infinite ease-in-out;
}

@keyframes avatarPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.05);
    opacity: 0.7;
  }
}

/* Testimonial Meta */
.testimonial-meta {
  flex: 1;
}

.testimonial-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 4px;
  font-family: 'Almarai', 'Cairo', sans-serif;
}

.testimonial-role {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 8px;
  font-family: 'Readex Pro', 'Cairo', sans-serif;
}

.testimonial-rating {
  display: flex;
  gap: 2px;
}

.star {
  color: var(--accent-yellow);
  font-size: 16px;
  font-weight: 700;
}

/* Testimonial Content */
.testimonial-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.testimonial-quote {
  position: relative;
  margin-bottom: 20px;
  flex: 1;
}

.quote-icon {
  position: absolute;
  top: 0;
  right: 0;
  color: rgba(245, 179, 1, 0.1);
  width: 20px;
  height: 20px;
  transform: rotate(180deg);
}

.quote-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-main);
  margin: 0;
  font-family: 'Readex Pro', 'Cairo', sans-serif;
  position: relative;
  padding-right: 28px;
}

.testimonial-project {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.project-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  font-family: 'Almarai', 'Cairo', sans-serif;
}

.project-name {
  font-size: 14px;
  color: var(--accent-yellow);
  font-weight: 600;
  font-family: 'Readex Pro', 'Cairo', sans-serif;
}

/* Testimonials CTA */
.testimonials-cta {
  text-align: center;
}

.testimonials-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--accent-yellow), #F59E0B);
  color: var(--text-main);
  padding: 16px 32px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  font-family: 'Almarai', 'Cairo', sans-serif;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(245, 179, 1, 0.25);
}

.testimonials-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 179, 1, 0.35);
}

/* Testimonials Responsive Design */
@media (max-width:768px) {
  .testimonials-section {
    padding: 60px 0;
  }

  .testimonials-header {
    margin-bottom: 40px;
  }

  .testimonials-title {
    font-size: 32px;
  }

  .testimonials-desc {
    font-size: 16px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .testimonial-card__inner {
    padding: 24px;
  }

  .testimonial-avatar {
    width: 56px;
    height: 56px;
  }

  .avatar-inner {
    font-size: 20px;
  }

  .testimonial-name {
    font-size: 16px;
  }

  .testimonial-role {
    font-size: 13px;
  }

  .quote-text {
    font-size: 15px;
  }

  .testimonials-cta-btn {
    padding: 14px 24px;
    font-size: 14px;
  }
}

@media (max-width:480px) {
  .testimonial-card__inner {
    padding: 20px;
  }

  .testimonial-avatar {
    width: 48px;
    height: 48px;
  }

  .avatar-inner {
    font-size: 18px;
  }

  .quote-text {
    font-size: 14px;
    line-height: 1.6;
  }
}

/* Tools Grid Styles */
.tools-grid {
  padding: 60px 0;
  background: var(--bg-main);
}

.category-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-main);
  margin: 40px 0 24px 0;
  font-family: 'Almarai', 'Cairo', sans-serif;
  text-align: center;
  position: relative;
}

.category-title:first-child {
  margin-top: 0;
}

.category-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-yellow), #F59E0B);
  border-radius: 2px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.tool-card {
  background: var(--bg-card);
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.tool-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-yellow), #F59E0B);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.tool-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.1);
}

.tool-card:hover::before {
  transform: translateX(0);
}

.tool-icon {
  font-size: 48px;
  margin-bottom: 16px;
  display: block;
  line-height: 1;
}

.tool-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-main);
  margin: 0 0 12px 0;
  font-family: 'Almarai', 'Cairo', sans-serif;
}

.tool-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0 0 20px 0;
  font-family: 'Readex Pro', 'Cairo', sans-serif;
  min-height: 48px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-yellow);
  color: var(--text-main);
  padding: 12px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  font-family: 'Almarai', 'Cairo', sans-serif;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: #F59E0B;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(245, 179, 1, 0.3);
}

.mt-md {
  margin-top: 20px;
}

/* Fade-in Animation */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Tools Responsive Design */
@media (max-width:768px) {
  .tools-grid {
    padding: 40px 0;
  }

  .category-title {
    font-size: 24px;
    margin: 32px 0 20px 0;
  }

  .cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 32px;
  }

  .tool-card {
    padding: 24px 20px;
  }

  .tool-icon {
    font-size: 40px;
    margin-bottom: 12px;
  }

  .tool-card h3 {
    font-size: 18px;
  }

  .tool-card p {
    font-size: 13px;
    min-height: 40px;
  }

  .btn-primary {
    padding: 10px 20px;
    font-size: 13px;
  }
}

@media (max-width:480px) {
  .tool-card {
    padding: 20px 16px;
  }

  .tool-icon {
    font-size: 36px;
  }

  .tool-card h3 {
    font-size: 16px;
  }

  .tool-card p {
    font-size: 12px;
    line-height: 1.5;
  }
}

/* Services Page Modern Styles */
.services-hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  opacity: 0.1;
}

.tech-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(245, 179, 1, 0.1) 1px, transparent 1px),
    linear-gradient(0deg, rgba(245, 179, 1, 0.1) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridMove 25s linear infinite;
}

@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(60px, 60px);
  }
}

.flowing-lines {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.flowing-lines::before,
.flowing-lines::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 100px;
  background: linear-gradient(180deg, transparent, var(--accent-yellow), transparent);
  animation: flowDown 8s linear infinite;
}

.flowing-lines::before {
  left: 20%;
  animation-delay: 0s;
}

.flowing-lines::after {
  right: 20%;
  animation-delay: 4s;
}

@keyframes flowDown {
  0% {
    transform: translateY(-100px);
  }

  100% {
    transform: translate(calc(100vh + 100px));
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

/* Services Navigator */
.services-navigator {
  padding: 80px 0;
  background: var(--bg-main);
  position: relative;
}

.navigator-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.service-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem 2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 140px;
}

.service-tab:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.service-tab.active {
  background: var(--accent-yellow);
  color: var(--text-main);
  border-color: var(--accent-yellow);
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(245, 179, 1, 0.3);
}

.tab-icon {
  font-size: 2rem;
}

.service-tab span {
  font-size: 0.9rem;
  font-weight: 600;
  font-family: 'Almarai', 'Cairo', sans-serif;
}

/* Service Details Container */
.service-details-container {
  position: relative;
  min-height: 600px;
}

.service-detail {
  display: none;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.service-detail.active {
  display: grid;
  opacity: 1;
  transform: translateY(0);
}

/* Service Visual */
.service-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.service-icon-large {
  font-size: 6rem;
  z-index: 2;
  position: relative;
  filter: drop-shadow(0 0 30px rgba(245, 179, 1, 0.3));
}

.service-animation {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Personal Service Animation */
.floating-elements {
  position: relative;
  width: 300px;
  height: 300px;
}

.element {
  position: absolute;
  width: 60px;
  height: 60px;
  background: rgba(245, 179, 1, 0.2);
  border-radius: 50%;
  border: 2px solid var(--accent-yellow);
}

.element-1 {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  animation: float1 4s ease-in-out infinite;
}

.element-2 {
  bottom: 20px;
  right: 0;
  animation: float2 4s ease-in-out infinite 1s;
}

.element-3 {
  bottom: 20px;
  left: 0;
  animation: float3 4s ease-in-out infinite 2s;
}

@keyframes float1 {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(-20px);
  }
}

@keyframes float2 {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(10px, -15px);
  }
}

@keyframes float3 {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(-10px, -15px);
  }
}

/* Corporate Service Animation */
.building-blocks {
  position: relative;
  width: 250px;
  height: 250px;
}

.block {
  position: absolute;
  background: rgba(245, 179, 1, 0.2);
  border: 2px solid var(--accent-yellow);
  border-radius: 8px;
}

.block-1 {
  width: 80px;
  height: 100px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  animation: grow1 3s ease-in-out infinite;
}

.block-2 {
  width: 60px;
  height: 80px;
  bottom: 100px;
  left: 30%;
  animation: grow2 3s ease-in-out infinite 0.5s;
}

.block-3 {
  width: 50px;
  height: 60px;
  bottom: 100px;
  right: 30%;
  animation: grow3 3s ease-in-out infinite 1s;
}

@keyframes grow1 {

  0%,
  100% {
    height: 100px;
  }

  50% {
    height: 120px;
  }
}

@keyframes grow2 {

  0%,
  100% {
    height: 80px;
  }

  50% {
    height: 100px;
  }
}

@keyframes grow3 {

  0%,
  100% {
    height: 60px;
  }

  50% {
    height: 80px;
  }
}

/* Tourism Service Animation */
.travel-elements {
  position: relative;
  width: 300px;
  height: 300px;
}

.plane {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  background: var(--accent-yellow);
  border-radius: 4px;
  transform: translate(-50%, -50%) rotate(45deg);
  animation: fly 6s linear infinite;
}

.location-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--accent-yellow);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(245, 179, 1, 0.5);
}

.dot-1 {
  top: 20%;
  left: 20%;
}

.dot-2 {
  top: 70%;
  right: 25%;
}

.dot-3 {
  bottom: 20%;
  left: 60%;
}

@keyframes fly {
  0% {
    transform: translate(-50%, -50%) rotate(45deg) translateX(0);
  }

  25% {
    transform: translate(-50%, -50%) rotate(45deg) translateX(80px);
  }

  50% {
    transform: translate(-50%, -50%) rotate(45deg) translateX(0);
  }

  75% {
    transform: translate(-50%, -50%) rotate(45deg) translateX(-80px);
  }

  100% {
    transform: translate(-50%, -50%) rotate(45deg) translateX(0);
  }
}

/* Sales Service Animation */
.chart-bars {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 15px;
}

.bar {
  width: 30px;
  background: linear-gradient(180deg, var(--accent-yellow), rgba(245, 179, 1, 0.3));
  border-radius: 4px 4px 0 0;
  animation: growBar 2s ease-in-out infinite;
}

.bar-1 {
  height: 120px;
  animation-delay: 0s;
}

.bar-2 {
  height: 80px;
  animation-delay: 0.3s;
}

.bar-3 {
  height: 150px;
  animation-delay: 0.6s;
}

.bar-4 {
  height: 100px;
  animation-delay: 0.9s;
}

@keyframes growBar {

  0%,
  100% {
    transform: scaleY(1);
  }

  50% {
    transform: scaleY(0.7);
  }
}

/* Service Content */
.service-content {
  max-width: 600px;
}

.service-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 1rem;
  font-family: 'Almarai', 'Cairo', sans-serif;
}

.service-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-family: 'Readex Pro', 'Cairo', sans-serif;
}

.service-features {
  margin-bottom: 2rem;
}

.service-features h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 1rem;
  font-family: 'Almarai', 'Cairo', sans-serif;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.features-list li:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(10px);
}

.feature-icon {
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-yellow);
  border-radius: 10px;
  flex-shrink: 0;
}

.feature-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.feature-content strong {
  color: var(--text-main);
  font-weight: 600;
  font-family: 'Almarai', 'Cairo', sans-serif;
}

.feature-content span {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-family: 'Readex Pro', 'Cairo', sans-serif;
}

.service-use-cases h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 1rem;
  font-family: 'Almarai', 'Cairo', sans-serif);
}

.use-cases-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  background: rgba(245, 179, 1, 0.2);
  color: var(--accent-yellow);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: 'Almarai', 'Cairo', sans-serif;
}

/* Visual Proof Section */
.visual-proof {
  padding: 80px 0;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}

.proof-content {
  text-align: center;
}

.proof-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: 3rem;
  font-family: 'Almarai', 'Cairo', sans-serif;
}

.proof-visual {
  display: flex;
  justify-content: center;
}

.dashboard-mockup {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
  max-width: 800px;
  width: 100%;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.mockup-header {
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mockup-dots {
  display: flex;
  gap: 0.5rem;
}

.mockup-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent-yellow);
}

.mockup-title {
  color: var(--text-light);
  font-weight: 600;
  font-family: 'Almarai', 'Cairo', sans-serif;
}

.mockup-content {
  display: flex;
  height: 400px;
}

.mockup-sidebar {
  width: 200px;
  background: rgba(0, 0, 0, 0.2);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sidebar-item {
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.sidebar-item.active {
  background: var(--accent-yellow);
}

.mockup-main {
  flex: 1;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mockup-chart {
  flex: 1;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.mockup-stats {
  display: flex;
  gap: 1rem;
}

.stat-card {
  flex: 1;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

/* Approach Section */
.approach-section {
  padding: 80px 0;
  background: var(--bg-main);
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.approach-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.approach-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-yellow), #F59E0B);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.approach-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent-yellow);
}

.approach-card:hover::before {
  transform: translateX(0);
}

.approach-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.approach-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 1rem;
  font-family: 'Almarai', 'Cairo', sans-serif;
}

.approach-description {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-muted);
  font-family: 'Readex Pro', 'Cairo', sans-serif;
}

/* Responsive Design */
@media (max-width:768px) {
  .navigator-tabs {
    flex-direction: column;
    align-items: center;
  }

  .service-tab {
    width: 200px;
  }

  .service-detail {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .service-visual {
    min-height: 300px;
  }

  .service-icon-large {
    font-size: 4rem;
  }

  .mockup-content {
    height: 300px;
  }

  .mockup-sidebar {
    width: 150px;
  }

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

@media (max-width:480px) {
  .service-title {
    font-size: 2rem;
  }

  .proof-title {
    font-size: 1.8rem;
  }

  .dashboard-mockup {
    margin: 0 1rem;
  }

  .mockup-content {
    height: 250px;
  }

  .mockup-sidebar {
    width: 100px;
  }
}

.about-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  opacity: 0.1;
}

.network-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(245, 179, 1, 0.1) 1px, transparent 1px),
    linear-gradient(0deg, rgba(245, 179, 1, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: networkMove 20s linear infinite;
}

@keyframes networkMove {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(50px, 50px);
  }
}

.floating-nodes {
  position: absolute;
  inset: 0;
}

.floating-nodes::before,
.floating-nodes::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 179, 1, 0.2) 0%, transparent 70%);
  animation: float 20s ease-in-out infinite;
}

.floating-nodes::before {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.floating-nodes::after {
  bottom: 10%;
  right: 10%;
  animation-delay: 10s;
}

@keyframes float {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  25% {
    transform: translate(30px, -30px) scale(1.1);
  }

  50% {
    transform: translate(-20px, 20px) scale(0.9);
  }

  75% {
    transform: translate(-30px, -10px) scale(1.05);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  color: var(--text-main);
  margin-bottom: 1.5rem;
  line-height: 1.1;
  font-family: 'Almarai', 'Cairo', sans-serif;
  background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
  line-height: 1.6;
  font-family: 'Readex Pro', 'Cairo', sans-serif;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.stat-item {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent-yellow);
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-yellow);
  margin-bottom: 0.5rem;
  font-family: 'Almarai', 'Cairo', sans-serif;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-family: 'Readex Pro', 'Cairo', sans-serif;
}

/* Vision Section */
.vision-section {
  padding: 120px 0;
  background: var(--bg-main);
  position: relative;
}

.vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.vision-content {
  max-width: 600px;
}

.section-title-large {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 1.5rem;
  font-family: 'Almarai', 'Cairo', sans-serif;
}

.vision-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-family: 'Readex Pro', 'Cairo', sans-serif);
}

.vision-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(245, 179, 1, 0.05);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(245, 179, 1, 0.1);
  transform: translateX(10px);
}

.feature-icon {
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-yellow);
  border-radius: 10px;
}

.feature-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.feature-text strong {
  color: var(--text-main);
  font-weight: 600;
  font-family: 'Almarai', 'Cairo', sans-serif;
}

.feature-text span {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-family: 'Readex Pro', 'Cairo', sans-serif;
}

.vision-visual {
  display: flex;
  justify-content: center;
}

.glass-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  padding: 2rem;
  max-width: 400px;
  width: 100%;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.tech-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.tech-item {
  background: rgba(245, 179, 1, 0.2);
  color: var(--accent-yellow);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: 'Almarai', 'Cairo', sans-serif;
}

.code-preview {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 6px;
  padding: .5rem;
  overflow-x: auto;
  direction: ltr;

}

.code-preview pre {
  margin: 0;
  font-family: 'Courier New', monospace;
  font-size: 0.9rem;
  color: #10b981;
  background-color: #0F172A;
}

/* Values Section */
.values-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-top: 1rem;
  font-family: 'Readex Pro', 'Cairo', sans-serif;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.value-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-yellow), #F59E0B);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent-yellow);
}

.value-card:hover::before {
  transform: translateX(0);
}

.value-icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, rgba(245, 179, 1, 0.2) 0%, rgba(245, 179, 1, 0.1) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.value-icon {
  font-size: 2rem;
}

.value-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 1rem;
  font-family: 'Almarai', 'Cairo', sans-serif;
}

.value-description {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-muted);
  font-family: 'Readex Pro', 'Cairo', sans-serif;
}

/* Story Section */
.story-section {
  padding: 120px 0;
  background: var(--bg-main);
}

.story-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.story-narrative {
  margin-bottom: 3rem;
}

.story-paragraph {
  font-size: 1.2rem;
  line-height: 1.8;
  /* color: var(--text-muted); */
  margin-bottom: 1.5rem;
  font-family: 'Readex Pro', 'Cairo', sans-serif;
}

.story-achievements {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.achievement-item {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(245, 179, 1, 0.1) 0%, rgba(245, 179, 1, 0.05) 100%);
  border-radius: 20px;
  border: 1px solid rgba(245, 179, 1, 0.2);
}

.achievement-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-yellow);
  margin-bottom: 0.5rem;
  font-family: 'Almarai', 'Cairo', sans-serif;
}

.achievement-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-family: 'Readex Pro', 'Cairo', sans-serif;
}

/* Timeline Section */
.timeline-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  right: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--accent-yellow) 0%, transparent 100%);
  transform: translateX(50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 4rem;
  display: flex;
  align-items: center;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-marker {
  position: absolute;
  right: 50%;
  width: 20px;
  height: 20px;
  background: var(--accent-yellow);
  border-radius: 50%;
  transform: translateX(50%);
  box-shadow: 0 0 20px rgba(245, 179, 1, 0.5);
  z-index: 2;
}

.timeline-content {
  width: 45%;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
}

.timeline-year {
  font-size: 0.9rem;
  color: var(--accent-yellow);
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-family: 'Almarai', 'Cairo', sans-serif;
}

.timeline-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 1rem;
  font-family: 'Almarai', 'Cairo', sans-serif;
}

.timeline-description {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-muted);
  font-family: 'Readex Pro', 'Cairo', sans-serif;
}

/* Action Section */
.action-section {
  padding: 120px 0;
  background: var(--bg-main);
}

.action-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.action-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.action-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent-yellow);
}

.action-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.action-icon {
  font-size: 1.5rem;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-yellow);
  border-radius: 12px;
}

.action-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-main);
  font-family: 'Almarai', 'Cairo', sans-serif;
}

.action-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.action-list li {
  padding: 0.5rem 0;
  color: var(--text-muted);
  font-family: 'Readex Pro', 'Cairo', sans-serif;
  position: relative;
  padding-right: 1.5rem;
}

.action-list li::before {
  content: '✓';
  position: absolute;
  right: 0;
  color: var(--accent-yellow);
  font-weight: bold;
}

/* CTA Section */
.cta-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  position: relative;
  overflow: hidden;
}

.cta-background {
  position: absolute;
  inset: 0;
  opacity: 0.1;
}

.cta-particles {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(245, 179, 1, 0.3) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: particlesFloat 30s linear infinite;
}

@keyframes particlesFloat {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(50px, 50px);
  }
}

.cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-family: 'Almarai', 'Cairo', sans-serif;
}

.cta-subtitle {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 3rem;
  font-family: 'Readex Pro', 'Cairo', sans-serif);
}

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

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: 'Almarai', 'Cairo', sans-serif;
}

.cta-button.primary {
  background: var(--accent-yellow);
  color: var(--text-main);
}

.cta-button.primary:hover {
  background: #F59E0B;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(245, 179, 1, 0.3);
}

.cta-button.secondary {
  background: transparent;
  color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-button.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent-yellow);
}

/* Responsive Design */
@media (max-width:768px) {
  .vision-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .timeline::before {
    right: 20px;
  }

  .timeline-item {
    flex-direction: column !important;
    align-items: flex-start;
  }

  .timeline-marker {
    right: 20px;
  }

  .timeline-content {
    width: calc(100% - 60px);
    margin-right: 60px;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .cta-button {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width:480px) {
  .hero-title {
    font-size: 2rem;
  }

  .section-title-large {
    font-size: 1.8rem;
  }

  .cta-title {
    font-size: 1.8rem;
  }

  .value-card,
  .action-card {
    padding: 1.5rem;
  }
}

/*  TAR */
/* Story Section Core */
.story-section {
  position: relative;
  padding: 120px 0;
  /* background: linear-gradient(180deg, #0b0f1a 0%, #11162a 100%); */
  color: #eaeaf0;
  overflow: hidden;
}

/* Soft background glow */
.story-section::before {
  content: "";
  position: absolute;
  top: -40%;
  left: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(76, 110, 245, 0.25), transparent 60%);
  filter: blur(80px);
}

/* Title */
.section-title-large {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 40px;
  position: relative;
}

.section-title-large::after {
  content: "";
  display: block;
  text-align: center;
  width: 80px;
  height: 4px;
  margin-top: 14px;
  background: linear-gradient(90deg, #0e0e0e, #f5b302);
  border-radius: 2px;
      margin: 0 auto;

}

/* Story Badge */
.story-badge {
  display: inline-block;
  margin-bottom: 24px;
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 600;
  color: #22c55e;
  background: rgba(34, 197, 94, 0.12);
  border-radius: 999px;
}

/* Narrative */
.story-narrative {
  max-width: 900px;
  position: relative;
  padding-right: 40px;
  border-right: 3px solid rgba(76, 110, 245, 0.4);
  border-left: none;
}

/* Paragraphs */
.story-paragraph {
  font-size: 17px;
  line-height: 1.9;
  margin-bottom: 22px;
  color: var(--text-main);
  position: relative;
}

/* Bullet dot for storytelling effect */
.story-paragraph::before {
  content: "";
  position: absolute;
  right: -46px;
  /* بدل left */
  top: 10px;
  width: 14px;
  height: 14px;
  background: var(--accent-yellow);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(245, 179, 2, 0.15);
}

/* Achievements */
.story-achievements {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  margin-top: 50px;
}

.achievement-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 28px 20px;
  text-align: center;
  border-radius: 18px;
  backdrop-filter: blur(8px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.achievement-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}


.achievement-label {
  font-size: 14px;
  color: #9ca3af;
}

/* ===================================
   PROOF TIMELINE STYLES
   =================================== */

.proof-timeline-section {
  padding: 80px 0;
  background: #0F172A;
  color: #F1F5F9;
  position: relative;
  overflow: hidden;
}

.proof-timeline-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(600px 300px at 20% 20%, rgba(245, 179, 1, 0.08), transparent 50%),
    radial-gradient(500px 250px at 80% 80%, rgba(37, 211, 102, 0.06), transparent 50%);
  pointer-events: none;
}

.timeline-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 0;
}

/* Timeline Line - RTL (Right side) */
.timeline-line {
  position: absolute;
  right: 80px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg,
    rgba(245, 179, 1, 0.3) 0%,
    rgba(245, 179, 1, 0.8) 50%,
    rgba(245, 179, 1, 0.3) 100%);
  border-radius: 2px;
}

/* Timeline Nodes */
.timeline-node {
  position: relative;
  margin-bottom: 80px;
  display: flex;
  align-items: flex-start;
  gap: 40px;
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.6s ease;
}

.timeline-node.visible {
  opacity: 1;
  transform: translateX(0);
}

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

/* Node Icon - positioned on timeline */
.node-icon {
  position: absolute;
  right: 68px;
  top: 20px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.platform-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: block;
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.platform-dot.whatsapp {
  background: #25D366;
}

.platform-dot.facebook {
  background: #1877F2;
}

.platform-dot.khamsat {
  background: #FF6B35;
}

.platform-dot.mostaql {
  background: #238ACD;
}

.timeline-node:hover .platform-dot {
  transform: scale(1.3);
  box-shadow: 0 0 0 6px rgba(0, 0, 0, 0.3);
}

/* Node Content */
.node-content {
  flex: 1;
  margin-right: 120px;
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid rgba(245, 179, 1, 0.2);
  border-radius: 20px;
  padding: 24px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.node-content:hover {
  border-color: rgba(245, 179, 1, 0.4);
  background: rgba(30, 41, 59, 0.8);
  transform: translateY(-2px);
}

/* Screenshot Preview */
.screenshot-preview {
  position: relative;
  width: 100%;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  margin-bottom: 16px;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(245, 179, 1, 0.1);
}

.screenshot-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
  filter: brightness(0.9);
}

.screenshot-preview:hover img {
  transform: scale(1.05);
  filter: brightness(1);
}

.preview-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.screenshot-preview:hover .preview-overlay {
  opacity: 1;
}

.preview-overlay span {
  color: #F5B301;
  font-weight: 700;
  font-size: 14px;
  font-family: 'Almarai', 'Cairo', sans-serif;
}

/* Node Info */
.node-info {
  text-align: right;
}

.platform-name {
  font-size: 18px;
  font-weight: 800;
  color: #F5B301;
  margin-bottom: 8px;
  font-family: 'Almarai', 'Cairo', sans-serif;
}

.project-type {
  font-size: 16px;
  font-weight: 600;
  color: #F1F5F9;
  margin-bottom: 4px;
  font-family: 'Readex Pro', 'Cairo', sans-serif;
}

.project-result {
  font-size: 14px;
  color: #94A3B8;
  font-family: 'Readex Pro', 'Cairo', sans-serif;
}

/* Proof Modal */
.proof-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 40px;
  backdrop-filter: blur(10px);
}

.proof-modal.active {
  display: flex;
}

.proof-modal-content {
  max-width: 90%;
  max-height: 90vh;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.proof-modal img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.proof-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.8);
  border: none;
  border-radius: 50%;
  color: #F1F5F9;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.proof-modal-close:hover {
  background: rgba(245, 179, 1, 0.9);
  color: #0F172A;
}

.proof-modal-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.95), transparent);
  padding: 30px 20px 20px;
  color: #F1F5F9;
  text-align: right;
}

.proof-modal-platform {
  font-size: 14px;
  color: #F5B301;
  font-weight: 700;
  margin-bottom: 8px;
  font-family: 'Almarai', 'Cairo', sans-serif;
}

.proof-modal-project {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
  font-family: 'Readex Pro', 'Cairo', sans-serif;
}

.proof-modal-result {
  font-size: 14px;
  color: #94A3B8;
  font-family: 'Readex Pro', 'Cairo', sans-serif;
}

/* Proof Timeline Mobile Responsive */
@media (max-width: 768px) {
  .timeline-container {
    padding: 20px 0;
  }

  .timeline-line {
    right: 20px;
  }

  .node-icon {
    right: 8px;
  }

  .node-content {
    margin-right: 60px;
    padding: 16px;
  }

  .timeline-node {
    margin-bottom: 60px;
  }

  .screenshot-preview {
    height: 150px;
  }

  .platform-name {
    font-size: 16px;
  }

  .project-type {
    font-size: 14px;
  }

  .proof-modal {
    padding: 20px;
  }
}

/* Scroll-based animations */
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.timeline-node.visible {
  animation: fadeInRight 0.6s ease forwards;
}

/* ===================================
   REQUEST AS JOURNEY STYLES
   =================================== */

/* Journey Introduction */
.journey-intro {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  color: #F1F5F9;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.journey-intro::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(600px 400px at 30% 20%, rgba(245, 179, 1, 0.1), transparent 50%),
    radial-gradient(400px 300px at 70% 80%, rgba(37, 211, 102, 0.08), transparent 50%);
  pointer-events: none;
}

.journey-header {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.journey-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(245, 179, 1, 0.15);
  border: 1px solid rgba(245, 179, 1, 0.3);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  color: #F5B301;
  margin-bottom: 24px;
  font-family: 'Almarai', 'Cairo', sans-serif;
}

.journey-intro h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #F1F5F9 0%, #F5B301 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Almarai', 'Cairo', sans-serif;
}

.journey-subtitle {
  font-size: 1.2rem;
  color: #94A3B8;
  font-weight: 500;
  font-family: 'Readex Pro', 'Cairo', sans-serif;
}

/* Journey Form Section */
.journey-form-section {
  padding: 80px 0;
  background: #F8FAFC;
  position: relative;
}

.journey-container {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

/* Progress Indicator */
.journey-progress {
  margin-bottom: 40px;
}

.progress-bar {
  width: 100%;
  height: 3px;
  background: #E2E8F0;
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 12px;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #F5B301 0%, #F59E0B 100%);
  width: 0%;
  transition: width 0.3s ease;
  border-radius: 2px;
}

.progress-text {
  text-align: center;
  font-size: 14px;
  color: #64748B;
  font-weight: 500;
  font-family: 'Readex Pro', 'Cairo', sans-serif;
}

/* Journey Form Fields */
.journey-form {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.journey-field {
  position: relative;
  margin-bottom: 32px;
}

.journey-input,
.journey-select,
.journey-textarea {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid #E2E8F0;
  border-radius: 12px;
  font-size: 16px;
  font-family: 'Readex Pro', 'Cairo', sans-serif;
  transition: all 0.3s ease;
  background: white;
  color: #1E293B;
}

.journey-input:focus,
.journey-select:focus,
.journey-textarea:focus {
  outline: none;
  border-color: #F5B301;
  box-shadow: 0 0 0 4px rgba(245, 179, 1, 0.1);
}

.journey-textarea {
  resize: vertical;
  min-height: 120px;
}

.journey-select {
  cursor: pointer;
}

/* Floating Labels */
.journey-label {
  position: absolute;
  right: 20px;
  top: 16px;
  font-size: 16px;
  color: #64748B;
  font-weight: 500;
  font-family: 'Readex Pro', 'Cairo', sans-serif;
  transition: all 0.3s ease;
  pointer-events: none;
  background: white;
  padding: 0 8px;
}

.journey-input:focus + .journey-label,
.journey-input:not(:placeholder-shown) + .journey-label,
.journey-select:focus + .journey-label,
.journey-select:valid + .journey-label,
.journey-textarea:focus + .journey-label,
.journey-textarea:not(:placeholder-shown) + .journey-label {
  top: -10px;
  right: 16px;
  font-size: 12px;
  color: #F5B301;
  font-weight: 600;
}

/* Journey Hints */
.journey-hint {
  margin-top: 8px;
  font-size: 13px;
  color: #94A3B8;
  font-family: 'Readex Pro', 'Cairo', sans-serif;
  opacity: 0;
  transform: translateY(-5px);
  transition: all 0.3s ease;
}

.journey-input:focus ~ .journey-hint,
.journey-select:focus ~ .journey-hint,
.journey-textarea:focus ~ .journey-hint {
  opacity: 1;
  transform: translateY(0);
}

/* Journey Button */
.journey-button {
  width: 100%;
  padding: 18px 32px;
  background: linear-gradient(135deg, #F5B301 0%, #F59E0B 100%);
  color: #0F172A;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  font-family: 'Almarai', 'Cairo', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.journey-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(245, 179, 1, 0.3);
}

.journey-button:active {
  transform: translateY(0);
}

.button-loading {
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* Success Message */
.journey-success {
  text-align: center;
  padding: 60px 40px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.success-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #22C55E 0%, #16A34A 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  font-weight: bold;
  margin: 0 auto 20px;
}

.journey-success h3 {
  font-size: 24px;
  font-weight: 700;
  color: #1E293B;
  margin-bottom: 12px;
  font-family: 'Almarai', 'Cairo', sans-serif;
}

.journey-success p {
  color: #64748B;
  font-family: 'Readex Pro', 'Cairo', sans-serif;
}

/* Journey Process Section */
.journey-process {
  padding: 100px 0;
  background: white;
}

.process-title {
  text-align: center;
  margin-bottom: 60px;
}

.process-title h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #1E293B;
  margin-bottom: 12px;
  font-family: 'Almarai', 'Cairo', sans-serif;
}

.process-title p {
  font-size: 1.1rem;
  color: #64748B;
  font-family: 'Readex Pro', 'Cairo', sans-serif;
}

.journey-cards {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.journey-card {
  flex: 1;
  min-width: 200px;
  max-width: 250px;
  padding: 32px 24px;
  background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.journey-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(245, 179, 1, 0.3);
}

.step-number {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #F5B301 0%, #F59E0B 100%);
  color: #0F172A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  margin: 0 auto 16px;
  font-family: 'Almarai', 'Cairo', sans-serif;
}

.journey-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1E293B;
  margin-bottom: 12px;
  font-family: 'Almarai', 'Cairo', sans-serif;
}

.journey-card p {
  font-size: 14px;
  color: #64748B;
  line-height: 1.6;
  font-family: 'Readex Pro', 'Cairo', sans-serif;
}

.journey-arrow {
  font-size: 24px;
  color: #CBD5E1;
  font-weight: bold;
  font-family: 'Almarai', 'Cairo', sans-serif;
}

/* Direct Contact Section */
.direct-contact {
  padding: 80px 0;
  background: #F8FAFC;
}

.contact-prompt {
  text-align: center;
}

.contact-prompt h3 {
  font-size: 24px;
  font-weight: 700;
  color: #1E293B;
  margin-bottom: 32px;
  font-family: 'Almarai', 'Cairo', sans-serif;
}

.contact-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.contact-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: white;
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: #64748B;
  transition: all 0.3s ease;
  font-family: 'Readex Pro', 'Cairo', sans-serif;
}

.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-btn.whatsapp:hover {
  background: #25D366;
  color: white;
  border-color: #25D366;
}

.contact-btn.call:hover {
  background: #3B82F6;
  color: white;
  border-color: #3B82F6;
}

.contact-btn.email:hover {
  background: #EF4444;
  color: white;
  border-color: #EF4444;
}

.contact-icon {
  font-size: 16px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .journey-intro {
    padding: 80px 0 60px;
  }

  .journey-form {
    padding: 32px 24px;
  }

  .journey-cards {
    flex-direction: column;
    align-items: center;
  }

  .journey-arrow {
    transform: rotate(90deg);
    margin: 10px 0;
  }

  .journey-card {
    max-width: 100%;
    width: 100%;
  }

  .contact-buttons {
    flex-direction: column;
    align-items: center;
  }

  .contact-btn {
    width: 100%;
    max-width: 200px;
    justify-content: center;
  }
}

/* ===================================
   HOW WE WORK SECTION STYLES
   =================================== */

.how-we-work-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #F8FAFC 0%, #E2E8F0 100%);
  position: relative;
  overflow: hidden;
}

.how-we-work-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(800px 400px at 20% 30%, rgba(245, 179, 1, 0.08), transparent 50%),
    radial-gradient(600px 300px at 80% 70%, rgba(37, 211, 102, 0.06), transparent 50%);
  pointer-events: none;
}

.how-we-work-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 1;
}

.how-we-work-kicker {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(245, 179, 1, 0.15);
  border: 1px solid rgba(245, 179, 1, 0.3);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  color: #F5B301;
  margin-bottom: 24px;
  font-family: 'Almarai', 'Cairo', sans-serif;
}

.how-we-work-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 16px;
  color: #1E293B;
  font-family: 'Almarai', 'Cairo', sans-serif;
}

.how-we-work-desc {
  font-size: 1.2rem;
  color: #64748B;
  max-width: 600px;
  margin: 0 auto;
  font-family: 'Readex Pro', 'Cairo', sans-serif;
}

/* Process Steps */
.how-we-work-process {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto 80px;
  position: relative;
  z-index: 1;
}

.process-step {
  flex: 1;
  min-width: 200px;
  max-width: 250px;
  padding: 40px 24px;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.process-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: rgba(245, 179, 1, 0.3);
}

.step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #F5B301 0%, #F59E0B 100%);
  color: #0F172A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  margin: 0 auto 20px;
  font-family: 'Almarai', 'Cairo', sans-serif;
}

.step-icon {
  margin-bottom: 20px;
  color: #F5B301;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon svg {
  width: 48px;
  height: 48px;
}

.step-title {
  font-size: 20px;
  font-weight: 700;
  color: #1E293B;
  margin-bottom: 12px;
  font-family: 'Almarai', 'Cairo', sans-serif;
}

.step-desc {
  font-size: 14px;
  color: #64748B;
  line-height: 1.6;
  font-family: 'Readex Pro', 'Cairo', sans-serif;
}

.process-arrow {
  font-size: 32px;
  color: #CBD5E1;
  font-weight: bold;
  font-family: 'Almarai', 'Cairo', sans-serif;
  animation: pulseArrow 2s ease-in-out infinite;
}

@keyframes pulseArrow {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(5px); }
}

/* CTA Section */
.how-we-work-cta {
  text-align: center;
  position: relative;
  z-index: 1;
}

.how-we-work-cta .btn {
  margin: 0 12px;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  font-family: 'Almarai', 'Cairo', sans-serif;
}

.how-we-work-cta .btn--primary {
  background: linear-gradient(135deg, #F5B301 0%, #F59E0B 100%);
  color: #0F172A;
  border: none;
}

.how-we-work-cta .btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(245, 179, 1, 0.3);
}

.how-we-work-cta .btn--secondary {
  background: transparent;
  color: #1E293B;
  border: 2px solid #E2E8F0;
}

.how-we-work-cta .btn--secondary:hover {
  background: #F8FAFC;
  border-color: #F5B301;
  color: #F5B301;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .how-we-work-section {
    padding: 80px 0;
  }

  .how-we-work-header {
    margin-bottom: 60px;
  }

  .how-we-work-process {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .process-step {
    max-width: 100%;
    width: 100%;
  }

  .process-arrow {
    transform: rotate(90deg);
    margin: 10px 0;
  }

  .how-we-work-cta .btn {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 12px auto;
  }
}

/* Animation on scroll */
.process-step {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.process-step.visible {
  opacity: 1;
  transform: translateY(0);
}

.process-step:nth-child(1) { transition-delay: 0.1s; }
.process-step:nth-child(3) { transition-delay: 0.2s; }
.process-step:nth-child(5) { transition-delay: 0.3s; }
.process-step:nth-child(7) { transition-delay: 0.4s; }

/* ===================================
   MODERN SERVICES SECTION STYLES (2025)
   =================================== */

.modern-services-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #334155 100%);
  position: relative;
  overflow: hidden;
}

.modern-services-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(800px 600px at 25% 20%, rgba(245, 179, 1, 0.12), transparent 50%),
    radial-gradient(600px 400px at 75% 80%, rgba(37, 211, 102, 0.08), transparent 50%),
    radial-gradient(400px 300px at 50% 50%, rgba(59, 130, 246, 0.06), transparent 50%);
  pointer-events: none;
}

/* Services Header */
.modern-services-section .services-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 1;
}

.modern-services-section .services-kicker {
  display: inline-block;
  padding: 10px 24px;
  background: rgba(245, 179, 1, 0.15);
  border: 1px solid rgba(245, 179, 1, 0.3);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  color: #F5B301;
  margin-bottom: 24px;
  font-family: 'Almarai', 'Cairo', sans-serif;
  backdrop-filter: blur(10px);
}

.modern-services-section .services-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #F1F5F9 0%, #F5B301 50%, #22C55E 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Almarai', 'Cairo', sans-serif;
}

.modern-services-section .services-desc {
  font-size: 1.3rem;
  color: #94A3B8;
  max-width: 700px;
  margin: 0 auto;
  font-family: 'Readex Pro', 'Cairo', sans-serif;
  line-height: 1.6;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-bottom: 80px;
  position: relative;
  z-index: 1;
}

/* Service Cards */
.service-card {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.8) 0%, rgba(51, 65, 85, 0.6) 100%);
  border: 1px solid rgba(245, 179, 1, 0.2);
  border-radius: 24px;
  padding: 32px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(20px);
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #F5B301 0%, #22C55E 50%, #3B82F6 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(245, 179, 1, 0.4);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 60px rgba(245, 179, 1, 0.1);
}

.service-card:hover::before {
  transform: scaleX(1);
}

/* Service Visual */
.service-card__visual {
  position: relative;
  margin-bottom: 24px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon {
  position: relative;
  z-index: 2;
}

.icon-bg {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(245, 179, 1, 0.2) 0%, rgba(245, 179, 1, 0.1) 100%);
  border: 2px solid rgba(245, 179, 1, 0.3);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F5B301;
  transition: all 0.3s ease;
}

.service-card:hover .icon-bg {
  background: linear-gradient(135deg, rgba(245, 179, 1, 0.3) 0%, rgba(245, 179, 1, 0.2) 100%);
  transform: rotate(5deg) scale(1.1);
}

/* Service Particles */
.service-particles {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #F5B301;
  border-radius: 50%;
  opacity: 0;
  animation: floatParticle 3s ease-in-out infinite;
}

.particle:nth-child(1) {
  top: 20%;
  left: 20%;
  animation-delay: 0s;
}

.particle:nth-child(2) {
  top: 60%;
  left: 70%;
  animation-delay: 1s;
}

.particle:nth-child(3) {
  top: 80%;
  left: 30%;
  animation-delay: 2s;
}

.service-card:hover .particle {
  opacity: 0.6;
}

@keyframes floatParticle {
  0%, 100% {
    transform: translateY(0) scale(1);
    opacity: 0;
  }
  50% {
    transform: translateY(-20px) scale(1.2);
    opacity: 0.6;
  }
}

/* Service Content */
.service-card__content {
  position: relative;
  z-index: 2;
}

.service-category {
  font-size: 12px;
  font-weight: 600;
  color: #F5B301;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  font-family: 'Almarai', 'Cairo', sans-serif;
}

.service-title {
  font-size: 24px;
  font-weight: 800;
  color:var(--accent-yellow);
  margin-bottom: 16px;
  font-family: 'Almarai', 'Cairo', sans-serif;
}

.service-desc {
  font-size: 15px;
  color: #94A3B8;
  line-height: 1.6;
  margin-bottom: 24px;
  font-family: 'Readex Pro', 'Cairo', sans-serif;
}

/* Service Features */
.service-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #CBD5E1;
  font-family: 'Readex Pro', 'Cairo', sans-serif;
}

.feature-icon {
  font-size: 16px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 179, 1, 0.1);
  border-radius: 6px;
  flex-shrink: 0;
}

/* Service Tech */
.service-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.tech-tag {
  padding: 6px 12px;
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.2);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  color: #22C55E;
  font-family: 'Readex Pro', 'Cairo', sans-serif;
}

/* Service Button */
.service-btn {
  width: 100%;
  padding: 16px 24px;
  background: linear-gradient(135deg, rgba(245, 179, 1, 0.2) 0%, rgba(245, 179, 1, 0.1) 100%);
  border: 1px solid rgba(245, 179, 1, 0.3);
  border-radius: 12px;
  color: #F5B301;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Almarai', 'Cairo', sans-serif;
}

.service-btn:hover {
  background: linear-gradient(135deg, rgba(245, 179, 1, 0.3) 0%, rgba(245, 179, 1, 0.2) 100%);
  border-color: rgba(245, 179, 1, 0.5);
  transform: translateX(4px);
}

.service-btn svg {
  transition: transform 0.3s ease;
}

.service-btn:hover svg {
  transform: translateX(4px);
}

/* Modern CTA Section */
.services-cta-modern {
  background: linear-gradient(135deg, rgba(245, 179, 1, 0.1) 0%, rgba(37, 211, 102, 0.05) 100%);
  border: 1px solid rgba(245, 179, 1, 0.2);
  border-radius: 24px;
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  z-index: 1;
  backdrop-filter: blur(20px);
}

.cta-content {
  flex: 1;
}

.cta-content h3 {
  font-size: 28px;
  font-weight: 800;
  color: #F1F5F9;
  margin-bottom: 12px;
  font-family: 'Almarai', 'Cairo', sans-serif;
}

.cta-content p {
  font-size: 16px;
  color: #94A3B8;
  font-family: 'Readex Pro', 'Cairo', sans-serif;
}

.cta-actions {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}

.cta-btn {
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Almarai', 'Cairo', sans-serif;
  white-space: nowrap;
}

.cta-btn.primary {
  background: linear-gradient(135deg, #F5B301 0%, #F59E0B 100%);
  color: #0F172A;
  border: none;
}

.cta-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(245, 179, 1, 0.3);
}

.cta-btn.secondary {
  background: transparent;
  color: #F1F5F9;
  border: 2px solid rgba(245, 179, 1, 0.3);
}

.cta-btn.secondary:hover {
  background: rgba(245, 179, 1, 0.1);
  border-color: rgba(245, 179, 1, 0.5);
  color: #F5B301;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .modern-services-section {
    padding: 80px 0;
  }

  .modern-services-section .services-header {
    margin-bottom: 60px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .service-card {
    padding: 24px;
  }

  .service-title {
    font-size: 20px;
  }

  .services-cta-modern {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
  }

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

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

/* Scroll Animations */
.service-card {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.service-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.service-card:nth-child(1) { transition-delay: 0.1s; }
.service-card:nth-child(2) { transition-delay: 0.2s; }
.service-card:nth-child(3) { transition-delay: 0.3s; }
.service-card:nth-child(4) { transition-delay: 0.4s; }

/* Interactive Hover Effects */
.service-card[data-service="personal"]:hover {
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
}

.service-card[data-service="corporate"]:hover {
  border-color: rgba(34, 197, 94, 0.4);
  box-shadow: 0 20px 40px rgba(34, 197, 94, 0.2);
}

.service-card[data-service="tourism"]:hover {
  border-color: rgba(239, 68, 68, 0.4);
  box-shadow: 0 20px 40px rgba(239, 68, 68, 0.2);
}

.service-card[data-service="sales"]:hover {
  border-color: rgba(168, 85, 247, 0.4);
  box-shadow: 0 20px 40px rgba(168, 85, 247, 0.2);
}

.service-card[data-service="consulting"]:hover {
  border-color: rgba(251, 146, 60, 0.4);
  box-shadow: 0 20px 40px rgba(251, 146, 60, 0.2);
}

.service-card[data-service="hosting"]:hover {
  border-color: rgba(14, 165, 233, 0.4);
  box-shadow: 0 20px 40px rgba(14, 165, 233, 0.2);
}

/* ===================================
   ABOUT US SECTION STYLES
   =================================== */

.about-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #F8FAFC 0%, #E2E8F0 100%);
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(600px 400px at 25% 20%, rgba(245, 179, 1, 0.08), transparent 50%),
    radial-gradient(400px 300px at 75% 80%, rgba(37, 211, 102, 0.06), transparent 50%);
  pointer-events: none;
}

.about-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 1;
}

.about-kicker {
  display: inline-block;
  padding: 10px 24px;
  background: rgba(245, 179, 1, 0.15);
  border: 1px solid rgba(245, 179, 1, 0.3);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  color: #F5B301;
  margin-bottom: 24px;
  font-family: 'Almarai', 'Cairo', sans-serif;
  backdrop-filter: blur(10px);
}

.about-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 20px;
  color: #1E293B;
  font-family: 'Almarai', 'Cairo', sans-serif;
}

.about-desc {
  font-size: 1.3rem;
  color: #64748B;
  max-width: 700px;
  margin: 0 auto;
  font-family: 'Readex Pro', 'Cairo', sans-serif;
  line-height: 1.6;
}

/* About Content */
.about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: start;
}

.about-story {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.about-story h3 {
  font-size: 24px;
  font-weight: 700;
  color: #1E293B;
  margin-bottom: 20px;
  font-family: 'Almarai', 'Cairo', sans-serif;
}

.about-story p {
  font-size: 16px;
  color: #64748B;
  line-height: 1.6;
  margin-bottom: 16px;
  font-family: 'Readex Pro', 'Cairo', sans-serif;
}

.about-values {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.about-values h3 {
  font-size: 24px;
  font-weight: 700;
  color: #1E293B;
  margin-bottom: 30px;
  font-family: 'Almarai', 'Cairo', sans-serif;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.value-item {
  text-align: center;
  padding: 20px;
  background: linear-gradient(135deg, rgba(245, 179, 1, 0.05) 0%, rgba(245, 179, 1, 0.02) 100%);
  border: 1px solid rgba(245, 179, 1, 0.1);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.value-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(245, 179, 1, 0.2);
}

.value-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #F5B301 0%, #F59E0B 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
  color: #0F172A;
}

.value-item h4 {
  font-size: 18px;
  font-weight: 700;
  color: #1E293B;
  margin-bottom: 12px;
  font-family: 'Almarai', 'Cairo', sans-serif;
}

.value-item p {
  font-size: 14px;
  color: #64748B;
  line-height: 1.5;
  font-family: 'Readex Pro', 'Cairo', sans-serif;
}

/* ===================================
   WHY CHOOSE US SECTION STYLES
   =================================== */

.why-choose-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #1E293B 0%, #334155 100%);
  position: relative;
  overflow: hidden;
}

.why-choose-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(800px 600px at 25% 30%, rgba(245, 179, 1, 0.12), transparent 50%),
    radial-gradient(600px 400px at 75% 80%, rgba(37, 211, 102, 0.08), transparent 50%);
  pointer-events: none;
}

.why-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 1;
}

.why-kicker {
  display: inline-block;
  padding: 10px 24px;
  background: rgba(245, 179, 1, 0.15);
  border: 1px solid rgba(245, 179, 1, 0.3);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  color: #F5B301;
  margin-bottom: 24px;
  font-family: 'Almarai', 'Cairo', sans-serif;
  backdrop-filter: blur(10px);
}

.why-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #F1F5F9 0%, #F5B301 50%, #22C55E 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Almarai', 'Cairo', sans-serif;
}

.why-desc {
  font-size: 1.3rem;
  color: #94A3B8;
  max-width: 700px;
  margin: 0 auto;
  font-family: 'Readex Pro', 'Cairo', sans-serif;
  line-height: 1.6;
}

/* Why Features */
.why-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-bottom: 80px;
}

.why-feature {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.8) 0%, rgba(51, 65, 85, 0.6) 100%);
  border: 1px solid rgba(245, 179, 1, 0.2);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(20px);
}

.why-feature:hover {
  transform: translateY(-10px);
  border-color: rgba(245, 179, 1, 0.4);
  box-shadow: 0 20px 40px rgba(245, 179, 1, 0.1);
}

.why-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(245, 179, 1, 0.2) 0%, rgba(245, 179, 1, 0.1) 100%);
  border: 2px solid rgba(245, 179, 1, 0.3);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: #F5B301;
  transition: all 0.3s ease;
}

.why-feature:hover .why-icon {
  transform: rotate(5deg) scale(1.1);
  background: linear-gradient(135deg, rgba(245, 179, 1, 0.3) 0%, rgba(245, 179, 1, 0.2) 100%);
}

.why-icon svg {
  width: 40px;
  height: 40px;
}

.why-feature h3 {
  font-size: 20px;
  font-weight: 700;
  color: #F1F5F9;
  margin-bottom: 12px;
  font-family: 'Almarai', 'Cairo', sans-serif;
}

.why-feature p {
  font-size: 15px;
  color: #94A3B8;
  line-height: 1.6;
  font-family: 'Readex Pro', 'Cairo', sans-serif;
}

/* Why Stats */
.why-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;
}

.stat-item {
  background: rgba(245, 179, 1, 0.1);
  border: 1px solid rgba(245, 179, 1, 0.2);
  border-radius: 16px;
  padding: 30px 20px;
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  background: rgba(245, 179, 1, 0.15);
  border-color: rgba(245, 179, 1, 0.3);
}

.stat-number {
  font-size: 36px;
  font-weight: 900;
  color: #F5B301;
  margin-bottom: 8px;
  font-family: 'Almarai', 'Cairo', sans-serif;
}

.stat-label {
  font-size: 14px;
  color: #94A3B8;
  font-family: 'Readex Pro', 'Cairo', sans-serif;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .about-section,
  .why-choose-section {
    padding: 80px 0;
  }

  .about-header,
  .why-header {
    margin-bottom: 60px;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .why-features {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .why-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .stat-number {
    font-size: 28px;
  }
}

/* Scroll Animations */
.about-section,
.why-choose-section {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.about-section.visible,
.why-choose-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.about-section.visible {
  transition-delay: 0.2s;
}

.why-choose-section.visible {
  transition-delay: 0.4s;
}

.value-item,
.why-feature {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.value-item.visible,
.why-feature.visible {
  opacity: 1;
  transform: translateY(0);
}

.value-item:nth-child(1) { transition-delay: 0.1s; }
.value-item:nth-child(2) { transition-delay: 0.2s; }
.value-item:nth-child(3) { transition-delay: 0.3s; }
.value-item:nth-child(4) { transition-delay: 0.4s; }

.why-feature:nth-child(1) { transition-delay: 0.1s; }
.why-feature:nth-child(2) { transition-delay: 0.2s; }
.why-feature:nth-child(3) { transition-delay: 0.3s; }
.why-feature:nth-child(4) { transition-delay: 0.4s; }
.why-feature:nth-child(5) { transition-delay: 0.5s; }
.why-feature:nth-child(6) { transition-delay: 0.6s; }
