/* ================================================================
   TRACK UNION — Homepage Redesign v1
   تعتمد كل الألوان على متغيرات theme.css — لا ألوان ثابتة هنا
   ================================================================ */

/* ── HERO ────────────────────────────────────────────────────── */
.tu-hero { position: relative; }
.tu-hero .swiper { height: clamp(560px, 86vh, 820px); }

.tu-hero-slide { position: relative; height: 100%; overflow: hidden; }
.tu-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  transition: transform 7s linear;
}
.swiper-slide-active .tu-hero-bg { transform: scale(1); }

.tu-hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to left, color-mix(in srgb, var(--brand-darker) 88%, transparent) 0%,
      color-mix(in srgb, var(--brand-darker) 55%, transparent) 45%,
      color-mix(in srgb, var(--brand-darker) 20%, transparent) 100%),
    linear-gradient(to top, color-mix(in srgb, var(--brand-darker) 75%, transparent) 0%, transparent 40%);
}
/* fallback للمتصفحات الأقدم */
@supports not (background: color-mix(in srgb, red 50%, blue)) {
  .tu-hero-overlay {
    background:
      linear-gradient(to left, rgba(12, 20, 48, 0.88) 0%, rgba(12, 20, 48, 0.55) 45%, rgba(12, 20, 48, 0.2) 100%),
      linear-gradient(to top, rgba(12, 20, 48, 0.75) 0%, transparent 40%);
  }
}

.tu-hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  padding-bottom: clamp(70px, 9vw, 110px);
}
.tu-hero-inner { max-width: 660px; }

.tu-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  color: var(--soft);
  font-weight: 700;
  font-size: 0.86rem;
  padding: 0.4rem 1.1rem;
  border-radius: 99px;
  margin-bottom: 1.3rem;
}
.tu-hero-kicker i { font-size: 0.7rem; }

.tu-hero h1, .tu-hero .h1 {
  color: #fff;
  font-weight: 900;
  font-size: clamp(1.9rem, 4.6vw, 3.4rem);
  line-height: 1.3;
  margin-bottom: 1.1rem;
}
.tu-hero h1 .accent { color: var(--soft); }

.tu-hero p {
  color: var(--on-brand-soft);
  font-size: clamp(0.98rem, 1.6vw, 1.15rem);
  line-height: 1.9;
  margin-bottom: 1.9rem;
  max-width: 560px;
}

.tu-hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.tu-btn-light {
  background: var(--soft);
  color: var(--brand-dark) !important;
  border: 1.5px solid var(--soft);
  font-weight: 800;
  border-radius: 12px;
  padding: 0.75rem 1.9rem;
  transition: all 0.3s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}
.tu-btn-light:hover { background: #fff; border-color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.tu-btn-ghost {
  background: transparent;
  color: #fff !important;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  font-weight: 700;
  border-radius: 12px;
  padding: 0.75rem 1.9rem;
  transition: all 0.3s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}
.tu-btn-ghost:hover { background: rgba(255, 255, 255, 0.12); border-color: #fff; }

/* pagination */
.tu-hero .swiper-pagination {
  bottom: clamp(86px, 10vw, 120px) !important;
  text-align: right;
  padding-inline-start: calc((100% - min(1296px, 100% - 2 * var(--container-px, 24px))) / 2);
}
.tu-hero .swiper-pagination-bullet {
  width: 28px; height: 4px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.4);
  opacity: 1;
  transition: all 0.3s var(--ease);
}
.tu-hero .swiper-pagination-bullet-active { width: 48px; background: var(--soft); }

/* ── STATS STRIP (متداخل مع الهيرو) ─────────────────────────── */
.tu-stats { position: relative; z-index: 5; margin-top: clamp(-64px, -6vw, -52px); }
.tu-stats-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: clamp(1.4rem, 3vw, 2.2rem) clamp(1rem, 3vw, 2.5rem);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.tu-stat {
  text-align: center;
  position: relative;
  padding: 0.4rem 0.5rem;
}
.tu-stat:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 0; top: 18%; bottom: 18%;
  width: 1px;
  background: var(--line);
}
.tu-stat .icon {
  width: 52px; height: 52px;
  margin: 0 auto 0.7rem;
  border-radius: 14px;
  background: var(--soft);
  color: var(--brand);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
}
.tu-stat strong {
  display: block;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 900;
  color: var(--brand);
  line-height: 1.2;
}
.tu-stat span { color: var(--text-muted); font-weight: 600; font-size: 0.92rem; }

@media (max-width: 767px) {
  .tu-stats-card { grid-template-columns: repeat(2, 1fr); row-gap: 1.6rem; }
  .tu-stat:nth-child(2)::after { display: none; }
}

/* ── GENERIC SECTION ─────────────────────────────────────────── */
.tu-section { padding: clamp(60px, 8vw, 110px) 0; }
.tu-section-head { max-width: 620px; margin-bottom: clamp(2rem, 4vw, 3.2rem); }
.tu-section-head.center { margin-inline: auto; text-align: center; }
.tu-section-head h2 {
  font-size: clamp(1.5rem, 3.2vw, 2.3rem);
  font-weight: 900;
  margin: 0.9rem 0 0.7rem;
}
.tu-section-head p { color: var(--text-muted); font-size: 1.02rem; margin: 0; }

/* ── ABOUT v2 — هوية الشركة ──────────────────────────────────── */
.tu-about2 { position: relative; overflow: hidden; }

/* كلمة خلفية شبحية */
.tu-about2-ghost {
  position: absolute;
  top: clamp(10px, 3vw, 40px);
  inset-inline-end: -1%;
  font-size: clamp(4rem, 13vw, 10rem);
  font-weight: 900;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--brand-tint-2);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  opacity: 0.8;
}

/* الجانب البصري */
.tu-about2-visual {
  position: relative;
  padding: 26px 18px 0;
}
.tu-about2-visual .photo {
  position: relative;
  border-radius: 42% 58% 52% 48% / 46% 42% 58% 54%;
  overflow: hidden;
  border: 5px solid var(--paper);
  box-shadow: var(--shadow-lg);
  z-index: 2;
}
.tu-about2-visual .photo img {
  width: 100%;
  aspect-ratio: 11 / 10;
  object-fit: cover;
  transform: scale(1.02);
}
/* حلقة متقطعة تدور ببطء خلف الصورة */
.tu-about2-visual .ring {
  position: absolute;
  inset: 0 4% 12% 4%;
  border: 2px dashed var(--brand-tint-2);
  border-radius: 50%;
  animation: tuSpin 40s linear infinite;
  z-index: 1;
}
@keyframes tuSpin { to { transform: rotate(360deg); } }

/* ختم "منذ 1435هـ" */
.tu-about2-visual .seal {
  position: absolute;
  top: 0;
  inset-inline-start: 4%;
  z-index: 3;
  width: 96px; height: 96px;
  border-radius: 50%;
  background: var(--brand);
  color: var(--soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  box-shadow: var(--shadow-md), 0 0 0 6px var(--paper), 0 0 0 8px var(--soft-deep);
  transform: rotate(-8deg);
}
.tu-about2-visual .seal span { font-size: 0.68rem; color: var(--on-brand-soft); font-weight: 600; }
.tu-about2-visual .seal strong { font-size: 1.15rem; font-weight: 900; }

/* بطاقات زجاجية عائمة */
.tu-about2-visual .chip {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  padding: 0.65rem 1rem;
  animation: tuFloat 5s ease-in-out infinite;
}
.tu-about2-visual .chip i {
  width: 38px; height: 38px;
  min-width: 38px;
  border-radius: 11px;
  background: var(--brand);
  color: var(--soft);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem;
}
.tu-about2-visual .chip strong { display: block; font-size: 0.95rem; font-weight: 900; color: var(--brand); line-height: 1.3; }
.tu-about2-visual .chip span { font-size: 0.72rem; color: var(--text-muted); font-weight: 600; }
.tu-about2-visual .chip-1 { top: 16%; inset-inline-end: -6px; }
.tu-about2-visual .chip-2 { bottom: 22%; inset-inline-start: -10px; animation-delay: 2.2s; }
@keyframes tuFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

/* طريق متحرك: مكة ⇄ المدينة */
.tu-about2-visual .road {
  position: relative;
  z-index: 3;
  margin-top: 1.6rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.tu-about2-visual .road .pin {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--brand);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.tu-about2-visual .road .lane {
  position: relative;
  flex: 1;
  height: 22px;
  background-image: linear-gradient(90deg, var(--brand-tint-2) 55%, transparent 45%);
  background-size: 14px 2px;
  background-repeat: repeat-x;
  background-position: center;
}
.tu-about2-visual .road .bus {
  position: absolute;
  top: 50%;
  inset-inline-end: calc(100% - 22px);
  color: var(--brand);
  font-size: 1.05rem;
  transform: translateY(-50%) scaleX(-1);
  animation: tuDrive 6s ease-in-out infinite;
}
/* ينطلق من نقطة الانطلاق (يمين) باتجاه الوجهة (يسار) ووجهه مع اتجاه السير */
@keyframes tuDrive {
  0%   { inset-inline-end: calc(100% - 22px); transform: translateY(-50%) scaleX(-1); }
  46%  { inset-inline-end: 0%; transform: translateY(-50%) scaleX(-1); }
  50%  { inset-inline-end: 0%; transform: translateY(-50%) scaleX(1); }
  96%  { inset-inline-end: calc(100% - 22px); transform: translateY(-50%) scaleX(1); }
  100% { inset-inline-end: calc(100% - 22px); transform: translateY(-50%) scaleX(-1); }
}

/* المحتوى */
.tu-about2-title {
  font-size: clamp(1.6rem, 3.4vw, 2.5rem);
  font-weight: 900;
  line-height: 1.45;
  margin: 1rem 0 1rem;
}
.tu-about2-title .outline{
    color: #2a0f51;
    -webkit-text-stroke: 0;
    text-shadow: 0 2px 10px rgba(174, 170, 193, 0.631);
    font-weight: 700;
}
.tu-about2-lead { color: var(--text-soft); line-height: 2; margin-bottom: 1.6rem; }

/* التبويبات */
.tu-tabs {
  display: flex;
  gap: 0.5rem;
  background: var(--soft);
  border: 1px solid var(--soft-deep);
  border-radius: 14px;
  padding: 0.4rem;
  width: fit-content;
  max-width: 100%;
  flex-wrap: wrap;
}
.tu-tab {
  border: none;
  background: transparent;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-soft);
  padding: 0.5rem 1.1rem;
  border-radius: 10px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition: all 0.3s var(--ease);
}
.tu-tab:hover { color: var(--brand); }
.tu-tab.active {
  background: var(--brand);
  color: var(--on-brand);
  box-shadow: var(--shadow-sm);
}
.tu-tab-panels {
  position: relative;
  margin-top: 1.1rem;
  min-height: 96px;
}
.tu-tab-panel { display: none; }
.tu-tab-panel.active { display: block; animation: tuFadeUp 0.45s var(--ease); }
.tu-tab-panel p {
  color: var(--text-soft);
  line-height: 2;
  margin: 0;
  border-inline-start: 3px solid var(--soft-deep);
  padding-inline-start: 1rem;
}
@keyframes tuFadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* السطر الختامي */
.tu-about2-foot {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex-wrap: wrap;
  margin-top: 1.8rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-soft);
}
.tu-about2-foot .sig {
  font-weight: 900;
  font-size: 1.05rem;
  color: var(--brand);
  line-height: 1.5;
}
.tu-about2-foot .sig span {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
}

@media (max-width: 991px) {
  .tu-about2-visual { margin-bottom: 1.2rem; padding-top: 34px; }
  .tu-about2-visual .chip-1 { inset-inline-end: 0; }
  .tu-about2-visual .chip-2 { inset-inline-start: 0; }
}
@media (max-width: 575px) {
  .tu-about2-visual .chip { padding: 0.5rem 0.75rem; }
  .tu-about2-visual .seal { width: 82px; height: 82px; }
  .tu-about2-ghost { display: none; }
}

/* ── SERVICES — قسم داكن بنصوص بيجية ─────────────────────────── */
.tu-services {
  background: linear-gradient(160deg, var(--brand) 0%, var(--brand-darker) 100%);
  position: relative;
  overflow: hidden;
}
.tu-services::before {
  content: '';
  position: absolute;
  top: -120px; inset-inline-end: -120px;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  pointer-events: none;
}
.tu-services .tu-section-head h2 { color: var(--soft); }
.tu-services .tu-section-head p { color: var(--on-brand-soft); }
.tu-services .section-kicker {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
  color: var(--soft) !important;
  -webkit-text-fill-color: var(--soft);
}
.tu-service-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-md);
  padding: 1.8rem 1.6rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.35s var(--ease);
  display: flex;
  flex-direction: column;
}
.tu-service-card::after {
  content: '';
  position: absolute;
  inset-inline-start: 0;
  top: 0; bottom: 0;
  width: 4px;
  background: var(--soft);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.35s var(--ease);
}
.tu-service-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.28);
}
.tu-service-card:hover::after { transform: scaleY(1); }

.tu-service-card .icon {
  width: 58px; height: 58px;
  border-radius: 16px;
  background: var(--soft);
  color: var(--brand);
  font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem;
  transition: all 0.35s var(--ease);
}
.tu-service-card:hover .icon { transform: scale(1.06) rotate(-4deg); }
.tu-service-card h3 { font-size: 1.12rem; font-weight: 800; margin-bottom: 0.6rem; color: var(--soft); }
.tu-service-card p { color: var(--on-brand-soft); font-size: 0.93rem; line-height: 1.85; flex: 1; margin-bottom: 1rem; }
.tu-service-card .more {
  color: var(--soft);
  font-weight: 800;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition: gap 0.25s var(--ease);
}
.tu-service-card .more:hover { gap: 0.75rem; }

/* ── FLEET COLLAGE — صور متداخلة مع عمق بصري ───────────────── */
.tu-fleet-collage {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, var(--paper) 0%, var(--bg-soft) 100%);
}
.fleet-collage-wrap {
  position: relative;
  min-height: clamp(360px, 46vw, 560px);
  isolation: isolate;
}
.fleet-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  border: 5px solid var(--paper);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
  transition: transform 0.65s var(--ease), box-shadow 0.65s var(--ease);
}
.fleet-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease);
}
.fleet-photo-main {
  position: absolute;
  inset-inline-end: 4%;
  top: 4%;
  width: min(78%, 620px);
  height: min(72%, 420px);
  z-index: 1;
}
.fleet-photo-float {
  position: absolute;
  inset-inline-start: 4%;
  bottom: 2%;
  width: min(45%, 330px);
  height: min(44%, 270px);
  z-index: 2;
  border-radius: 20px;
  transform: translateY(var(--parallax-y, 0px));
}
.fleet-collage-wrap:hover .fleet-photo-main img { transform: scale(1.045); }
.fleet-collage-wrap:hover .fleet-photo-float img { transform: scale(1.075); }
.fleet-collage-wrap:hover .fleet-photo {
  box-shadow: 0 36px 95px rgba(0, 0, 0, 0.24);
}
.fleet-collage-note {
  position: absolute;
  inset-inline-end: 9%;
  bottom: 13%;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 1.05rem;
  border-radius: 14px;
  background: color-mix(in srgb, var(--brand) 88%, transparent);
  color: var(--soft);
  box-shadow: var(--shadow-md);
  font-size: 0.88rem;
  font-weight: 800;
}
.fleet-collage-note i {
  color: var(--soft);
}

@media (max-width: 991px) {
  .fleet-collage-wrap { min-height: 420px; margin-top: 1.2rem; }
  .fleet-photo-main { width: 82%; inset-inline-end: 0; }
  .fleet-photo-float { width: 50%; inset-inline-start: 0; }
}
@media (max-width: 575px) {
  .fleet-collage-wrap { min-height: 360px; }
  .fleet-photo-main {
    width: 88%;
    height: 68%;
  }
  .fleet-photo-float {
    width: 62%;
    height: 38%;
  }
  .fleet-collage-note {
    inset-inline-end: 4%;
    bottom: 7%;
    font-size: 0.78rem;
  }
}

/* ── SERVICES FLIP TABS — تبويبات وسلايدر وبطاقات انقلاب ───── */
.tu-services-flip {
  padding-bottom: clamp(74px, 9vw, 120px);
}
.service-tabs-shell {
  position: relative;
  z-index: 2;
}
.service-tabs {
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 2rem;
  padding: 0.45rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
}
.service-tab {
  border: 0;
  border-radius: 14px;
  padding: 0.7rem 1.15rem;
  background: transparent;
  color: var(--on-brand-soft);
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 800;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s var(--ease), background 0.3s var(--ease), transform 0.3s var(--ease);
}
.service-tab:hover {
  color: var(--soft);
  transform: translateY(-1px);
}
.service-tab.active {
  color: var(--brand-dark);
  background: var(--soft);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}
.service-panel {
  display: none;
  animation: tuFadeUp 0.45s var(--ease);
}
.service-panel.active {
  display: block;
}
.tu-services-swiper {
  overflow: hidden;
  padding: 0.5rem 0.2rem 0.4rem;
}
.service-flip-card {
  width: 100%;
  height: clamp(220px, 27vw, 260px);
  perspective: 1100px;
  outline: none;
}
.service-flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.75s cubic-bezier(.2,.8,.2,1);
}
.service-flip-card:hover .service-flip-inner,
.service-flip-card:focus-within .service-flip-inner,
.service-flip-card:focus .service-flip-inner {
  transform: rotateY(180deg);
}
.service-flip-face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.4rem;
  box-shadow: 0 24px 65px rgba(0, 0, 0, 0.18);
}
.service-flip-front {
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--brand) 76%, transparent), color-mix(in srgb, var(--brand-darker) 92%, transparent)),
    url('../images/bus-wh.jpg') center/cover;
}
.service-flip-front::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 17px;
  pointer-events: none;
}
.service-flip-front span {
  position: relative;
  z-index: 1;
  color: var(--soft);
  font-size: clamp(1.08rem, 1.9vw, 1.35rem);
  font-weight: 900;
  line-height: 1.75;
  max-width: 260px;
}
.service-flip-back {
  transform: rotateY(180deg);
  flex-direction: column;
  gap: 1.1rem;
  background:
    radial-gradient(circle at 25% 20%, rgba(255, 255, 255, 0.12), transparent 34%),
    linear-gradient(145deg, var(--soft) 0%, #fff 100%);
  color: var(--brand);
}
.service-flip-back strong {
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  line-height: 1.7;
  font-weight: 900;
}
.service-flip-back a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  min-height: 44px;
  padding: 0.65rem 1.4rem;
  border-radius: 12px;
  background: var(--brand);
  color: var(--soft) !important;
  font-weight: 900;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.service-flip-back a:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.service-swiper-controls {
  margin-top: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
}
.service-arrow {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
}
.service-arrow:hover {
  background: var(--soft);
  color: var(--brand);
}
.service-pagination {
  position: static;
  width: auto !important;
  min-width: 74px;
  display: inline-flex;
  justify-content: center;
  gap: 6px;
}
.service-pagination .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.45);
  opacity: 1;
}
.service-pagination .swiper-pagination-bullet-active {
  background: var(--soft);
  width: 18px;
  border-radius: 99px;
}

@media (max-width: 575px) {
  .service-tabs {
    width: 100%;
  }
  .service-tab {
    flex: 1 1 100%;
    justify-content: center;
  }
}

/* ── BOOKING PAGE — نموذج حجز B2B ─────────────────────────── */
.booking-page {
  background:
    linear-gradient(180deg, var(--bg-soft) 0%, var(--paper) 48%, var(--bg-soft) 100%);
}
.booking-shell {
  max-width: 1080px;
  margin: 0 auto;
}
.booking-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.booking-card-head {
  padding: clamp(1.5rem, 3vw, 2.2rem);
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-darker) 100%);
  color: var(--on-brand);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.booking-card-head h2 {
  color: var(--soft);
  font-size: clamp(1.25rem, 2.5vw, 1.8rem);
  font-weight: 900;
  margin: 0 0 0.45rem;
}
.booking-card-head p {
  color: var(--on-brand-soft);
  margin: 0;
  line-height: 1.8;
}
.booking-head-icon {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  background: var(--soft);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  flex: 0 0 auto;
}
.booking-form {
  padding: clamp(1.4rem, 3vw, 2.4rem);
}
.booking-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.1rem;
}
.booking-field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.booking-field.full {
  grid-column: 1 / -1;
}
.booking-field label {
  color: var(--brand);
  font-weight: 900;
  font-size: 0.88rem;
}
.booking-field input,
.booking-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--bg-soft);
  color: var(--text);
  font-family: inherit;
  font-size: 0.96rem;
  font-weight: 600;
  padding: 0.85rem 1rem;
  outline: none;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
}
.booking-field textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.8;
}
.booking-field input:focus,
.booking-field textarea:focus {
  background: var(--paper);
  border-color: var(--soft-deep);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--soft) 45%, transparent);
}
.booking-field input[readonly] {
  color: var(--text-soft);
}
.booking-actions {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.booking-submit {
  border: 0;
  border-radius: 14px;
  background: var(--brand);
  color: var(--soft);
  font-family: inherit;
  font-weight: 900;
  padding: 0.85rem 1.8rem;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.booking-submit:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.booking-status {
  color: var(--gold-dark);
  font-weight: 800;
  line-height: 1.8;
  margin: 0;
}

@media (max-width: 767px) {
  .booking-grid {
    grid-template-columns: 1fr;
  }
  .booking-actions {
    justify-content: center;
    text-align: center;
  }
  .booking-submit {
    width: 100%;
    justify-content: center;
  }
}

/* ── WHY US (قسم كحلي) ───────────────────────────────────────── */
.tu-why {
  background: linear-gradient(160deg, var(--brand) 0%, var(--brand-darker) 100%);
  color: var(--on-brand);
  position: relative;
  overflow: hidden;
}
.tu-why::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 26px 26px;
  pointer-events: none;
}
.tu-why .tu-section-head h2 { color: var(--soft); }
.tu-why .tu-section-head p { color: var(--on-brand-soft); }
.tu-why .section-kicker {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: rgba(255, 255, 255, 0.22) !important;
  color: var(--soft) !important;
  -webkit-text-fill-color: var(--soft);
}
.tu-why-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.4rem;
  height: 100%;
  transition: all 0.35s var(--ease);
}
.tu-why-item:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-4px);
}
.tu-why-item .icon {
  width: 50px; height: 50px;
  border-radius: 14px;
  background: var(--soft);
  color: var(--brand);
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.tu-why-item h3 { color: var(--soft); font-size: 1.05rem; font-weight: 800; margin-bottom: 0.5rem; }
.tu-why-item p { color: var(--on-brand-soft); font-size: 0.9rem; line-height: 1.85; margin: 0; }

/* ── NEWS ────────────────────────────────────────────────────── */
.tu-news-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.35s var(--ease);
}
.tu-news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.tu-news-card .thumb { position: relative; overflow: hidden; aspect-ratio: 16 / 9; }
.tu-news-card .thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.tu-news-card:hover .thumb img { transform: scale(1.06); }
.tu-news-card time {
  position: absolute;
  top: 12px; inset-inline-start: 12px;
  background: var(--brand);
  color: var(--on-brand);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: 99px;
}
.tu-news-card .body { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.tu-news-card h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 0.55rem; line-height: 1.6; }
.tu-news-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.85; flex: 1; margin-bottom: 0.9rem; }
.tu-news-card .more { color: var(--brand); font-weight: 800; font-size: 0.88rem; display: inline-flex; align-items: center; gap: 0.45rem; }
.tu-news-card .more:hover { gap: 0.75rem; }

/* ── CLIENTS — قسم داكن بنصوص بيجية ──────────────────────────── */
.tu-clients {
  background: linear-gradient(200deg, var(--brand) 0%, var(--brand-darker) 100%);
}
.tu-clients .tu-section-head h2 { color: var(--soft); }
.tu-clients .tu-section-head p { color: var(--on-brand-soft); }
.tu-clients .section-kicker {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
  color: var(--soft) !important;
  -webkit-text-fill-color: var(--soft);
}
.tu-clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  max-width: 980px;
  margin-inline: auto;
}
.tu-client {
  background: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  padding: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 110px;
  transition: all 0.35s var(--ease);
}
.tu-client img {
  max-height: 72px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.7;
  transition: all 0.35s var(--ease);
}
.tu-client:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.tu-client:hover img { filter: grayscale(0); opacity: 1; }

/* ── VIDEO ───────────────────────────────────────────────────── */
.tu-video-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  background: var(--brand-darker);
}
.tu-video-frame video { display: block; width: 100%; height: 400px; object-fit: cover; }

/* ── CTA BAND ────────────────────────────────────────────────── */
.tu-cta {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-darker) 100%);
  border-radius: var(--radius-lg);
  padding: clamp(2.2rem, 5vw, 3.6rem);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
  flex-wrap: wrap;
}
.tu-cta::before {
  content: '';
  position: absolute;
  top: -90px; inset-inline-end: -60px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}
.tu-cta::after {
  content: '';
  position: absolute;
  bottom: -110px; inset-inline-start: -50px;
  width: 230px; height: 230px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}
.tu-cta h2 { color: var(--soft); font-size: clamp(1.35rem, 2.8vw, 2rem); font-weight: 900; margin-bottom: 0.5rem; }
.tu-cta p { color: var(--on-brand-soft); margin: 0; max-width: 520px; }
.tu-cta .actions { display: flex; gap: 0.8rem; flex-wrap: wrap; position: relative; z-index: 2; }

/* ── تجاوب عام ───────────────────────────────────────────────── */
@media (max-width: 575px) {
  .tu-hero .swiper { height: 92svh; min-height: 520px; }
  .tu-hero-actions a { flex: 1 1 auto; justify-content: center; text-align: center; }
  .tu-cta { text-align: center; justify-content: center; }
}

/* تخفيف الحركة لمن يفضّل ذلك */
@media (prefers-reduced-motion: reduce) {
  .tu-hero-bg, .tu-service-card, .tu-news-card, .tu-why-item, .tu-client,
  .tu-about2-visual .ring, .tu-about2-visual .chip, .tu-about2-visual .road .bus {
    transition: none !important;
    animation: none !important;
  }
}


/* ── أسماء الوجهات المتغيرة على الطريق ───────────────────────── */
.tu-about2-visual .road .city {
  display: inline-block;
  min-width: 86px;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.tu-about2-visual .road .city.swap { opacity: 0; transform: translateY(7px); }
