/* ══════════════════════════════════════════════════════════════
   HERO — مطابق VR Agency
══════════════════════════════════════════════════════════════ */
.hero-vr {
  position: relative;
  background: var(--c-black);
  min-height: 100vh;
  padding: clamp(100px, 14vh, 150px) var(--section-x) 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* خلفية خفيفة */
.hero-vr::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 60% 50% at 30% 30%, rgba(192,0,0,0.10) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 70% 70%, rgba(192,0,0,0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ═══ الـ Inner — نص + لوجو جنب بعض في Grid ═══ */
.hero-vr-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  flex: 1;
  display: grid !important;
  grid-template-columns: 1.15fr 0.85fr !important;
  gap: clamp(32px, 4vw, 64px);
  align-items: center;
  padding-bottom: clamp(30px, 6vh, 60px);
}

/* ═══ النص ═══ */
.hero-vr-text {
  max-width: 100%;
  text-align: right;
}

.hero-vr-title {
  font-family: var(--font);
  font-size: clamp(36px, 4.5vw, 68px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 clamp(16px, 2vh, 24px) 0;
}

.hero-vr-title-accent {
  color: var(--c-red-h);
  display: inline-block;
}

.hero-vr-title-small {
  display: block;
  font-size: clamp(20px, 2.4vw, 34px);
  font-weight: 700;
  color: var(--c-w80);
  margin-top: 8px;
}

.hero-vr-sub {
  font-family: var(--font);
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
  margin: 0 0 clamp(24px, 3vh, 36px) 0;
  max-width: 580px;
}

.hero-vr-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--c-red-h);
  color: #fff;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(192, 0, 0, 0.4);
  transition: transform 0.3s, box-shadow 0.3s;
}

.hero-vr-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(192, 0, 0, 0.6);
}

.hero-vr-cta svg {
  transition: transform 0.3s;
}

.hero-vr-cta:hover svg {
  transform: translateX(-4px);
}

/* ═══ اللوجو الضخم ═══ */
.hero-vr-logo-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.hero-vr-logo-img {
  width: 100%;
  max-width: 480px;
  height: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 20px 50px rgba(192, 0, 0, 0.35));
  animation: heroLogoFloat 7s ease-in-out infinite;
  will-change: transform;
}

@keyframes heroLogoFloat {
  0%, 100% { 
    transform: translateY(0);
  }
  50% { 
    transform: translateY(-12px);
  }
}

@media (max-width: 1024px) {
  .hero-vr {
    padding: 100px var(--sp-5) 0;
    min-height: auto;
  }
  .hero-vr-inner {
    grid-template-columns: 1fr !important;
    text-align: center;
    gap: 28px;
    padding-bottom: 36px;
  }
  .hero-vr-text { 
    text-align: center;
    order: 2; 
  }
  .hero-vr-sub { margin-left: auto; margin-right: auto; }
  .hero-vr-logo-wrap { 
    order: 1; 
    margin: 0 auto;
  }
  .hero-vr-logo-img { max-width: 300px; }
}

@media (max-width: 640px) {
  .hero-vr { padding: 80px var(--sp-4) 0; }
  .hero-vr-title { font-size: 30px; }
  .hero-vr-title-small { font-size: 18px; }
  .hero-vr-logo-img { max-width: 220px; }
}



/* ══════════════════════════════════════════════════════════════
   HERO SERVICES MARQUEE (Full Width 100vw)
══════════════════════════════════════════════════════════════ */
.hero-vr-services {
  position: relative;
  z-index: 2;
  width: 100vw;
  margin-right: calc(-50vw + 50%);
  margin-left: calc(-50vw + 50%);
  padding: clamp(20px, 3vw, 32px) 0;
  background: rgba(10, 0, 0, 0.5);
  border-top: 1px solid rgba(192, 0, 0, 0.15);
  border-bottom: 1px solid rgba(192, 0, 0, 0.15);
  overflow: hidden;
  direction: ltr;
}

.hero-vr-services::before,
.hero-vr-services::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: clamp(60px, 12vw, 180px);
  z-index: 2;
  pointer-events: none;
}
.hero-vr-services::before {
  right: 0;
  background: linear-gradient(270deg, rgba(10,0,0,0.95), transparent 100%);
}
.hero-vr-services::after {
  left: 0;
  background: linear-gradient(90deg, rgba(10,0,0,0.95), transparent 100%);
}

.hero-vr-services-track {
  display: inline-flex;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  white-space: nowrap;
  animation: servicesScroll 40s linear infinite;
  will-change: transform;
}

.hero-vr-services-track > span {
  font-family: var(--font);
  font-size: clamp(16px, 2vw, 24px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.hero-vr-services-track > .dot {
  color: var(--c-red-h);
  font-size: clamp(16px, 2vw, 24px);
}

@keyframes servicesScroll {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}


/* ══════════════════════════════════════════════════════════════
   TEAM SECTION — 4 columns (7 cards = 4+3)
══════════════════════════════════════════════════════════════ */

/* ══════════════════════════════════════════════════════════════
   CLIENTS SECTION — Marquee Full Width (100vw)
══════════════════════════════════════════════════════════════ */
.section-clients {
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--c-s1);
  border-top: 1px solid rgba(192, 0, 0, 0.10);
  border-bottom: 1px solid rgba(192, 0, 0, 0.10);
  overflow: hidden;
  width: 100%;
  position: relative;
}

/* الشرايط */
.clients-row {
  position: relative;
  width: 100vw;
  margin-right: calc(-50vw + 50%);
  margin-left: calc(-50vw + 50%);
  overflow: hidden;
  padding: clamp(24px, 4vw, 40px) 0;
  direction: ltr;
}

/* Fade على الجناب */
.clients-row::before,
.clients-row::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: clamp(60px, 12vw, 180px);
  z-index: 2;
  pointer-events: none;
}
.clients-row::before {
  right: 0;
  background: linear-gradient(270deg, var(--c-s1) 0%, transparent 100%);
}
.clients-row::after {
  left: 0;
  background: linear-gradient(90deg, var(--c-s1) 0%, transparent 100%);
}

/* Track */
.clients-track {
  display: inline-flex;
  gap: clamp(60px, 9vw, 130px);
  width: max-content;
  align-items: center;
  will-change: transform;
}

.clients-row-top .clients-track {
  animation: marqueeLTR 90s linear infinite;
}

.clients-row-bottom .clients-track {
  animation: marqueeRTL 90s linear infinite;
}

@keyframes marqueeLTR {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

@keyframes marqueeRTL {
  from { transform: translate3d(-50%, 0, 0); }
  to { transform: translate3d(0, 0, 0); }
}

.clients-track:hover {
  animation-play-state: paused;
}

/* اللوجو */
.client-logo {
  flex-shrink: 0;
  width: clamp(200px, 18vw, 280px);
  height: clamp(100px, 10vw, 140px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.85;
  transition: opacity 0.35s, transform 0.35s, filter 0.35s;
  cursor: pointer;
}

.client-logo:hover {
  opacity: 1;
  transform: scale(1.08);
}

.client-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
  transition: filter 0.35s;
}

.client-logo:hover img {
  filter: brightness(0) invert(1) drop-shadow(0 0 12px rgba(255, 255, 255, 0.6));
}

.client-logo[title="BLILTNA"] img {
  transform: scale(0.5);
  transform-origin: center;
}

.client-logo[title="NH Clinics"] img {
  transform: scale(0.75);
  transform-origin: center;
}

/* Light theme */
[data-theme="light"] .section-clients { background: #fff5f5; }
[data-theme="light"] .clients-row::before { background: linear-gradient(270deg, #fff5f5 0%, transparent 100%); }
[data-theme="light"] .clients-row::after  { background: linear-gradient(90deg, #fff5f5 0%, transparent 100%); }
[data-theme="light"] .client-logo img { filter: brightness(0); opacity: 0.8; }
[data-theme="light"] .client-logo:hover img { filter: brightness(0); opacity: 1; }

@media (max-width: 768px) {
  .client-logo { width: 160px; height: 80px; }
  .clients-track { gap: 50px; }
}

@media (min-width: 769px) and (max-width: 1200px) {
  .client-logo { 
    width: clamp(160px, 15vw, 220px); 
    height: clamp(80px, 8vw, 110px); 
  }
  .clients-track { gap: clamp(40px, 6vw, 80px); }
}

/* Tighten section padding to eliminate huge gaps */
.section-about-vr,
.section-values-vr,
.section-services,
.section-team {
  padding: clamp(60px, 8vw, 100px) 0 !important;
}


.section-team {
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--c-black);
  position: relative;
  overflow: hidden;
}

.section-team::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 140%; height: 100%;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(192,0,0,0.10) 0%, transparent 70%);
  pointer-events: none;
}

.team-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: clamp(18px, 2.5vw, 28px) !important;
  max-width: 1280px !important;
  margin: 0 auto !important;
  padding: 0 var(--section-x) !important;
  width: 100%;
  box-sizing: border-box;
}

/* تابلت كبير: 3 أعمدة */
@media (max-width: 1023px) and (min-width: 769px) {
  .team-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

/* تابلت: 2 عمود */
@media (max-width: 768px) and (min-width: 481px) {
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

/* موبايل: 1 عمود */
@media (max-width: 480px) {
  .team-grid {
    grid-template-columns: 1fr !important;
  }
}

/* الكارت */
.team-grid .role-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: clamp(16px, 2vw, 22px) clamp(12px, 1.5vw, 18px);
  background: rgba(10, 0, 0, 0.6);
  border: 1px solid rgba(192, 0, 0, 0.12);
  border-radius: var(--r-xl);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  min-width: 0;
  overflow: hidden;
  cursor: pointer;
}

.team-grid .role-card:hover {
  transform: translateY(-8px);
  border-color: rgba(192, 0, 0, 0.5);
  box-shadow: 0 24px 60px rgba(192, 0, 0, 0.25);
}

.team-grid .role-image-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: var(--sp-4);
  overflow: hidden;
  border-radius: var(--r-lg);
}

.team-grid .role-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 170px;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: #000;
  border: 2px solid rgba(192, 0, 0, 0.30);
  position: relative;
  transition: border-color 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-grid .role-card:hover .role-image {
  border-color: var(--c-red-h);
}

.team-grid .role-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: grayscale(1) brightness(0.85);
  transition: 
    filter 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.team-grid .role-card:hover .role-image img {
  filter: grayscale(0) brightness(1.05);
  transform: scale(1.06);
}

.team-grid .role-name-en {
  font-size: 15px;
  font-weight: 900;
  color: #fff;
  margin: 0 0 4px 0;
  line-height: 1.2;
  word-break: break-word;
  transition: color 0.35s ease;
}

.team-grid .role-card:hover .role-name-en {
  color: var(--c-red, #c00000);
}

.team-grid .role-name-ar {
  font-size: 12px;
  font-weight: 700;
  color: var(--c-red-h);
  margin: 0 0 var(--sp-3) 0;
  letter-spacing: 0.5px;
}

.team-grid .role-desc {
  font-size: 12.5px;
  color: var(--c-w60);
  line-height: 1.55;
  margin: 0;
  max-width: 100%;
}

.team-grid .role-line {
  width: 0;
  height: 2px;
  background: var(--c-red-h);
  transition: width 0.5s;
  margin-top: var(--sp-3);
}

.team-grid .role-card:hover .role-line {
  width: 60%;
}

/* Light theme */
[data-theme="light"] .section-team {
  background: #fafafa;
}
[data-theme="light"] .team-grid .role-card {
  background: #fff;
}
[data-theme="light"] .team-grid .role-name-en {
  color: #1a0000;
}
[data-theme="light"] .team-grid .role-desc {
  color: rgba(26, 0, 0, 0.65);
}

/* ══════════════════════════════════════════════════════════════
   SERVICES SECTION — 5 cards (مطابق VR Agency)
══════════════════════════════════════════════════════════════ */
.section-services {
  padding: clamp(50px, 6vw, 90px) 0;
  background: var(--c-black);
}

.services-grid-5 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--sp-6);
}

.service-vr-card {
  position: relative;
  padding: var(--sp-8) var(--sp-6);
  background: rgba(10, 0, 0, 0.6);
  border: 1px solid rgba(192, 0, 0, 0.12);
  border-radius: var(--r-xl);
  transition: all 0.4s var(--e-float);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-vr-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c-red), var(--c-red-h));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
}

.service-vr-card:hover {
  transform: translateY(-8px);
  border-color: rgba(192, 0, 0, 0.4);
  box-shadow: 0 20px 50px rgba(192, 0, 0, 0.2);
  background: rgba(20, 0, 0, 0.7);
}

.service-vr-card:hover::before {
  transform: scaleX(1);
}

.service-vr-icon {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: rgba(192, 0, 0, 0.12);
  border: 1px solid rgba(192, 0, 0, 0.30);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-red-h);
  margin-bottom: var(--sp-5);
  transition: all 0.4s var(--e-float);
}

.service-vr-card:hover .service-vr-icon {
  background: rgba(192, 0, 0, 0.25);
  transform: scale(1.08);
  box-shadow: 0 0 30px rgba(192, 0, 0, 0.4);
}

.service-vr-title {
  font-size: var(--t-lg);
  font-weight: 900;
  color: #fff;
  margin: 0 0 var(--sp-3) 0;
  line-height: 1.3;
}

.service-vr-desc {
  font-size: var(--t-sm);
  color: var(--c-w60);
  line-height: 1.7;
  margin: 0;
  flex: 1;
}

[data-theme="light"] .section-services { background: #fafafa; }
[data-theme="light"] .service-vr-card { background: #fff; }
[data-theme="light"] .service-vr-title { color: #1a0000; }
[data-theme="light"] .service-vr-desc { color: rgba(26, 0, 0, 0.65); }

/* ══════════════════════════════════════════════════════════════
   REGISTRATION SECTION — سجّل معانا (مطابق VR Agency Contact)
══════════════════════════════════════════════════════════════ */
.section-register {
  padding: clamp(50px, 6vw, 90px) var(--section-x);
  background: var(--c-black);
  position: relative;
  overflow: hidden;
}

.section-register::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 30% 20%, rgba(192,0,0,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 70% 80%, rgba(192,0,0,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.register-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
}

/* ═══ الكارت ═══ */
.register-card {
  background: linear-gradient(135deg, rgba(15,0,0,0.85), rgba(5,0,0,0.95));
  border: 1px solid rgba(192,0,0,0.18);
  border-radius: 28px;
  padding: clamp(32px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}

.register-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--c-red-h), transparent);
}

/* ═══ العمود اليمين (النص) ═══ */
.register-left {
  display: flex;
  flex-direction: column;
  max-width: 100%;
}

.register-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  color: var(--c-red-h);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: var(--sp-5);
}

.register-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-red-h);
  animation: pulseDot 1.8s ease-in-out infinite;
}

.register-title {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  margin: 0 0 var(--sp-5) 0;
  letter-spacing: -0.02em;
}

.register-title-accent {
  color: var(--c-red-h);
  display: inline;
}

.register-lead {
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin: 0 0 var(--sp-8) 0;
  max-width: 460px;
}

.register-reach-title {
  font-size: 20px;
  font-weight: 900;
  color: var(--c-red-h);
  margin: 0 0 var(--sp-5) 0;
}

/* ═══ معلومات التواصل ═══ */
.register-info {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.register-info li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  font-weight: 600;
}

.register-info a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color 0.25s;
}

.register-info a:hover {
  color: var(--c-red-h);
}

.register-info-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(192,0,0,0.12);
  border: 1px solid rgba(192,0,0,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-red-h);
  flex-shrink: 0;
}

/* ═══ العمود الشمال (الفورم) ═══ */
.register-right {
  display: flex;
  align-items: flex-start;
  padding-top: clamp(0px, 2vw, 24px);
}

.register-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.register-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

@media (max-width: 640px) {
  .register-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ═══ حقل الفورم — خط من تحت بس زي VR ═══ */
.register-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.register-field-full {
  grid-column: 1 / -1;
}

.register-field label {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.3px;
}

.register-field input,
.register-field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  font-family: var(--font);
  font-size: 15px;
  padding: 10px 0;
  outline: none;
  transition: border-color 0.3s, padding 0.3s;
  resize: vertical;
  direction: rtl;
}

.register-field textarea {
  min-height: 80px;
  padding-top: 8px;
}

.register-field input::placeholder,
.register-field textarea::placeholder {
  color: rgba(255,255,255,0.30);
  font-size: 14px;
}

.register-field input:focus,
.register-field textarea:focus {
  border-bottom-color: var(--c-red-h);
  padding-bottom: 12px;
}

.register-field input.error,
.register-field textarea.error {
  border-bottom-color: var(--c-error, #ff4444);
  animation: errShake 300ms;
}

.register-field input.valid,
.register-field textarea.valid {
  border-bottom-color: var(--c-success, #25d366);
}

/* ═══ زر الإرسال ═══ */
.register-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 40px;
  background: linear-gradient(135deg, var(--c-red), var(--c-red-h));
  color: #fff;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  align-self: flex-start;
  box-shadow: 0 10px 28px rgba(192, 0, 0, 0.35);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.register-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(192, 0, 0, 0.55);
}

.register-submit:active {
  transform: translateY(-1px) scale(0.98);
}

.register-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.register-submit svg {
  transition: transform 0.3s;
}

.register-submit:hover svg {
  transform: translateX(-4px);
}

/* ═══ الحالة ═══ */
.register-status {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  padding: 12px 0;
  display: none;
}

.register-status:not(:empty) {
  display: block;
}

.register-status.success {
  color: var(--c-success, #25d366);
}

.register-status.error {
  color: var(--c-error, #ff4444);
}

.register-status.loading {
  color: rgba(255,255,255,0.6);
}

/* ═══ Responsive ═══ */
@media (max-width: 900px) {
  .register-card {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 32px 24px;
  }
}

/* ═══ Light theme ═══ */
[data-theme="light"] .section-register {
  background: #fafafa;
}

[data-theme="light"] .register-card {
  background: #fff;
  border-color: rgba(192,0,0,0.15);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

[data-theme="light"] .register-title {
  color: #1a0000;
}

[data-theme="light"] .register-lead {
  color: rgba(26,0,0,0.6);
}

[data-theme="light"] .register-field label {
  color: #1a0000;
}

[data-theme="light"] .register-field input,
[data-theme="light"] .register-field textarea {
  color: #1a0000;
  border-bottom-color: rgba(0,0,0,0.15);
}

[data-theme="light"] .register-field input::placeholder,
[data-theme="light"] .register-field textarea::placeholder {
  color: rgba(26,0,0,0.3);
}

[data-theme="light"] .register-info li,
[data-theme="light"] .register-info a {
  color: rgba(26,0,0,0.75);
}

[data-theme="light"] .register-info a:hover {
  color: var(--c-red-h);
}

/* ============================================
   About Section — VR Style
   ============================================ */
.section-about-vr {
  padding: var(--section-y) var(--section-x);
  background: var(--c-black);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.section-about-vr-inner {
  max-width: var(--narrow-w);
  margin: 0 auto;
}

.section-about-vr-title {
  font-size: var(--t-3xl);
  font-weight: 800;
  color: var(--c-w100);
  margin-bottom: var(--sp-6);
  line-height: 1.2;
}

.section-about-vr-lead {
  font-size: var(--t-xl);
  font-weight: 600;
  color: var(--c-w80);
  line-height: 1.6;
  margin-bottom: var(--sp-5);
}

.section-about-vr-body {
  font-size: var(--t-base);
  color: var(--c-w60);
  line-height: 1.8;
  max-width: var(--narrow-w);
  margin: 0 auto;
}

.section-about-vr .accent {
  color: var(--c-red);
  font-weight: 700;
}

/* تحسين الـ Marquee — منع horizontal scroll */
body {
  overflow-x: hidden;
}

/* ============================================
   Contact Form — Status Messages
   ============================================ */
.register-status {
  display: none;
  margin-top: var(--sp-5, 20px);
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 15px;
  line-height: 1.6;
  text-align: center;
  transition: opacity 0.3s ease;
}

.register-status.success {
  display: block;
  background: rgba(16, 185, 129, 0.12);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.35);
}

.register-status.error {
  display: block;
  background: rgba(192, 0, 0, 0.12);
  color: #ff6b6b;
  border: 1px solid rgba(192, 0, 0, 0.35);
}

.register-status.loading {
  display: block;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.register-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ============================================
   Circular CTA Button — Arabic RTL
   ============================================ */
.circle-cta-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: var(--sp-10, 40px) 0;
  padding: 0 var(--section-x, 20px);
}

.circle-cta {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--c-w100, #fff);
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
}

.circle-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(192, 0, 0, 0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.circle-cta:hover {
  border-color: var(--c-red, #c00000);
  transform: scale(1.06);
  box-shadow: 0 0 40px rgba(192, 0, 0, 0.25);
}

.circle-cta:hover::before {
  opacity: 1;
}

.circle-cta-text {
  position: relative;
  z-index: 1;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.circle-cta-arrow {
  font-size: 22px;
  line-height: 1;
  position: relative;
  z-index: 1;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.circle-cta:hover .circle-cta-text {
  transform: translateY(-2px);
}

.circle-cta:hover .circle-cta-arrow {
  transform: translate(-4px, -4px);
}

@media (max-width: 768px) {
  .circle-cta {
    width: 120px;
    height: 120px;
    font-size: 13px;
  }
  .circle-cta-arrow {
    font-size: 18px;
  }
}

/* ============================================
   Values Section — 2×2 Grid
   ============================================ */
.section-values-vr {
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--c-black);
  position: relative;
  overflow: hidden;
}

.section-values-vr-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--c-w100);
  text-align: center;
  margin: 0 auto var(--sp-10, 40px);
  max-width: 700px;
  padding: 0 var(--section-x, 20px);
}

.values-vr-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 32px);
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--section-x, 20px);
}

.value-vr-card {
  background: rgba(10, 0, 0, 0.5);
  border: 1px solid rgba(192, 0, 0, 0.15);
  border-radius: 18px;
  padding: clamp(24px, 3vw, 36px) clamp(20px, 2.5vw, 28px);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
}

.value-vr-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(192, 0, 0, 0.08) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.value-vr-card:hover {
  transform: translateY(-6px);
  border-color: rgba(192, 0, 0, 0.45);
  box-shadow: 0 20px 50px rgba(192, 0, 0, 0.15);
}

.value-vr-card:hover::before {
  opacity: 1;
}

.value-vr-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--sp-4, 16px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-red, #c00000);
  background: rgba(192, 0, 0, 0.08);
  border: 1px solid rgba(192, 0, 0, 0.2);
  border-radius: 50%;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.value-vr-card:hover .value-vr-icon {
  background: rgba(192, 0, 0, 0.15);
  transform: scale(1.08);
}

.value-vr-title {
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 800;
  color: var(--c-w100);
  margin: 0 0 var(--sp-3, 12px);
  line-height: 1.3;
}

.value-vr-desc {
  font-size: clamp(13px, 1.6vw, 15px);
  color: var(--c-w60);
  line-height: 1.7;
  margin: 0;
}

/* موبايل: عمود واحد */
@media (max-width: 640px) {
  .values-vr-grid {
    grid-template-columns: 1fr;
  }
}

