@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&family=Righteous&family=Exo+2:wght@400;500;700;900&display=swap');

:root {
  --navy: #1a2744;
  --navy-dark: #111d33;
  --navy-mid: #213055;
  --navy-light: #2c3f6a;
  --yellow: #F5C518;
  --yellow-dark: #d4a800;
  --yellow-glow: rgba(245,197,24,0.25);
  --magenta: #C2185B;
  --magenta-light: #e91e8c;
  --blue-mask: #3D6FB5;
  --blue-light: #5b8fd4;
  --white: #ffffff;
  --off-white: #f0f4ff;
  --text-muted: rgba(240,244,255,0.55);
  --card-bg: rgba(44,63,106,0.5);
  --card-border: rgba(245,197,24,0.15);
  --radius: 16px;
  --radius-sm: 10px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--navy-dark);
  color: var(--white);
  font-family: 'Nunito', sans-serif;
  overflow-x: hidden;
  cursor: none;
}

/* CUSTOM CURSOR */
.cursor {
  position: fixed;
  width: 14px; height: 14px;
  background: var(--yellow);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.2s, height 0.2s, background 0.2s;
  mix-blend-mode: exclusion;
}
.cursor.big { width: 40px; height: 40px; }

/* STARS BG */
.stars-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.star {
  position: absolute;
  border-radius: 50%;
  background: var(--yellow);
  opacity: 0;
  animation: twinkle var(--dur, 3s) var(--delay, 0s) infinite;
}
@keyframes twinkle {
  0%, 100% { opacity: 0; transform: scale(0.5); }
  50% { opacity: var(--op, 0.4); transform: scale(1); }
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 48px;
  background: rgba(17,29,51,0.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(245,197,24,0.12);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo img {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.nav-logo-text {
  font-family: 'Righteous', sans-serif;
  font-size: 22px;
  letter-spacing: 2px;
  color: var(--yellow);
}

.nav-links {
  display: flex;
  gap: 8px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--off-white);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.nav-links a:hover { background: rgba(245,197,24,0.1); color: var(--yellow); }
.nav-links a.active { color: var(--yellow); }

.nav-cta {
  background: var(--yellow) !important;
  color: var(--navy-dark) !important;
  border-radius: 10px !important;
  padding: 9px 20px !important;
  font-weight: 900 !important;
  transition: background 0.2s, transform 0.2s !important;
}
.nav-cta:hover { background: #ffd740 !important; transform: translateY(-1px) !important; }

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 48px 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(245,197,24,0.12);
  border: 1px solid rgba(245,197,24,0.3);
  border-radius: 100px;
  padding: 6px 16px 6px 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 28px;
  width: fit-content;
  opacity: 0;
  animation: heroIn 0.7s 0.1s forwards;
}

.hero-eyebrow-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245,197,24,0.4); }
  50% { box-shadow: 0 0 0 6px rgba(245,197,24,0); }
}

.hero h1 {
  font-family: 'Righteous', sans-serif;
  font-size: clamp(52px, 9vw, 110px);
  line-height: 0.95;
  letter-spacing: -1px;
  opacity: 0;
  animation: heroIn 0.8s 0.25s forwards;
}

.hero h1 em {
  font-style: normal;
  color: var(--yellow);
  position: relative;
  display: inline-block;
}

.hero h1 em::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 4px;
  background: var(--magenta);
  border-radius: 2px;
}

.hero-sub {
  margin-top: 28px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7;
  max-width: 520px;
  color: var(--text-muted);
  opacity: 0;
  animation: heroIn 0.8s 0.4s forwards;
}

.hero-actions {
  margin-top: 44px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroIn 0.8s 0.55s forwards;
}

@keyframes heroIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 12px;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn:hover { transform: translateY(-3px); }

.btn-yellow {
  background: var(--yellow);
  color: var(--navy-dark);
  box-shadow: 0 8px 24px rgba(245,197,24,0.3);
}
.btn-yellow:hover { box-shadow: 0 12px 32px rgba(245,197,24,0.45); }

.btn-magenta {
  background: var(--magenta);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(194,24,91,0.3);
}
.btn-magenta:hover { box-shadow: 0 12px 32px rgba(194,24,91,0.45); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.2);
}
.btn-outline:hover { border-color: var(--yellow); color: var(--yellow); }

/* SECTIONS */
section { padding: 96px 48px; position: relative; }
section.alt { background: rgba(33,48,85,0.4); }

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 14px;
}
.section-badge::before {
  content: '';
  width: 20px; height: 2px;
  background: var(--yellow);
  border-radius: 1px;
}

.section-title {
  font-family: 'Righteous', sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.1;
  letter-spacing: 0.5px;
}

.section-title span { color: var(--yellow); }

/* CARDS */
.card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.card:hover {
  border-color: rgba(245,197,24,0.4);
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.3), 0 0 0 1px rgba(245,197,24,0.1);
}

/* GRID UTILS */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* TICKER */
.ticker-wrap {
  overflow: hidden;
  padding: 14px 0;
  background: var(--yellow);
  position: relative;
  z-index: 2;
}
.ticker-track {
  display: inline-flex;
  animation: ticker 22s linear infinite;
  white-space: nowrap;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 0 24px;
  font-family: 'Righteous', sans-serif;
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--navy-dark);
}
.ticker-item .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--navy-dark); opacity: 0.4; }
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* FOOTER */
footer {
  background: var(--navy-dark);
  border-top: 1px solid rgba(245,197,24,0.1);
  padding: 64px 48px 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo-wrap { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-logo-wrap img { width: 48px; height: 48px; border-radius: 50%; }
.footer-logo-wrap span {
  font-family: 'Righteous', sans-serif;
  font-size: 24px;
  letter-spacing: 2px;
  color: var(--yellow);
}

.footer-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 280px;
}

.footer-col h4 {
  font-family: 'Righteous', sans-serif;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--yellow); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--text-muted);
}

/* SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* BADGE PILL */
.pill {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.pill-yellow { background: rgba(245,197,24,0.15); color: var(--yellow); border: 1px solid rgba(245,197,24,0.3); }
.pill-magenta { background: rgba(194,24,91,0.15); color: var(--magenta-light); border: 1px solid rgba(194,24,91,0.3); }
.pill-blue { background: rgba(61,111,181,0.2); color: var(--blue-light); border: 1px solid rgba(61,111,181,0.35); }

/* DIVIDER */
.divider {
  width: 48px; height: 3px;
  background: var(--yellow);
  border-radius: 2px;
  margin: 20px 0;
}

/* ICON CIRCLE */
.icon-circle {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  background: rgba(245,197,24,0.12);
  border: 1px solid rgba(245,197,24,0.2);
  margin-bottom: 20px;
  transition: background 0.3s, transform 0.3s;
}
.card:hover .icon-circle { background: rgba(245,197,24,0.2); transform: scale(1.08); }

/* HERO FLOATING CARD */
.floating-card {
  position: absolute;
  background: rgba(26,39,68,0.9);
  border: 1px solid rgba(245,197,24,0.25);
  border-radius: 14px;
  padding: 16px 20px;
  backdrop-filter: blur(20px);
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

/* STAT HIGHLIGHT */
.stat-big {
  font-family: 'Righteous', sans-serif;
  font-size: 52px;
  color: var(--yellow);
  line-height: 1;
}
.stat-label-big { font-size: 13px; font-weight: 700; color: var(--text-muted); margin-top: 6px; letter-spacing: 1px; }

/* FORM */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 12px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--yellow); margin-bottom: 8px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  background: rgba(44,63,106,0.5);
  border: 1px solid rgba(245,197,24,0.2);
  border-radius: 10px;
  padding: 14px 16px;
  color: var(--white);
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  font-weight: 600;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(245,197,24,0.1);
}
.form-group select option { background: var(--navy); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* SUCCESS TOAST */
.toast {
  position: fixed;
  bottom: 32px; right: 32px;
  background: var(--navy-mid);
  border: 1px solid var(--yellow);
  border-radius: 14px;
  padding: 16px 24px;
  font-weight: 700;
  font-size: 14px;
  color: var(--yellow);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
  z-index: 9999;
  transform: translateY(80px);
  opacity: 0;
  transition: transform 0.4s, opacity 0.4s;
}
.toast.show { transform: translateY(0); opacity: 1; }

@media (max-width: 900px) {
  nav { padding: 14px 20px; }
  .nav-links { display: none; }
  section { padding: 64px 20px; }
  .hero { padding: 110px 20px 60px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  footer { padding: 48px 20px 24px; }
}


.hero-photo-main{
  width:100%;
  max-width:520px;
  height:620px;
  object-fit:cover;
  display:block;
  border-radius:32px;
  box-shadow:0 24px 80px rgba(0,0,0,0.35);
  border:1px solid rgba(245,197,24,0.18);
}

.hero-visual{position:relative}
.hero-photo-badge{
  position:absolute;
  padding:10px 14px;
  border-radius:999px;
  font-weight:800;
  font-size:12px;
  letter-spacing:.04em;
  backdrop-filter:blur(10px);
  box-shadow:0 12px 30px rgba(0,0,0,0.18);
}
.badge-yellow{
  top:8%;
  left:-4%;
  background:rgba(245,197,24,0.92);
  color:#1a2744;
}
.badge-magenta{
  bottom:10%;
  right:-2%;
  background:rgba(194,24,91,0.92);
  color:#fff;
}

.talent-card-media{
  margin-bottom:24px;
}
.talent-photo{
  width:100%;
  max-width:420px;
  height:520px;
  object-fit:cover;
  display:block;
  border-radius:28px;
  box-shadow:0 20px 60px rgba(0,0,0,0.28);
  border:1px solid rgba(245,197,24,0.16);
}

.talent-hero-layout{
  display:grid;
  grid-template-columns:440px 1fr;
  gap:40px;
  align-items:center;
}
.talent-hero-photo-wrap{
  position:relative;
}
.talent-hero-photo{
  width:100%;
  height:580px;
  object-fit:cover;
  border-radius:32px;
  display:block;
  box-shadow:0 24px 80px rgba(0,0,0,0.35);
  border:1px solid rgba(245,197,24,0.18);
}
.marwan-gallery{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
  margin-top:28px;
}
.gallery-photo{
  width:100%;
  height:260px;
  object-fit:cover;
  border-radius:24px;
  display:block;
  box-shadow:0 16px 40px rgba(0,0,0,0.22);
  border:1px solid rgba(245,197,24,0.14);
}

@media (max-width: 980px){
  .talent-hero-layout{
    grid-template-columns:1fr;
  }
  .hero-photo-main{
    max-width:100%;
    height:420px;
  }
  .talent-hero-photo{
    height:420px;
  }
  .talent-photo{
    max-width:100%;
    height:420px;
  }
  .marwan-gallery{
    grid-template-columns:1fr;
  }
}
