@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Tajawal:wght@400;500;700;800&display=swap');

/* Happy Life — ألوان من اللوجو (وردي/فوشيا) + أخضر */
:root {
  --primary: #c71585;
  --primary-dark: #a0126b;
  --primary-light: #e91e9e;
  --secondary: #22c55e;
  --secondary-dark: #1a0a14;
  --secondary-light: #4ade80;
  --accent: #22c55e;
  --accent-light: #86efac;
  --bg: #fdf2f8;
  --bg-dark: #1a0a14;
  --text: #1a0a14;
  --text-muted: #6b4c5e;
  --white: #ffffff;
  --shadow: 0 10px 40px rgba(199, 21, 133, 0.15);
  --radius: 12px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --motion-smooth: 0.62s cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Tajawal', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.lang-en .ar,
body:not(.lang-en) .en {
  display: none;
}

body.lang-en .en,
body:not(.lang-en) .ar {
  display: block;
}

body.lang-en {
  direction: ltr;
  font-family: 'Manrope', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.3;
  letter-spacing: 0.1px;
}

body.lang-en h1,
body.lang-en h2,
body.lang-en h3,
body.lang-en h4,
body.lang-en h5,
body.lang-en h6 {
  letter-spacing: -0.01em;
}

body.lang-en .hero-split { flex-direction: row-reverse; }
body.lang-en .split-section { flex-direction: row-reverse; }
body.lang-en .footer-split { flex-direction: row-reverse; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(199, 21, 133, 0.12);
  transition: var(--transition), box-shadow 0.35s ease, background-color 0.35s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 8px 30px rgba(199, 21, 133, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--primary);
  font-weight: 700;
  font-size: 1.35rem;
}

.logo-img {
  height: 48px;
  width: auto;
  max-width: 180px;
  display: block;
  object-fit: contain;
}
.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color var(--motion-smooth), transform var(--motion-smooth);
}

.nav-link:hover,
.nav-link.active { color: var(--primary); }

.nav-link:hover {
  transform: translateY(-1px);
}

.lang-toggle {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  border: none;
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.85rem;
  text-decoration: none;
  transition: transform var(--motion-smooth), box-shadow var(--motion-smooth);
}

.lang-toggle:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.menu-btn {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-btn span {
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.28);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-split {
  display: flex;
  gap: 60px;
  align-items: center;
  justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto;
}

.hero-ar,
.hero-en,
.hero-block {
  flex: 1;
  color: var(--white);
}
.hero-single .hero-block { max-width: 640px; margin: 0 auto; text-align: center; }
body.lang-en .hero-single .hero-block { text-align: center; }
.split-single .split-block { max-width: 100%; }
.split-block.text-center { text-align: center; }
.section-sub { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 24px; }
.section-sub.center { text-align: center; }

.hero-title {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.hero-sub {
  font-size: 1.05rem;
  opacity: 0.95;
  margin-bottom: 24px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: transform var(--motion-smooth), box-shadow var(--motion-smooth), background-color var(--motion-smooth), color var(--motion-smooth);
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: var(--accent);
  color: var(--bg-dark);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(34, 197, 94, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.hero-scroll-icon {
  display: block;
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255,255,255,0.7);
  border-radius: 12px;
  position: relative;
  animation: scrollBounce 2.2s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}

.hero-scroll-icon::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: rgba(255,255,255,0.8);
  border-radius: 2px;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.9; }
  50% { transform: translateX(-50%) translateY(6px); opacity: 1; }
}

/* Animations — smooth ease (اسموث) */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInSoftScale {
  from { opacity: 0; transform: translateY(10px) scale(0.992); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.hero .animate-in {
  opacity: 0;
  transform: translateY(12px);
  will-change: transform, opacity;
  animation: fadeInUp 1.05s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero .animate-in.delay-1 { animation-delay: 0.2s; }
.hero .animate-in.delay-2 { animation-delay: 0.4s; }

html.js-enabled section:not(.hero) .animate-in:not(.visible) {
  opacity: 0;
  transform: translateY(10px);
}
html.js-enabled section:not(.hero) .animate-in.visible {
  will-change: transform, opacity;
  animation: fadeInSoftScale 0.95s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
html.js-enabled section:not(.hero) .animate-in.visible.delay-1 { animation-delay: 0.12s; }
html.js-enabled section:not(.hero) .animate-in.visible.delay-2 { animation-delay: 0.24s; }
html.js-enabled section:not(.hero) .animate-in.visible.delay-3 { animation-delay: 0.36s; }

/* Stats / نتائج بأرقام */
.section-stats {
  background: linear-gradient(180deg, var(--bg) 0%, rgba(199, 21, 133, 0.06) 100%);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 28px;
  margin-top: 40px;
  text-align: center;
}
.stat-card {
  background: var(--white);
  padding: 32px 24px;
  border-radius: var(--radius);
  box-shadow: 0 4px 24px rgba(199, 21, 133, 0.08);
  border: 1px solid rgba(199, 21, 133, 0.1);
  transition: transform var(--motion-smooth), box-shadow var(--motion-smooth), border-color var(--motion-smooth);
}
.stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(199, 21, 133, 0.15);
  border-color: rgba(199, 21, 133, 0.22);
}
.stat-number {
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 8px;
  display: block;
}
.stat-number .suffix { font-size: 0.6em; opacity: 0.9; }
.stat-label {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* Sections */
.section {
  padding: 80px 0;
}

.section-about { background: var(--white); }
.section-services { background: var(--bg); }

/* Trust promo — horizontal cards, framed visuals */
.section-trust-promo {
  position: relative;
  background:
    radial-gradient(ellipse 90% 60% at 50% 0%, rgba(253, 242, 248, 0.95) 0%, transparent 55%),
    linear-gradient(180deg, #fefcfe 0%, #f8f4f7 45%, #fefcfe 100%);
  overflow: hidden;
}

.section-trust-promo::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(199, 21, 133, 0.06) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  opacity: 0.65;
}

.section-trust-promo .container {
  position: relative;
  z-index: 1;
}

.trust-promo-head {
  margin-bottom: 44px;
}

.trust-promo-eyebrow {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin: 0 0 10px 0;
  opacity: 0.9;
}

.trust-promo-head .section-title {
  margin-bottom: 12px;
}

.trust-promo-lead {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.trust-promo-stack {
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 920px;
  margin: 0 auto;
}

.trust-promo-card--split {
  display: grid;
  grid-template-columns: minmax(200px, 38%) minmax(260px, 1fr);
  align-items: stretch;
  gap: 0;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(199, 21, 133, 0.1);
  box-shadow:
    0 4px 6px -1px rgba(26, 10, 20, 0.04),
    0 18px 42px -12px rgba(199, 21, 133, 0.14);
  transition: box-shadow 0.4s ease, transform 0.35s ease;
}

.trust-promo-card--split:hover {
  box-shadow:
    0 8px 12px -2px rgba(26, 10, 20, 0.06),
    0 26px 50px -14px rgba(199, 21, 133, 0.18);
}

.trust-promo-card--registry .trust-promo-body {
  border-inline-start: 4px solid var(--primary);
}

.trust-promo-card--payment .trust-promo-body {
  border-inline-start: 4px solid #16a34a;
}

.trust-promo-card--location .trust-promo-body {
  border-inline-start: 4px solid #7c3aed;
}

.trust-promo-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 18px;
  background:
    linear-gradient(145deg, rgba(253, 242, 248, 0.9) 0%, rgba(255, 255, 255, 0.6) 50%, rgba(253, 242, 248, 0.35) 100%);
}

a.trust-promo-image-link {
  display: block;
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
  text-decoration: none;
  color: inherit;
  border-radius: 20px;
  cursor: zoom-in;
  transition: transform 0.25s ease;
}

a.trust-promo-image-link:hover .trust-promo-frame,
a.trust-promo-image-link:focus-visible .trust-promo-frame {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 2px 4px rgba(26, 10, 20, 0.06),
    0 16px 36px -6px rgba(199, 21, 133, 0.22);
  border-color: rgba(199, 21, 133, 0.22);
}

a.trust-promo-image-link:hover {
  transform: scale(1.02);
}

a.trust-promo-image-link:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 4px;
}

.trust-promo-frame {
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
  padding: 12px 10px 14px;
  background: linear-gradient(180deg, #ffffff 0%, #fdf8fb 100%);
  border-radius: 16px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 1px 2px rgba(26, 10, 20, 0.05),
    0 12px 28px -8px rgba(199, 21, 133, 0.15);
  border: 1px solid rgba(199, 21, 133, 0.12);
}

.trust-promo-frame img {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(52vw, 280px);
  object-fit: contain;
  object-position: center top;
  border-radius: 10px;
}

.trust-promo-body {
  position: relative;
  padding: 26px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
}

.trust-promo-step {
  position: absolute;
  top: 18px;
  left: 18px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: rgba(199, 21, 133, 0.35);
}

body.lang-ar .trust-promo-step {
  left: auto;
  right: 18px;
}

.trust-promo-body h3 {
  font-size: clamp(1.12rem, 2vw, 1.28rem);
  color: var(--secondary-dark);
  margin: 0;
  padding-top: 6px;
  line-height: 1.35;
  font-weight: 800;
}

.trust-promo-body > p:not(.trust-promo-meta):not(.trust-promo-warning):not(.trust-promo-fine):not(.trust-promo-address) {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.68;
}

.trust-promo-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin: 4px 0 0 0;
  padding: 14px 16px;
  background: rgba(253, 242, 248, 0.65);
  border-radius: 12px;
  border: 1px solid rgba(199, 21, 133, 0.12);
}

.trust-meta-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.trust-cr-code {
  font-family: ui-monospace, 'Cascadia Code', 'Segoe UI Mono', monospace;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--secondary-dark);
  word-break: break-all;
}

.trust-promo-fine {
  margin: 0 !important;
  font-size: 0.88rem !important;
  color: var(--text-muted) !important;
  opacity: 0.95;
}

.trust-pay-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 4px;
  padding: 14px 22px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.03em;
  color: #fff;
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  box-shadow: 0 4px 14px rgba(22, 163, 74, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  width: fit-content;
  max-width: 100%;
}

.trust-pay-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(22, 163, 74, 0.42);
  color: #fff;
}

.trust-pay-icon {
  display: flex;
  opacity: 0.95;
}

.trust-promo-warning {
  margin: 0 !important;
  font-size: 0.84rem !important;
  line-height: 1.55 !important;
  color: #7f1d1d !important;
  background: linear-gradient(135deg, rgba(254, 242, 242, 0.95) 0%, rgba(255, 247, 237, 0.7) 100%);
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(248, 113, 113, 0.25);
}

.trust-promo-address {
  margin: 0 !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  color: var(--text) !important;
  line-height: 1.55 !important;
}

.trust-promo-phones {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.trust-phone-chip {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  color: var(--primary);
  background: rgba(253, 242, 248, 0.85);
  border: 1px solid rgba(199, 21, 133, 0.22);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.trust-phone-chip:hover {
  background: var(--white);
  border-color: var(--primary);
  color: var(--primary-dark);
}

.trust-map-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  padding: 10px 16px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  width: fit-content;
}

.trust-map-btn:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(124, 58, 237, 0.38);
}

.trust-map-btn svg {
  flex-shrink: 0;
}

/* Contact page map link (same trust palette) */
a.trust-map-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid rgba(199, 21, 133, 0.35);
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

a.trust-map-link:hover {
  color: var(--primary-dark);
  border-bottom-color: var(--primary);
}

@media (max-width: 768px) {
  .trust-promo-card--split {
    grid-template-columns: 1fr;
    border-radius: 18px;
  }

  .trust-promo-visual {
    padding: 20px 16px 8px;
  }

  .trust-promo-frame {
    max-width: 260px;
  }

  .trust-promo-frame img {
    max-height: 240px;
  }

  .trust-promo-body {
    padding: 22px 20px 24px;
    border-inline-start-width: 0 !important;
    border-block-start: 4px solid var(--primary);
  }

  .trust-promo-card--payment .trust-promo-body {
    border-block-start-color: #16a34a;
  }

  .trust-promo-card--location .trust-promo-body {
    border-block-start-color: #7c3aed;
  }

  .trust-promo-step {
    top: 14px;
    left: 14px;
  }

  body.lang-ar .trust-promo-step {
    left: auto;
    right: 14px;
  }

  .trust-pay-btn {
    width: 100%;
    justify-content: center;
  }
}

.services-intro {
  max-width: 720px;
  margin: 0 auto 36px;
  text-align: center;
  font-size: 1.08rem;
  color: var(--text-muted);
  line-height: 1.75;
}
.section-match-check { background: linear-gradient(180deg, rgba(253, 242, 248, 0.5) 0%, rgba(255, 255, 255, 0.95) 100%); }
.section-cta { background: linear-gradient(135deg, var(--primary) 0%, var(--secondary-dark) 100%); color: var(--white); }
.section-cta .section-title,
.section-cta p,
.section-cta .btn-primary { color: var(--white); }
.section-cta .btn-primary { background: var(--accent); color: var(--bg-dark); }
.section-cta .btn-primary:hover { background: var(--accent-light); }
.section-cta .btn-outline { color: #fff; border-color: rgba(255,255,255,0.75); }
.section-cta .btn-outline:hover { background: rgba(255,255,255,0.12); color: #fff; }
.cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.section-match-check .split-block p {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
}

.section-title.center {
  text-align: center;
  margin-bottom: 40px;
}

.split-section {
  /* display: flex; */
  gap: 60px;
  align-items: flex-start;
  justify-content: space-between;
}

.split-ar,
.split-en {
  flex: 1;
  max-width: 480px;
}

.split-section p {
  margin-bottom: 16px;
  color: var(--text-muted);
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform var(--motion-smooth), box-shadow var(--motion-smooth), border-color var(--motion-smooth);
  border: 1px solid rgba(199, 21, 133, 0.08);
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 50px rgba(199, 21, 133, 0.18);
  border-color: rgba(199, 21, 133, 0.2);
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.card h3 {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Contact page */
.contact-main { padding-top: 72px; }
.section-contact {
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(253, 242, 248, 0.9) 0%, transparent 55%),
    var(--bg);
}

.contact-page-head {
  margin-bottom: 36px;
}

.contact-page-eyebrow {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin: 0 0 10px 0;
}

.contact-page-head .section-title {
  margin-bottom: 12px;
}

.contact-page-intro {
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.contact-panel {
  max-width: 560px;
  margin: 0 auto;
  padding: 8px 8px 28px;
  background: var(--white);
  border-radius: 22px;
  border: 1px solid rgba(199, 21, 133, 0.12);
  box-shadow:
    0 4px 6px -1px rgba(26, 10, 20, 0.04),
    0 22px 48px -16px rgba(199, 21, 133, 0.14);
}

.contact-block {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px 18px;
  align-items: start;
  padding: 22px 22px 20px;
  border-bottom: 1px solid rgba(199, 21, 133, 0.08);
}

.contact-block-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(253, 242, 248, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
  color: var(--primary);
  border: 1px solid rgba(199, 21, 133, 0.12);
  box-shadow: 0 4px 12px rgba(199, 21, 133, 0.08);
}

.contact-block-title {
  margin: 0 0 8px 0;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--primary);
}

.contact-block-value {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.55;
}

.contact-mail-link {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(199, 21, 133, 0.35);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.contact-mail-link:hover {
  color: var(--primary-dark);
  border-bottom-color: var(--primary);
}

.contact-map-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
  box-shadow: 0 4px 14px rgba(124, 58, 237, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-map-pill:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(124, 58, 237, 0.38);
}

.contact-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-phone-lg.trust-phone-chip {
  padding: 12px 20px;
  font-size: 1rem;
}

.contact-payment-highlight {
  padding: 24px 22px 26px;
  margin: 6px 14px 0;
  border-radius: 18px;
  background: linear-gradient(160deg, rgba(240, 253, 244, 0.95) 0%, rgba(255, 255, 255, 0.98) 50%, rgba(253, 242, 248, 0.35) 100%);
  border: 1px solid rgba(34, 197, 94, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.contact-payment-highlight-inner {
  text-align: center;
}

.contact-payment-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #15803d;
  background: rgba(34, 197, 94, 0.18);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.contact-payment-highlight-title {
  margin: 0 0 16px 0;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--secondary-dark);
  line-height: 1.35;
}

.contact-payment-bigbtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  max-width: 100%;
  padding: 16px 20px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  color: #fff !important;
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  box-shadow: 0 6px 20px rgba(22, 163, 74, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-payment-bigbtn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(22, 163, 74, 0.42);
  color: #fff !important;
}

.contact-payment-highlight-note {
  margin: 14px 0 0 0;
  font-size: 0.82rem;
  line-height: 1.55;
  color: #991b1b;
}

.contact-social-block {
  padding: 22px 22px 8px;
  text-align: center;
}

.contact-social-heading {
  margin-bottom: 14px !important;
}

.contact-social-links--page {
  justify-content: center;
  margin-bottom: 0;
}

.contact-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  padding: 18px 20px 8px;
}

.contact-page-actions .btn {
  min-width: 160px;
}
.contact-form-wrap {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: 0 4px 24px rgba(199, 21, 133, 0.08);
  border: 1px solid rgba(199, 21, 133, 0.1);
}
.contact-form label {
  display: block;
  margin-bottom: 18px;
}
.contact-form label span {
  display: block;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
  font-size: 0.9rem;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(199, 21, 133, 0.2);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color var(--transition);
}

.contact-form select[multiple] {
  min-height: 132px;
  padding: 8px 10px;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
}
.contact-form textarea { resize: vertical; min-height: 100px; }
.btn-block { width: 100%; text-align: center; margin-top: 8px; }
.contact-message {
  max-width: 560px;
  margin: 24px auto 0;
  padding: 16px 20px;
  border-radius: var(--radius);
  text-align: center;
  font-weight: 600;
}
.contact-message.success {
  background: rgba(34, 197, 94, 0.15);
  color: var(--secondary-dark);
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.match-check-wrap {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 28px;
  align-items: start;
  margin-top: 24px;
}

.register-form .register-subtitle {
  font-size: 1.2rem;
  color: var(--primary);
  margin: 22px 0 10px;
}

.register-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.register-full {
  grid-column: 1 / -1;
}

.match-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.match-results {
  background: var(--white);
  border: 1px solid rgba(199, 21, 133, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 4px 24px rgba(199, 21, 133, 0.08);
  padding: 24px;
}

.match-cards {
  display: grid;
  gap: 12px;
  margin-top: 16px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.match-card {
  border: 1px solid rgba(199, 21, 133, 0.14);
  background: linear-gradient(180deg, #fff 0%, rgba(253, 242, 248, 0.7) 100%);
  border-radius: 10px;
  padding: 14px 16px;
  box-shadow: 0 8px 24px rgba(199, 21, 133, 0.1);
  transition: transform var(--motion-smooth), box-shadow var(--motion-smooth), border-color var(--motion-smooth);
}

.match-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(199, 21, 133, 0.16);
  border-color: rgba(199, 21, 133, 0.28);
}

.match-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.match-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(199, 21, 133, 0.1);
  border: 1px solid rgba(199, 21, 133, 0.16);
  font-size: 1.05rem;
}

.match-badge {
  background: rgba(34, 197, 94, 0.16);
  color: #166534;
  border: 1px solid rgba(34, 197, 94, 0.35);
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 700;
  padding: 4px 10px;
}

.match-progress {
  height: 6px;
  width: 100%;
  border-radius: 999px;
  background: rgba(199, 21, 133, 0.12);
  margin-bottom: 10px;
  overflow: hidden;
}

.match-progress span {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #22c55e 0%, #16a34a 100%);
  box-shadow: 0 2px 10px rgba(34, 197, 94, 0.35);
}

.match-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
  color: var(--text-muted);
}

.match-card li strong {
  color: var(--text);
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 22px;
  padding: 14px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(253, 242, 248, 0.9) 100%);
  border: 1px solid rgba(199, 21, 133, 0.12);
}

.page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 14px;
  border-radius: 12px;
  text-decoration: none;
  border: 1px solid rgba(199, 21, 133, 0.2);
  color: #9d145f;
  background: linear-gradient(180deg, #ffffff 0%, #fff5fb 100%);
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 5px 14px rgba(199, 21, 133, 0.08);
  transition: transform var(--motion-smooth), box-shadow var(--motion-smooth), background-color var(--motion-smooth), color var(--motion-smooth);
}

.page-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(199, 21, 133, 0.18);
  color: var(--primary);
  border-color: rgba(199, 21, 133, 0.32);
}

.page-btn.active {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 12px 24px rgba(199, 21, 133, 0.3);
}

.page-btn.disabled {
  opacity: 0.45;
  pointer-events: none;
  box-shadow: none;
}

/* About page enhanced sections */
.about-hero {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(253, 242, 248, 0.85) 100%);
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.mission-card {
  background: var(--white);
  border: 1px solid rgba(199, 21, 133, 0.1);
  box-shadow: 0 8px 28px rgba(199, 21, 133, 0.1);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform var(--motion-smooth), box-shadow var(--motion-smooth);
}

.mission-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(199, 21, 133, 0.16);
}

.mission-card h2 {
  color: var(--primary);
  margin-bottom: 14px;
  font-size: 1.3rem;
}

.mission-card p {
  margin: 0;
  color: var(--text-muted);
}

.goal-box {
  margin-top: 30px;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.25);
  color: #14532d;
  padding: 16px 20px;
  border-radius: 10px;
  font-size: 1.03rem;
}

.goal-box strong {
  display: block;
  margin-bottom: 0.35em;
  font-size: 1.05em;
}

.honor-charter {
  background: linear-gradient(160deg, #ffd7ea 0%, #ffe8f4 30%, #fff 100%);
}

.charter-list {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.charter-item {
  background: linear-gradient(135deg, #d91c66 0%, #b51056 100%);
  color: #fff;
  border-radius: 999px;
  padding: 14px 20px;
  box-shadow: 0 8px 20px rgba(181, 16, 86, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 0.98rem;
  line-height: 1.8;
  transition: transform var(--motion-smooth), box-shadow var(--motion-smooth);
  position: relative;
  overflow: hidden;
}

.charter-item::after {
  content: '';
  position: absolute;
  top: -120%;
  left: -35%;
  width: 22%;
  height: 320%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.35) 50%, rgba(255, 255, 255, 0) 100%);
  transform: rotate(20deg);
  animation: charterShine 5.2s ease-in-out infinite;
  pointer-events: none;
}

.charter-item:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(181, 16, 86, 0.28);
}

@keyframes charterShine {
  0%, 75%, 100% { left: -35%; opacity: 0; }
  80% { opacity: 0.8; }
  92% { left: 125%; opacity: 0.25; }
}

/* Footer */
.site-footer {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #0d3d2a 100%);
  color: rgba(255,255,255,0.9);
  padding: 28px 0;
  text-align: center;
  margin-top: 0;
}
.site-footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.site-footer p {
  margin: 0;
  font-size: 0.95rem;
}
.footer-cr {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.footer-cr-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}
.footer-cr-value {
  font-family: ui-monospace, "Cascadia Code", "Segoe UI Mono", monospace;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: #fff;
}
.social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.social-link {
  text-decoration: none;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 0.86rem;
  font-weight: 600;
  transition: transform var(--motion-smooth), background-color var(--motion-smooth), border-color var(--motion-smooth), box-shadow var(--motion-smooth), color var(--motion-smooth);
}
.social-link-icon {
  width: 46px;
  height: 46px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), 0 8px 18px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(8px);
}
.social-link-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
.social-link:hover {
  transform: translateY(-3px) scale(1.03);
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.24);
}
.social-link[aria-label="Facebook"]:hover {
  color: #1877f2;
}
.social-link[aria-label="Instagram"]:hover {
  color: #f58529;
}
.social-link[aria-label="WhatsApp"]:hover {
  color: #25d366;
}
.social-link[aria-label="TikTok"]:hover {
  color: #111;
}
.contact-social-title {
  font-size: 1rem;
  margin: 6px 0 10px;
  color: var(--primary);
}
.contact-social-links {
  justify-content: flex-start;
  margin-bottom: 16px;
}
.contact-social-links .social-link {
  color: var(--primary);
  background: #fff;
  border-color: rgba(199, 21, 133, 0.2);
  box-shadow: 0 8px 18px rgba(199, 21, 133, 0.14);
}
.contact-social-links .social-link:hover {
  background: #fff8fc;
  border-color: rgba(199, 21, 133, 0.4);
}
.contact-social-links .social-link[aria-label="Facebook"] {
  color: #1877f2;
}
.contact-social-links .social-link[aria-label="Instagram"] {
  color: #d946a6;
}
.contact-social-links .social-link[aria-label="WhatsApp"] {
  color: #16a34a;
}
.contact-social-links .social-link[aria-label="TikTok"] {
  color: #111827;
}
.footer-split {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-ar,
.footer-en { font-size: 0.9rem; }

/* Responsive */
@media (max-width: 900px) {
  .nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    padding: 20px;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(199, 21, 133, 0.15);
    box-shadow: var(--shadow);
  }
  .nav.open { display: flex; }
  .nav-link { padding: 14px 0; border-bottom: 1px solid rgba(0,0,0,0.06); }
  .nav-link:last-of-type { border-bottom: none; }
  .menu-btn { display: flex; }
  .menu-btn.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .menu-btn.open span:nth-child(2) { opacity: 0; }
  .menu-btn.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
  .hero-split { flex-direction: column; gap: 40px; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-ar .btn, .hero-en .btn { margin: 0 auto; }
  .split-section { flex-direction: column; }
  .split-ar, .split-en { max-width: 100%; }
  body.lang-en .hero-split { flex-direction: column; }
  .match-check-wrap { grid-template-columns: 1fr; }
  .register-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .section { padding: 50px 0; }
  .footer-split { flex-direction: column; }
  .match-grid { grid-template-columns: 1fr; }
  .charter-item {
    border-radius: 18px;
    font-size: 0.94rem;
    padding: 12px 14px;
  }
}

/* Video fallback when no file */
.hero-video-wrap:not(:has(.hero-video source[src])) .hero-video {
  display: none;
}

.hero-video-wrap:not(:has(.hero-video source[src])) .hero-overlay {
  background: rgba(0, 0, 0, 0.28);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
