/* ═══════════════════════════════════════════════════════════════
   SHAILESH PORTFOLIO — DIRECTOR'S CUT THEME
   AureviaDigital · AI Filmmaker & Commercial Director
═══════════════════════════════════════════════════════════════ */

/* ─── DESIGN TOKENS ─── */
:root {
  --gold: #f5a623;
  --gold-light: #ffc14a;
  --gold-dark: #c07d10;
  --bg: #08080f;
  --bg-2: #0d0d1a;
  --bg-card: #111120;
  --bg-card-hover: #171730;
  --text: #e8e8f0;
  --text-muted: #8888aa;
  --text-dim: #555570;
  --border: rgba(245, 166, 35, 0.12);
  --border-hover: rgba(245, 166, 35, 0.35);
  --glow: rgba(245, 166, 35, 0.15);
  --font-display: 'Cinzel', serif;
  --font-body: 'Outfit', sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

body.loading { overflow: hidden; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: none; border: none; background: none; font-family: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

/* ─── CUSTOM CURSOR ─── */
.cursor {
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  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: difference;
}

.cursor-follower {
  width: 40px; height: 40px;
  border: 1.5px solid rgba(245, 166, 35, 0.5);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease, width 0.3s, height 0.3s, opacity 0.3s;
}

.cursor.hovering { width: 20px; height: 20px; }
.cursor-follower.hovering { width: 60px; height: 60px; opacity: 0.5; }

/* ─── CINEMATIC LOADER ─── */
.loader {
  position: fixed;
  inset: 0;
  background: #04040a;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: opacity 1s ease, visibility 1s ease;
}

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

/* Film grain overlay on loader */
.loader-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.08'/%3E%3C/svg%3E");
  background-size: 120px 120px;
  pointer-events: none;
  animation: grainShift 0.3s steps(2) infinite;
  z-index: 1;
}

/* Film strip borders */
.loader-filmstrip {
  position: absolute;
  left: 0; right: 0;
  height: 44px;
  background: #111;
  z-index: 2;
}
.loader-filmstrip-top { top: 0; border-bottom: 2px solid #222; }
.loader-filmstrip-bottom { bottom: 0; border-top: 2px solid #222; }

.filmstrip-holes {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 18px;
  padding: 0 10px;
  overflow: hidden;
}

.filmstrip-holes span {
  width: 22px;
  height: 16px;
  background: #04040a;
  border-radius: 3px;
  flex-shrink: 0;
  border: 1px solid #333;
}

/* Main stage */
.loader-stage {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.loader-phase {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s ease;
}

/* — PHASE 1: Clapper — */
.clapper-wrap {
  position: relative;
  width: 180px;
  animation: clapperEntry 0.5s ease both;
}

@keyframes clapperEntry {
  from { transform: scale(0.6) rotate(-10deg); opacity: 0; }
  to { transform: scale(1) rotate(0deg); opacity: 1; }
}

.clapper-arm {
  position: absolute;
  top: -30px; left: 0; right: 0;
  height: 32px;
  background: repeating-linear-gradient(
    -45deg,
    #fff 0px, #fff 14px,
    #1a1a1a 14px, #1a1a1a 28px
  );
  border-radius: 4px 4px 0 0;
  border: 2px solid #333;
  transform-origin: left center;
  animation: clapperSmack 0.18s 0.9s cubic-bezier(0.4, 0, 0.2, 1) both;
  box-shadow: 0 -2px 12px rgba(245,166,35,0.2);
}

@keyframes clapperSmack {
  0% { transform: rotate(-40deg); }
  60% { transform: rotate(3deg); }
  80% { transform: rotate(-2deg); }
  100% { transform: rotate(0deg); }
}

.clapper-body {
  width: 100%;
  height: 130px;
  background: #1a1a1a;
  border: 2px solid #333;
  border-radius: 4px;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  position: relative;
}

.clapper-stripes {
  width: 100%;
  height: 35px;
  background: repeating-linear-gradient(
    -45deg,
    #f5a623 0px, #f5a623 12px,
    #1a1a1a 12px, #1a1a1a 24px
  );
  opacity: 0.7;
}

/* — PHASE 2: LIGHTS CAMERA ACTION — */
.lca-sequence {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.lca-word {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 6rem);
  font-weight: 900;
  letter-spacing: 0.15em;
  color: var(--text);
  opacity: 0;
  transform: translateY(30px);
  line-height: 1;
}

.lca-action {
  color: var(--gold);
  text-shadow: 0 0 40px rgba(245,166,35,0.5), 0 0 80px rgba(245,166,35,0.2);
  font-size: clamp(3rem, 10vw, 8rem);
}

/* — PHASE 3: Brand Reveal — */
.loader-brand-reveal {
  text-align: center;
}

.loader-brand-logo {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
  animation: pulseDot 2s ease infinite;
}

.loader-brand-name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 4.5rem);
  font-weight: 900;
  letter-spacing: 0.1em;
  color: var(--text);
  line-height: 1;
}

.loader-brand-name span {
  color: var(--gold);
  text-shadow: 0 0 40px rgba(245,166,35,0.4);
}

.loader-brand-sub {
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.loader-bar-wrap {
  width: 240px;
  height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  margin: 0 auto;
  overflow: hidden;
}

.loader-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  border-radius: 2px;
  transition: width 0.15s ease;
  box-shadow: 0 0 10px var(--gold);
}

/* ─── NAVIGATION ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.2rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition), backdrop-filter var(--transition), padding var(--transition);
}

.nav.scrolled {
  background: rgba(8, 8, 15, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0.8rem 3rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.nav-logo-symbol {
  color: var(--gold);
  font-size: 1.4rem;
  flex-shrink: 0;
}

.nav-logo-stack {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-brand {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text);
}

.nav-logo-name {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-transform: uppercase;
}

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

.nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.nav-link:hover { color: var(--text); }
.nav-link:hover::after { transform: scaleX(1); }

.nav-link.nav-cta {
  background: var(--gold);
  color: var(--bg) !important;
  padding: 0.5rem 1.2rem;
  border-radius: 6px;
  font-weight: 700;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.nav-link.nav-cta::after { display: none; }
.nav-link.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(245, 166, 35, 0.4);
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 5px;
}
.nav-burger span {
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.05);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}
.btn:hover::before { transform: translateX(0); }

.btn-primary {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--bg);
  box-shadow: 0 4px 20px rgba(245, 166, 35, 0.25);
}
.btn-primary:hover {
  box-shadow: 0 6px 30px rgba(245, 166, 35, 0.45);
  transform: translateY(-2px);
}

.btn-ghost {
  border: 1px solid var(--border-hover);
  color: var(--text);
  background: transparent;
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 20px rgba(245, 166, 35, 0.15);
}

.btn-fiverr {
  background: linear-gradient(135deg, #1a7a44, #1DBF73);
  color: white;
  box-shadow: 0 4px 20px rgba(29, 191, 115, 0.25);
}
.btn-fiverr:hover {
  box-shadow: 0 6px 30px rgba(29, 191, 115, 0.45);
  transform: translateY(-2px);
}

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

/* ─── SECTIONS ─── */
.section {
  padding: 8rem 0;
  position: relative;
}

.section-tag {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.2rem;
  color: var(--text);
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 50ch;
}

.section-header { margin-bottom: 4rem; }
.section-header.center { text-align: center; }
.section-header.center .section-subtitle { margin: 0 auto; }

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

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.35;
  filter: saturate(0.7);
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(245, 166, 35, 0.08) 0%, transparent 60%),
    linear-gradient(to bottom, rgba(8,8,15,0.5) 0%, rgba(8,8,15,0.2) 40%, rgba(8,8,15,0.85) 100%);
}

.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.05'/%3E%3C/svg%3E");
  background-size: 150px 150px;
  z-index: 1;
  opacity: 0.4;
  pointer-events: none;
  animation: grainShift 0.5s steps(2) infinite;
}

@keyframes grainShift {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-2px, 2px); }
  50% { transform: translate(2px, -2px); }
  75% { transform: translate(-2px, -2px); }
  100% { transform: translate(2px, 2px); }
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 2px; height: 2px;
  background: var(--gold);
  border-radius: 50%;
  animation: floatParticle linear infinite;
  opacity: 0;
}

@keyframes floatParticle {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.2; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(8, 8, 15, 0.7) 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  padding: 6rem 2rem 2rem 5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 2rem;
  background: rgba(245, 166, 35, 0.05);
  backdrop-filter: blur(10px);
  animation: fadeInDown 1s 1s ease both;
}

.badge-dot {
  width: 6px; height: 6px;
  background: #1DBF73;
  border-radius: 50%;
  animation: pulseDot 2s ease infinite;
}

@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(29, 191, 115, 0.4); }
  50% { box-shadow: 0 0 0 6px rgba(29, 191, 115, 0); }
}

.hero-name {
  font-family: var(--font-display);
  margin-bottom: 1.5rem;
  line-height: 1;
}

.hero-studio {
  display: block;
  font-size: clamp(3rem, 9vw, 7.5rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--text);
  opacity: 0;
  transform: translateY(40px);
  animation: revealLine 0.8s 1.2s cubic-bezier(0.4,0,0.2,1) forwards;
}

.gold-word { color: var(--gold); text-shadow: 0 0 60px rgba(245,166,35,0.3); }

.hero-name-sub {
  display: block;
  font-family: var(--font-body);
  font-size: clamp(1rem, 2.5vw, 1.6rem);
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.6rem;
  margin-bottom: 0.4rem;
  opacity: 0;
  transform: translateY(30px);
  animation: revealLine 0.8s 1.5s ease forwards;
}

.hero-name-tagline {
  display: block;
  font-family: var(--font-body);
  font-size: clamp(0.75rem, 1.5vw, 0.95rem);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  animation: revealLine 0.8s 1.8s ease forwards;
}

/* hero-name-line kept for backward compat */
.hero-name-line {
  display: block;
  opacity: 0;
  transform: translateY(40px);
  animation: revealLine 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.gold-line { color: var(--gold); }

@keyframes revealLine {
  to { opacity: 1; transform: translateY(0); }
}

.hero-roles {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.8rem;
  opacity: 0;
  animation: fadeInUp 0.8s 2s ease both;
}

.role-item {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.role-divider { color: var(--gold); font-size: 0.5rem; }

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 55ch;
  opacity: 0;
  animation: fadeInUp 0.8s 2.2s ease both;
}

.hero-desc .highlight {
  color: var(--gold);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeInUp 0.8s 2.4s ease both;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  opacity: 0;
  animation: fadeInUp 0.8s 2.6s ease both;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-plus { font-family: var(--font-display); font-size: 1.5rem; color: var(--gold); }

.stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-top: 0.2rem;
}

.stat-divider {
  width: 1px; height: 40px;
  background: var(--border);
}

/* ─── SCROLLING TEXT STRIP ─── */
.hero-scroll-strip {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0.7rem 0;
  background: rgba(245, 166, 35, 0.06);
  border-top: 1px solid rgba(245, 166, 35, 0.15);
  display: flex;
  align-items: center;
  gap: 2rem;
  overflow: hidden;
  z-index: 10;
  white-space: nowrap;
  animation: scrollStrip 20s linear infinite;
}

.hero-scroll-strip span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  flex-shrink: 0;
}

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

.scroll-indicator {
  position: absolute;
  bottom: 3.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 10;
  opacity: 0;
  animation: fadeIn 1s 3s ease both;
}

.scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollLineAnim 2s ease-in-out infinite;
}

@keyframes scrollLineAnim {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  50.01% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

.scroll-indicator span {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: var(--text-dim);
}

/* ─── ABOUT ─── */
.about { background: var(--bg-2); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: center;
}

.about-visual { position: relative; }

.about-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 380px;
  margin: 0 auto;
}

.about-img-wrap {
  width: 100%; height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border);
}

.about-real-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s ease;
  display: block;
}

.about-img-wrap:hover .about-real-img { transform: scale(1.03); }

.about-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,15,0.6) 0%, transparent 60%);
}

.about-img-fallback {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a1a30, #0d0d1a);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
}

.avatar-initials {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -0.02em;
}

.avatar-ring {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px solid rgba(245, 166, 35, 0.2);
  animation: ringPulse 3s ease-in-out infinite;
}

.ring-2 {
  inset: -25px;
  border-color: rgba(245, 166, 35, 0.1);
  animation-delay: 1.5s;
}

@keyframes ringPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.03); opacity: 0.5; }
}

.about-label-card {
  position: absolute;
  bottom: 0; right: -20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.8rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  backdrop-filter: blur(10px);
  animation: floatCard 4s ease-in-out infinite;
}

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

.label-icon { font-size: 1.5rem; }
.label-title { font-weight: 700; font-size: 0.9rem; }
.label-sub { font-size: 0.75rem; color: var(--text-muted); }

.about-badge-float {
  position: absolute;
  top: 8%; left: -20px;
  background: linear-gradient(135deg, rgba(29, 191, 115, 0.15), rgba(29, 191, 115, 0.05));
  border: 1px solid rgba(29, 191, 115, 0.3);
  border-radius: 100px;
  padding: 0.4rem 0.9rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #1DBF73;
  animation: floatCard 4s 2s ease-in-out infinite;
  z-index: 10;
}

.about-lens-badge {
  position: absolute;
  top: 45%; right: -20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.4rem 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  animation: floatCard 4s 3s ease-in-out infinite;
  z-index: 10;
}

.lens-mini-img {
  width: 28px; height: 28px;
  border-radius: 4px;
  object-fit: cover;
}

.about-text { }

.about-bio {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 1.2rem;
}
.about-bio strong { color: var(--text); font-weight: 600; }
.about-bio em { color: var(--gold); font-style: normal; }

.about-highlights { margin: 2rem 0; display: flex; flex-direction: column; gap: 1rem; }

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition), background var(--transition);
}

.highlight-item:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
}

.highlight-icon { font-size: 1.4rem; flex-shrink: 0; }
.highlight-title { font-weight: 600; font-size: 0.95rem; margin-bottom: 0.2rem; }
.highlight-sub { font-size: 0.82rem; color: var(--text-muted); }

.about-cta-row { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }

/* ─── EXPERTISE ─── */
.expertise {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.expertise-bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.expertise-bg-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.08;
  filter: saturate(0.5);
}

.expertise-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(8,8,15,0.95) 0%, rgba(8,8,15,0.8) 100%);
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.expertise-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.expertise-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.5s ease;
}

.expertise-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(245, 166, 35, 0.08);
}

.expertise-card:hover::before { transform: scaleX(1); }

.expertise-icon { font-size: 2.2rem; margin-bottom: 1.2rem; }
.expertise-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.8rem; color: var(--text); }
.expertise-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.2rem; }

.expertise-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.expertise-tags span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.6rem;
  background: rgba(245, 166, 35, 0.1);
  border: 1px solid rgba(245, 166, 35, 0.2);
  border-radius: 4px;
  color: var(--gold);
}

/* ─── PROJECTS / VIDEOS ─── */
.projects { background: var(--bg-2); overflow: hidden; }
.projects .container { overflow: visible; }

.projects-featured {
  margin-top: 2rem;
  background: linear-gradient(180deg, transparent, rgba(8,8,15,0.5));
}

.featured-videos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.video-feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.video-feature-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 30px rgba(245,166,35,0.08);
}

.video-thumb-wrap {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  cursor: pointer;
}

.video-thumb-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.video-thumb-wrap:hover .video-thumb-img { transform: scale(1.04); }

.video-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.3);
  transition: background var(--transition);
}

.video-thumb-wrap:hover .video-play-overlay { background: rgba(0,0,0,0.1); }

.video-play-circle {
  width: 64px; height: 64px;
  background: rgba(245, 166, 35, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg);
  transition: transform var(--transition), background var(--transition);
  box-shadow: 0 0 30px rgba(245,166,35,0.4);
}

.video-thumb-wrap:hover .video-play-circle {
  transform: scale(1.1);
  background: var(--gold);
}

.video-duration-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  background: rgba(8,8,15,0.75);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(245,166,35,0.3);
  border-radius: 6px;
  color: var(--gold);
}

.video-iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 5;
}

.video-iframe.active {
  opacity: 1;
  pointer-events: all;
}

.video-info {
  padding: 1.5rem;
}

.video-channel {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

.video-info h3 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 0.6rem;
  color: var(--text);
}

.video-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.btn-sm {
  padding: 0.55rem 1.2rem;
  font-size: 0.82rem;
}

.more-work-strip {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-card), rgba(245,166,35,0.03));
}

.more-work-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.8rem 2rem;
}

.more-work-text h3 { font-size: 1.1rem; font-weight: 700; margin-top: 0.4rem; }

.more-work-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.channel-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: all var(--transition);
  white-space: nowrap;
}

.channel-link:hover {
  border-color: var(--gold);
  color: var(--text);
  background: rgba(245,166,35,0.05);
}

/* old reel styles kept for compat */
.projects-reel-wrap { position: relative; overflow: hidden; padding: 1rem 0 1rem 2rem; }
.projects-reel { display: flex; gap: 1.5rem; transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1); width: max-content; }

.project-card {
  width: 340px;
  flex-shrink: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.project-card:hover {
  border-color: var(--border-hover);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(245, 166, 35, 0.08);
}

.project-thumb {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.project-thumb-bg {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s ease;
}

.project-card:hover .project-thumb-bg { transform: scale(1.05); }

.project-play-btn {
  width: 56px; height: 56px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: white;
  transition: background var(--transition), transform var(--transition);
}

.project-card:hover .project-play-btn {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.1);
  color: var(--bg);
}

.project-category {
  position: absolute;
  top: 1rem; left: 1rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  background: rgba(8, 8, 15, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--gold);
}

.project-info { padding: 1.5rem; }
.project-info h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; }
.project-info p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1rem; }

.project-links { display: flex; gap: 0.8rem; }
.project-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color var(--transition);
}
.project-link:hover { color: var(--gold); }

.reel-btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--text);
  transition: all var(--transition);
  z-index: 10;
}
.reel-prev { left: 1.5rem; }
.reel-next { right: 1.5rem; }
.reel-btn:hover { background: var(--gold); color: var(--bg); border-color: var(--gold); }

.projects-all-cta { text-align: center; margin-top: 3rem; }

/* ─── SERVICES ─── */
.services { background: var(--bg); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-card.featured {
  border-color: rgba(245, 166, 35, 0.4);
  background: linear-gradient(135deg, var(--bg-card), rgba(245, 166, 35, 0.05));
}

.service-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.7rem;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--bg);
  border-radius: 6px;
  margin-bottom: 1rem;
}

.service-icon { font-size: 2rem; margin-bottom: 1rem; }
.service-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.7rem; }

.service-category-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.service-tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.2rem;
}

.service-tags-row span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.6rem;
  background: rgba(245, 166, 35, 0.1);
  border: 1px solid rgba(245, 166, 35, 0.2);
  border-radius: 4px;
  color: var(--gold);
}
.service-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.5rem; }

.service-features {
  list-style: none;
  margin-bottom: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.service-features li { font-size: 0.85rem; color: var(--text-muted); }

.fiverr-cta {
  border: 1px solid rgba(29, 191, 115, 0.25);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(29, 191, 115, 0.05), transparent);
  overflow: hidden;
}

.fiverr-cta-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem 2.5rem;
}

.fiverr-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #1DBF73;
  text-transform: uppercase;
  flex-shrink: 0;
}

.fiverr-cta-text { flex: 1; }
.fiverr-cta-text h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.3rem; }
.fiverr-cta-text p { font-size: 0.9rem; color: var(--text-muted); }

/* ─── SOCIAL ─── */
.social { background: var(--bg-2); }

.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

.social-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.3rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.social-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--transition);
}

.social-linkedin::before { background: linear-gradient(135deg, rgba(0, 119, 181, 0.08), transparent); }
.social-instagram::before { background: linear-gradient(135deg, rgba(225, 48, 108, 0.08), transparent); }
.social-youtube::before { background: linear-gradient(135deg, rgba(255, 0, 0, 0.08), transparent); }
.social-fiverr::before { background: linear-gradient(135deg, rgba(29, 191, 115, 0.08), transparent); }

.social-card:hover { transform: translateY(-2px); border-color: var(--border-hover); }
.social-card:hover::before { opacity: 1; }

.social-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.social-linkedin .social-icon { background: rgba(0, 119, 181, 0.15); color: #0077b5; }
.social-instagram .social-icon { background: rgba(225, 48, 108, 0.15); color: #e1306c; }
.social-youtube .social-icon { background: rgba(255, 0, 0, 0.15); color: #ff0000; }
.social-fiverr .social-icon { background: rgba(29, 191, 115, 0.15); color: #1DBF73; }

.social-icon svg { width: 22px; height: 22px; }

.social-info { flex: 1; min-width: 0; }
.social-info h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.2rem; }
.gigs-loading { text-align: center; color: var(--text-muted); padding: 3rem; }
.social-info p { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 0.3rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.social-handle { font-size: 0.78rem; color: var(--text-dim); }

.social-arrow { color: var(--text-dim); font-size: 1.1rem; flex-shrink: 0; transition: color var(--transition), transform var(--transition); }
.social-card:hover .social-arrow { color: var(--gold); transform: translateX(4px); }

/* ─── CONTACT ─── */
.contact {
  background: var(--bg);
  position: relative;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.contact-desc { color: var(--text-muted); line-height: 1.8; margin-bottom: 2rem; }

.contact-details { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition);
}
.contact-item:hover { border-color: var(--border-hover); }

.contact-icon { font-size: 1.2rem; flex-shrink: 0; padding-top: 2px; }
.contact-label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-dim); margin-bottom: 0.2rem; }
.contact-value { font-size: 0.95rem; font-weight: 600; color: var(--text); transition: color var(--transition); }
a.contact-value:hover { color: var(--gold); }

.contact-social-row { display: flex; gap: 0.8rem; }
.contact-social-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.contact-social-icon.linkedin { color: #0077b5; }
.contact-social-icon.instagram { color: #e1306c; }
.contact-social-icon.youtube { color: #ff0000; }
.contact-social-icon:hover { border-color: currentColor; transform: translateY(-2px); }

/* Form */
.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.form-header {
  padding: 1.8rem 2rem 0;
}
.form-header h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.3rem; }
.form-header p { font-size: 0.85rem; color: var(--text-muted); }

.contact-form { padding: 1.5rem 2rem 2rem; display: flex; flex-direction: column; gap: 1rem; }

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: var(--text-muted); letter-spacing: 0.05em; }

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.8rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-dim); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.1);
}

.form-group select option { background: var(--bg-2); }

.form-success {
  text-align: center;
  padding: 1rem;
  background: rgba(29, 191, 115, 0.1);
  border: 1px solid rgba(29, 191, 115, 0.3);
  border-radius: 8px;
  color: #1DBF73;
  font-weight: 600;
  font-size: 0.9rem;
}

/* ─── FOOTER ─── */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.footer-glow {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 500px; height: 200px;
  background: radial-gradient(ellipse, rgba(245, 166, 35, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.footer-inner {
  display: flex;
  gap: 4rem;
  padding: 4rem 0 2rem;
  border-bottom: 1px solid var(--border);
}

.footer-brand { flex-shrink: 0; }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
}

.footer-logo-symbol { color: var(--gold); font-size: 1.4rem; }

.footer-logo-brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.2;
}

.footer-logo-name {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.footer-tagline { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

.footer-links {
  display: flex;
  gap: 4rem;
  flex: 1;
  justify-content: flex-end;
}

.footer-col { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}
.footer-col a {
  font-size: 0.88rem;
  color: var(--text-dim);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--gold); }

.gig-update-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  background: rgba(245, 166, 35, 0.05);
  border: 1px dashed rgba(245, 166, 35, 0.2);
  border-radius: 8px;
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-bottom: 2rem;
}

.gig-update-note code {
  font-family: monospace;
  background: rgba(245,166,35,0.1);
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
  color: var(--gold);
}

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.82rem;
  color: var(--text-dim);
  text-align: center;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* Scroll-reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual { order: -1; }
  .expertise-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-videos-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .fiverr-cta-inner { flex-direction: column; gap: 1rem; text-align: center; }
  .more-work-inner { flex-direction: column; gap: 1rem; }
}

@media (max-width: 768px) {
  .nav { padding: 1rem 1.5rem; }
  .nav-logo-name { display: none; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: rgba(8, 8, 15, 0.98);
    backdrop-filter: blur(20px);
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 999;
  }
  .nav-links.open .nav-link { font-size: 1.2rem; }
  .nav-burger { display: flex; }
  .hero-content { padding: 6rem 1.5rem 5rem; }
  .expertise-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .featured-videos-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 2rem; }
  .footer-links { flex-direction: column; gap: 1.5rem; justify-content: flex-start; }
  .hero-stats { flex-wrap: wrap; gap: 1rem; }
  .section { padding: 5rem 0; }
  .social-grid { grid-template-columns: 1fr; }
  .hero-scroll-strip { font-size: 0.6rem; }
}

/* ─── CINEMATIC GALLERY STRIP ─── */
.gallery-strip {
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}

.gallery-strip-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1.2fr 0.8fr;
  height: 420px;
  gap: 2px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item-tall {
  /* visual balance via object position */
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.7) brightness(0.75);
  transition: transform 0.6s ease, filter 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
  filter: saturate(1) brightness(0.9);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,15,0.85) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.gallery-item-overlay span {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}

.gallery-strip-label {
  position: absolute;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: rgba(8,8,15,0.7);
  backdrop-filter: blur(10px);
  padding: 0.4rem 1.2rem;
  border-radius: 100px;
  border: 1px solid var(--border);
  white-space: nowrap;
  z-index: 5;
}

@media (max-width: 768px) {
  .gallery-strip-inner {
    grid-template-columns: 1fr 1fr;
    height: 320px;
  }
}

@media (max-width: 480px) {
  .gallery-strip-inner {
    grid-template-columns: 1fr;
    height: auto;
  }
  .gallery-item { height: 200px; }
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ─── SELECTION ─── */
::selection { background: rgba(245, 166, 35, 0.25); color: var(--text); }

/* ═══════════════════════════════════════════════════════════════
   CINEMATIC IMAGE BACKGROUNDS & DEPTH-OF-FIELD EFFECT
   ═══════════════════════════════════════════════════════════════ */

/* Glassmorphism for UI Panels */
.expertise-card,
.service-card,
.social-card,
.about-text,
.contact-form-wrap,
.nav.scrolled {
  background: rgba(8, 8, 15, 0.72) !important;
  backdrop-filter: blur(25px) saturate(1.3) !important;
  -webkit-backdrop-filter: blur(25px) saturate(1.3) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 12px 40px -10px rgba(0,0,0,0.6) !important;
  transition: var(--transition) !important;
}

.expertise-card:hover,
.service-card:hover,
.social-card:hover {
  background: rgba(14, 14, 25, 0.82) !important;
  border-color: rgba(245, 166, 35, 0.35) !important;
  box-shadow: 0 15px 45px -5px rgba(245, 166, 35, 0.12) !important;
}

/* Section background setup */
.section {
  position: relative !important;
  background: transparent !important;
  overflow: hidden !important;
  z-index: 1;
}

.section > .container {
  position: relative;
  z-index: 2;
}

.section-bg-container {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.section-bg-container::after {
  content: '';
  position: absolute;
  top: 30px; left: 30px; right: 30px; bottom: 30px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  pointer-events: none;
  z-index: 2;
}

.section-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.14; /* Darkened for readability */
  filter: blur(12px) brightness(0.22) saturate(0.6);
  transform: scale(1.05); /* Avoid white edges during blur */
  transition: filter 1.2s cubic-bezier(0.25, 1, 0.5, 1), opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1), transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Focus transition when section is active */
.section.bg-in-focus .section-bg-image {
  opacity: 0.28;
  filter: blur(2px) brightness(0.38) saturate(1.0);
  transform: scale(1.0);
}

.section-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(8, 8, 15, 0.95) 0%, transparent 15%, transparent 85%, rgba(8, 8, 15, 0.95) 100%);
  z-index: 1;
}

/* Camera HUD Monitor Overlay */
.camera-hud-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  border: 15px solid rgba(8, 8, 15, 0.45); /* Outer bezel */
  box-sizing: border-box;
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
}

/* Corner viewfinder indicators */
.hud-matte-corners {
  position: absolute;
  inset: 20px;
}

.hud-corner {
  position: absolute;
  width: 30px;
  height: 30px;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.hud-corner.top-left { top: 0; left: 0; border-right: none; border-bottom: none; }
.hud-corner.top-right { top: 0; right: 0; border-left: none; border-bottom: none; }
.hud-corner.bottom-left { bottom: 0; left: 0; border-right: none; border-top: none; }
.hud-corner.bottom-right { bottom: 0; right: 0; border-left: none; border-top: none; }

/* Blinking REC indicator */
.hud-rec-container {
  position: absolute;
  top: 35px;
  left: 40px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
}

.hud-rec-dot {
  width: 8px;
  height: 8px;
  background: #ff3b30;
  border-radius: 50%;
  box-shadow: 0 0 8px #ff3b30;
  animation: hudPulseRed 1s infinite alternate;
}

@keyframes hudPulseRed {
  0% { opacity: 0.2; }
  100% { opacity: 1; }
}

/* Running Timecode */
.hud-timecode {
  position: absolute;
  bottom: 35px;
  right: 40px;
  font-family: monospace;
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.05em;
}

/* Battery Indicator */
.hud-battery {
  position: absolute;
  top: 35px;
  right: 40px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.hud-battery svg {
  color: rgba(255, 255, 255, 0.5);
}

/* Top Metadata bar */
.hud-top-bar {
  position: absolute;
  top: 35px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 2rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
}

/* Readability and Focus */
.section-title {
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.7);
}

.section-subtitle {
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
  color: #d1d1e0 !important;
}

.section-tag {
  color: var(--gold) !important;
  font-weight: 700 !important;
  letter-spacing: 0.15em !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

/* Viewfinder focal brackets around headers */
.section-header {
  position: relative;
}

.section-header::after {
  content: '[ FOCUS ]';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%) scale(0.8);
  font-family: monospace;
  font-weight: 600;
  font-size: 0.65rem;
  color: rgba(245, 166, 35, 0.0);
  letter-spacing: 0.3em;
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease, color 0.5s ease;
}

.section.bg-in-focus .section-header::after {
  opacity: 0.6;
  color: var(--gold);
  transform: translateX(-50%) scale(1);
}

/* Forms glassmorphic look */
.contact-form input,
.contact-form select,
.contact-form textarea {
  background: rgba(8, 8, 15, 0.65) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  backdrop-filter: blur(5px) !important;
  color: #fff !important;
  transition: var(--transition) !important;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold) !important;
  box-shadow: 0 0 10px rgba(245, 166, 35, 0.2) !important;
  background: rgba(14, 14, 25, 0.85) !important;
}

/* Mobile responsive viewfinder HUD */
@media (max-width: 768px) {
  .camera-hud-overlay {
    border-width: 5px;
    font-size: 0.6rem;
  }
  .hud-rec-container { top: 15px; left: 15px; }
  .hud-timecode { bottom: 15px; right: 15px; }
  .hud-battery { top: 15px; right: 15px; }
  .hud-top-bar { display: none; }
  .hud-matte-corners { inset: 5px; }
  .hud-corner { width: 15px; height: 15px; }
  .section-bg-container::after {
    top: 15px; left: 15px; right: 15px; bottom: 15px;
  }
  .nav-logo-img {
    height: 32px !important;
  }
  .footer-logo-img {
    height: 36px !important;
  }
}

@media (max-width: 480px) {
  .loader-logo-img {
    height: 80px !important;
  }
}

/* Logo styling with background masking */
.aurevia-logo {
  filter: invert(1);
  mix-blend-mode: screen;
  transition: transform var(--transition);
  display: inline-block;
  vertical-align: middle;
}

.loader-logo-img {
  height: 130px;
  width: auto;
}

.nav-logo-img {
  height: 45px;
  width: auto;
}

.gallery-logo-img {
  height: 16px;
  width: auto;
  margin-right: 6px;
}

.footer-logo-img {
  height: 50px;
  width: auto;
}

/* About image logo watermark */
.about-img-overlay {
  display: flex !important;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.about-overlay-logo {
  height: 50px;
  width: auto;
  opacity: 0.18;
  transition: opacity var(--transition), transform var(--transition);
}

.about-img-wrap:hover .about-overlay-logo {
  opacity: 0.75;
  transform: scale(1.08);
}
