/* ============================================
   Visual Communication Designer Portfolio
   Theme: Pure Black + Neon Blue + Gold
   ============================================ */

:root {
  --bg: #000000;
  --bg-card: rgba(20, 20, 20, 0.6);
  --neon: #0138ba;
  --gold: #FFD700;
  --text: #FFFFFF;
  --text-muted: rgba(255, 255, 255, 0.65);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-blur: 16px;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --section-pad: clamp(4rem, 10vw, 7rem);
  --container: min(1200px, 92vw);
  --neon-glow: 0 0 20px rgba(0, 229, 255, 0.4), 0 0 40px rgba(0, 229, 255, 0.15);
  --gold-glow: 0 0 20px rgba(255, 215, 0, 0.3);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: auto;
}

html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.loading {
  overflow: hidden;
}

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

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

ul {
  list-style: none;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  padding-block: var(--section-pad);
}

.text-neon { color: var(--neon); }
.text-gold { color: var(--gold); }

.section__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--neon);
  margin-bottom: 0.75rem;
}

.section__label--center { display: block; text-align: center; }

.section__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.15;
  margin-bottom: 2.5rem;
}

.section__title--center { text-align: center; }

/* Glass Card */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: 16px;
}

.neon-border {
  position: relative;
}

.neon-border::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--neon), transparent, var(--gold));
  z-index: -1;
  opacity: 0.6;
}

.neon-glow-hover {
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
}

.neon-glow-hover:hover {
  box-shadow: var(--neon-glow);
  border-color: rgba(0, 229, 255, 0.3);
  transform: translateY(-4px);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
}

.btn--primary {
  background: var(--neon);
  color: var(--bg);
  border-color: var(--neon);
}

.btn--primary:hover {
  box-shadow: var(--neon-glow);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn--outline:hover {
  border-color: var(--neon);
  color: var(--neon);
  box-shadow: var(--neon-glow);
}

.btn--glow {
  background: linear-gradient(135deg, var(--neon), #00b8d4);
  color: var(--bg);
  border: none;
  position: relative;
  overflow: hidden;
  animation: glowPulse 2.5s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(0, 229, 255, 0.4); }
  50% { box-shadow: 0 0 35px rgba(0, 229, 255, 0.7), 0 0 60px rgba(0, 229, 255, 0.2); }
}

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

.hidden { display: none !important; }

/* ========== LOADER ========== */
.loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader.hidden-loader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader__inner {
  text-align: center;
}

/* Orbit: big ring circles the small center */
.loader__system {
  position: relative;
  width: 132px;
  height: 132px;
  margin: 0 auto 1.75rem;
}

.loader__core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 229, 255, 0.08);
  border: 2px solid rgba(0, 229, 255, 0.35);
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.25);
  animation: corePulse 1.8s ease-in-out infinite;
}

.loader__letter {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 800;
  color: #021f7d;
  line-height: 1;
}

@keyframes corePulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.06); }
}

.loader__orbit {
  position: absolute;
  inset: 0;
  animation: loaderOrbit 2.8s linear infinite;
}

.loader__ring-big {
  position: absolute;
  top: 0;
  left: 50%;
  width: 86px;
  height: 86px;
  margin-left: -43px;
  border-radius: 50%;
  background: rgba(0, 229, 255, 0.05);
  border: 2px solid transparent;
  border-top-color: var(--gold);
  border-right-color: var(--neon);
  border-bottom-color: rgba(2, 31, 125, 0.9);
  border-left-color: rgba(2, 31, 125, 0.5);
  box-shadow:
    0 0 28px rgba(0, 229, 255, 0.35),
    inset 0 0 16px rgba(0, 229, 255, 0.08);
}

@keyframes loaderOrbit {
  to {
    transform: rotate(360deg);
  }
}

.loader__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.3em;
  color: var(--text);
  text-shadow: 0 0 30px rgba(0, 229, 255, 0.5);
}

.loader__subtitle {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

/* ========== HEADER ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: background var(--transition), backdrop-filter var(--transition), padding var(--transition);
}

.header.scrolled {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  padding: 0.75rem 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--neon);
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--neon);
  transition: width var(--transition);
}

.nav__link:hover,
.nav__link.active {
  color: var(--text);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.nav__link--cta {
  padding: 0.5rem 1.25rem;
  background: rgba(2, 31, 125, 0.5);
  border: 1px solid rgba(231, 235, 243, 0.896);
  border-radius: 50px;
  color: white
}

.nav__link--cta::after { display: none; }

.nav__link--cta:hover {
  background: rgb(255, 255, 255);
  color: var(--bg) !important;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: var(--transition);
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__slideshow,
.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero__slide {
  opacity: 0;
  transition: opacity 1.5s ease;
}

.hero__slide.active {
  opacity: 1;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.55) 0%,
    rgba(10, 10, 10, 0.72) 45%,
    rgba(10, 10, 10, 0.88) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding-top: 5.5rem;
  padding-bottom: 3rem;
  width: 100%;
  pointer-events: none;
}

.hero__content a,
.hero__content button {
  pointer-events: auto;
}

.hero__reveal {
  opacity: 1;
  transform: translateY(0);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.85);
}

.hero__greeting {
  font-size: clamp(1.1rem, 2.8vw, 1.45rem);
  color: var(--text);
  margin-bottom: 0.35rem;
  font-weight: 500;
}

.hero__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2.75rem, 8vw, 5rem);
  line-height: 1.05;
  margin-bottom: 0.65rem;
  color: var(--text);
  -webkit-text-fill-color: var(--text);
  background: none;
  text-shadow: 0 0 40px rgba(0, 229, 255, 0.25), 0 4px 30px rgba(0, 0, 0, 0.9);
}

.hero__title .text-neon,
.hero__greeting .text-neon {
  color: var(--neon);
  text-shadow: 0 0 20px rgba(0, 229, 255, 0.5);
}

.hero__roles {
  font-size: clamp(0.85rem, 2vw, 1rem);
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.hero__typing {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.hero__social {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
}

.hero__social a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  background: var(--bg-card);
  color: var(--text-muted);
  font-size: 1.1rem;
  transition: all var(--transition);
}

.hero__social a:hover {
  color: var(--neon);
  border-color: var(--neon);
  box-shadow: var(--neon-glow);
  transform: translateY(-3px);
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 2;
  animation: bounce 2s infinite;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--neon), transparent);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ========== ABOUT ========== */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.about__image-wrap {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/5;
}

.about__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__text h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--gold);
  margin: 1.5rem 0 0.5rem;
}

.about__text p {
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.stats__card {
  padding: 1.25rem;
  text-align: center;
}

.stats__number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--neon);
}

.stats__suffix {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--neon);
}

.stats__label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ========== SKILLS ========== */
.skills {
  background: var(--bg);
  padding-bottom: 0;
}

.skills__heading {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  color: var(--text);
  margin-bottom: 1.25rem;
}

.skills__heading--center {
  text-align: center;
}

.tech-skills-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
}

/* Technical Skills — brand blue pill bar */
.tech-skills {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  width: 100%;
  max-width: 680px;
  margin-inline: auto;
  background: linear-gradient(135deg, #021f7d 0%, #0340b5 55%, #021f7d 100%);
  border: 1px solid rgba(0, 229, 255, 0.35);
  border-radius: 999px;
  padding: 0.75rem 1rem;
  color: var(--text);
  box-shadow:
    0 8px 28px rgba(2, 31, 125, 0.5),
    0 0 24px rgba(0, 229, 255, 0.12);
}

.tech-skills__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  text-align: center;
  padding: 0.15rem 0.25rem;
  min-width: 0;
}

.tech-skills__icon {
  width: clamp(24px, 3vw, 32px);
  height: clamp(24px, 3vw, 32px);
  color: var(--text);
}

.tech-skills__label {
  font-family: var(--font-body);
  font-size: clamp(0.58rem, 1vw, 0.68rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text);
}

.tech-skills__divider {
  width: 1px;
  align-self: center;
  height: clamp(38px, 7vw, 52px);
  background: rgba(255, 255, 255, 0.22);
  flex-shrink: 0;
}

/* Software proficiency rings */
.skills__tools {
  position: relative;
  margin-top: clamp(2rem, 4vw, 2.75rem);
  padding: clamp(1.5rem, 3vw, 2.25rem) 0 clamp(2.5rem, 5vw, 3.5rem);
  overflow: hidden;
}

.skills__tools-texture {
  position: absolute;
  inset: 0;
  background:
    url("data:image/svg+xml,%3Csvg width='400' height='400' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 200 Q100 150 200 200 T400 200' fill='none' stroke='%23ffffff' stroke-width='0.5' opacity='0.04'/%3E%3Cpath d='M0 250 Q120 200 240 250 T480 250' fill='none' stroke='%23ffffff' stroke-width='0.5' opacity='0.03'/%3E%3Cpath d='M0 150 Q80 120 160 150 T320 150' fill='none' stroke='%23ffffff' stroke-width='0.5' opacity='0.03'/%3E%3C/svg%3E") center / 400px repeat;
  pointer-events: none;
}

.skill-rings {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(1.5rem, 4vw, 2.75rem);
}

.skill-ring {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  min-width: 110px;
}

.skill-ring__graphic {
  position: relative;
  width: clamp(100px, 12vw, 130px);
  height: clamp(100px, 12vw, 130px);
}

.skill-ring__graphic svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.skill-ring__track {
  fill: none;
  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 4;
}

.skill-ring__progress {
  fill: none;
  stroke: var(--gold);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 326.73;
  stroke-dashoffset: 326.73;
  transition: stroke-dashoffset 1.6s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.35));
}

.skill-ring:hover .skill-ring__progress {
  filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.55));
}

.skill-ring__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 58%;
  height: 58%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  border: 2px solid rgba(255, 215, 0, 0.35);
  box-shadow: inset 0 0 0 1px rgba(255, 215, 0, 0.15);
}

.skill-ring__logo--ai {
  background: #330000;
  color: #ff9a00;
}

.skill-ring__logo--ps {
  background: #001e36;
  color: #31a8ff;
}

.skill-ring__logo--ae {
  background: #00005b;
  color: #9999ff;
}

.skill-ring__logo--pr {
  background: #00005b;
  color: #9999ff;
}

.skill-ring__logo--blender {
  background: #1a1a1a;
  padding: 0;
}

.skill-ring__logo--blender svg {
  width: 70%;
  height: 70%;
  transform: none;
}

.skill-ring__name {
  font-size: clamp(0.75rem, 1.4vw, 0.88rem);
  font-weight: 500;
  color: var(--text);
  text-align: center;
  line-height: 1.3;
  max-width: 120px;
}

/* ========== WORKS (MASONRY) ========== */
.works__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.works__filter {
  padding: 0.5rem 1.25rem;
  font-size: 0.8rem;
  font-weight: 500;
  background: transparent;
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
}

.works__filter:hover,
.works__filter.active {
  background: rgba(0, 229, 255, 0.1);
  border-color: var(--neon);
  color: var(--neon);
  box-shadow: var(--neon-glow);
}

.works__masonry {
  columns: 3;
  column-gap: 1.25rem;
}

.work-card {
  break-inside: avoid;
  margin-bottom: 1.25rem;
  opacity: 1;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.work-card.filtered-out {
  display: none;
}

.work-card__inner {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.work-card:hover .work-card__inner {
  border-color: rgba(0, 229, 255, 0.5);
  box-shadow: var(--neon-glow);
}

.work-card__inner img {
  width: 100%;
  transition: transform 0.6s ease, filter 0.4s ease;
}

.work-card:hover .work-card__inner img {
  transform: scale(1.08);
  filter: blur(2px) brightness(0.6);
}

.work-card--tall .work-card__inner img {
  min-height: 380px;
  object-fit: cover;
}

.work-card--wide {
  column-span: all;
}

.work-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.95), transparent);
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition);
}

.work-card:hover .work-card__overlay {
  opacity: 1;
  transform: translateY(0);
}

.work-card__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.work-card__cat {
  font-size: 0.75rem;
  color: var(--neon);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.work-card__link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap var(--transition);
}

.work-card__link:hover {
  gap: 0.75rem;
}

/* ========== PHOTOGRAPHY ========== */
.photo__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.photo__tab {
  padding: 0.5rem 1.25rem;
  background: transparent;
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  color: var(--text-muted);
  font-size: 0.85rem;
  cursor: pointer;
  transition: all var(--transition);
}

.photo__tab.active,
.photo__tab:hover {
  border-color: var(--neon);
  color: var(--neon);
  background: rgba(0, 229, 255, 0.08);
}

.photo__gallery {
  width: 100%;
  overflow: hidden;
}

.photo__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  padding: 0 4vw;
}

.photo__item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 3/4;
}

.photo__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.photo__item:hover img {
  transform: scale(1.1);
}

.photo__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 229, 255, 0);
  transition: background var(--transition);
}

.photo__item:hover::after {
  background: rgba(0, 229, 255, 0.15);
}

.photo__swipe-hint {
  display: none;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

/* ========== FILMS (NETFLIX STYLE) ========== */
.films {
  overflow: hidden;
}

.films__slider {
  padding: 0 4vw;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.films__slider::-webkit-scrollbar {
  display: none;
}

.films__track {
  display: flex;
  gap: 1.25rem;
  padding-bottom: 1rem;
}

.film-card {
  flex: 0 0 220px;
  cursor: pointer;
  transition: transform var(--transition);
}

.film-card:hover {
  transform: scale(1.05);
  z-index: 2;
}

.film-card__poster {
  aspect-ratio: 2/3;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.film-card:hover .film-card__poster {
  border-color: var(--neon);
  box-shadow: var(--neon-glow);
}

.film-card__hover {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  opacity: 0;
  transition: opacity var(--transition);
}

.film-card:hover .film-card__hover {
  opacity: 1;
}

.film-card__play {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--neon);
  border: none;
  color: var(--bg);
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 4px;
  transition: transform var(--transition);
}

.film-card__play:hover {
  transform: scale(1.1);
}

.film-card__hover span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
}

.film-card__info {
  padding: 0.75rem 0;
}

.film-card__info h3 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.film-card__duration {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-right: 0.5rem;
}

.film-card__category {
  font-size: 0.7rem;
  color: var(--neon);
  text-transform: uppercase;
}

/* ========== PROCESS TIMELINE ========== */
.timeline {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  padding-left: 2rem;
}

.timeline__line {
  position: absolute;
  left: 7px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255, 255, 255, 0.1);
}

.timeline__line-fill {
  width: 100%;
  height: 0%;
  background: linear-gradient(to bottom, var(--neon), var(--gold));
  box-shadow: 0 0 10px var(--neon);
  transition: height 0.1s linear;
}

.timeline__item {
  position: relative;
  padding-bottom: 2.5rem;
}

.timeline__dot {
  position: absolute;
  left: -2rem;
  top: 1.25rem;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--neon);
  box-shadow: 0 0 12px rgba(0, 229, 255, 0.5);
  z-index: 2;
}

.timeline__content {
  padding: 1.5rem;
  margin-left: 1rem;
}

.timeline__step {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--neon);
  letter-spacing: 0.1em;
}

.timeline__content h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin: 0.25rem 0 0.5rem;
}

.timeline__content p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ========== AWARDS SLIDER ========== */
.awards__slider-wrap {
  overflow: hidden;
  padding: 1rem 0;
}

.awards__slider {
  display: flex;
  gap: 1.5rem;
  animation: awardScroll 30s linear infinite;
  width: max-content;
}

.awards__slider:hover {
  animation-play-state: paused;
}

@keyframes awardScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.award-card {
  flex: 0 0 260px;
  padding: 2rem;
  text-align: center;
}

.award-card__img {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.4));
}

.award-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.award-card__year {
  font-size: 0.85rem;
  color: var(--neon);
  font-weight: 600;
}

/* Duplicate awards for infinite scroll */
.awards__slider .award-card:nth-child(n+6) {
  display: none;
}

/* ========== EDUCATION ========== */
.edu-timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.edu-timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--neon), var(--gold));
  opacity: 0.3;
}

.edu-timeline__item {
  position: relative;
  padding-left: 3.5rem;
  padding-bottom: 2rem;
}

.edu-timeline__marker {
  position: absolute;
  left: 12px;
  top: 1.5rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--neon);
}

.edu-timeline__item--active .edu-timeline__marker {
  background: var(--neon);
  box-shadow: var(--neon-glow);
}

.edu-timeline__item--goal .edu-timeline__marker {
  border-color: var(--gold);
  border-style: dashed;
}

.edu-timeline__content {
  padding: 1.5rem;
}

.edu-timeline__year {
  font-size: 0.75rem;
  color: var(--neon);
  font-weight: 600;
  letter-spacing: 0.05em;
}

.edu-timeline__content h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin: 0.35rem 0 0.5rem;
}

.edu-timeline__content p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ========== TESTIMONIALS ========== */
.testimonials__slider {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  min-height: 220px;
}

.testimonial-card {
  position: absolute;
  inset: 0;
  padding: 2.5rem;
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.6s ease;
  pointer-events: none;
}

.testimonial-card.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  position: relative;
}

.testimonial-card__quote {
  font-size: 2rem;
  color: var(--neon);
  opacity: 0.4;
  margin-bottom: 1rem;
}

.testimonial-card p {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.testimonial-card__author strong {
  display: block;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.testimonial-card__author span {
  font-size: 0.85rem;
  color: var(--neon);
}

.testimonials__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.testimonials__dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all var(--transition);
}

.testimonials__dots button.active {
  background: var(--neon);
  box-shadow: var(--neon-glow);
  width: 28px;
  border-radius: 5px;
}

/* ========== RESUME ========== */
.resume__card {
  position: relative;
  padding: clamp(2.5rem, 6vw, 4rem);
  text-align: center;
  overflow: hidden;
}

.resume__glow {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.15), transparent 70%);
  pointer-events: none;
}

.resume__text {
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto 2rem;
}

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

/* ========== CONTACT ========== */
.contact__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: start;
}

.contact__form {
  padding: 2rem;
}

.form__group {
  position: relative;
  margin-bottom: 1.5rem;
}

.form__group input,
.form__group textarea {
  width: 100%;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form__group input:focus,
.form__group textarea:focus {
  outline: none;
  border-color: var(--neon);
  box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.1);
}

.form__group label {
  position: absolute;
  left: 1rem;
  top: 1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  pointer-events: none;
  transition: all var(--transition);
}

.form__group input:focus + label,
.form__group input:not(:placeholder-shown) + label,
.form__group textarea:focus + label,
.form__group textarea:not(:placeholder-shown) + label {
  top: -0.5rem;
  left: 0.75rem;
  font-size: 0.7rem;
  color: var(--neon);
  background: var(--bg);
  padding: 0 0.35rem;
}

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

.contact__card {
  padding: 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact__card i {
  font-size: 1.25rem;
  color: var(--neon);
  margin-top: 0.15rem;
}

.contact__card h3 {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.contact__card a,
.contact__card p {
  font-size: 0.95rem;
  color: var(--text);
}

.contact__card a:hover {
  color: var(--neon);
}

.contact__map {
  overflow: hidden;
  padding: 0;
  min-height: 180px;
}

.contact__map iframe {
  width: 100%;
  height: 180px;
  border: none;
  filter: grayscale(80%) invert(92%) contrast(90%);
}

/* ========== FOOTER ========== */
.footer {
  position: relative;
  padding: 3rem 0 1.5rem;
  border-top: 1px solid var(--glass-border);
}

.footer__neon-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--neon), var(--gold), var(--neon), transparent);
  animation: neonLine 3s ease-in-out infinite;
}

@keyframes neonLine {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
}

.footer__logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--neon);
  display: inline-block;
  margin-bottom: 0.75rem;
}

.footer__brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 280px;
}

.footer__links h4,
.footer__social h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  color: var(--text);
}

.footer__links ul li {
  margin-bottom: 0.5rem;
}

.footer__links a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--neon);
}

.footer__icons {
  display: flex;
  gap: 0.75rem;
}

.footer__icons a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
  transition: all var(--transition);
}

.footer__icons a:hover {
  color: var(--neon);
  border-color: var(--neon);
  box-shadow: var(--neon-glow);
}

.footer__bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--glass-border);
}

.footer__bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ========== LIGHTBOX ========== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10, 10, 10, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: var(--neon-glow);
}

.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--glass-border);
  color: var(--text);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover {
  background: var(--neon);
  color: var(--bg);
  border-color: var(--neon);
}

.lightbox__close { top: 1.5rem; right: 1.5rem; }
.lightbox__prev { left: 1.5rem; }
.lightbox__next { right: 1.5rem; }

/* ========== VIDEO MODAL ========== */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.video-modal.active {
  opacity: 1;
  visibility: visible;
}

.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.9);
  cursor: pointer;
}

.video-modal__content {
  position: relative;
  width: min(900px, 92vw);
  z-index: 1;
}

.video-modal__content video {
  width: 100%;
  border-radius: 12px;
  border: 2px solid rgba(0, 229, 255, 0.3);
  box-shadow: var(--neon-glow);
}

.video-modal__close {
  position: absolute;
  top: -48px;
  right: 0;
  background: none;
  border: none;
  color: var(--text);
  font-size: 2rem;
  cursor: pointer;
  transition: color var(--transition);
}

.video-modal__close:hover {
  color: var(--neon);
}

/* Fade utilities (GSAP will enhance) */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
}
