/* ═══════════════════════════════════════════════════════════
   HRIDAYA HARMONIES — MASTER STYLESHEET
   Design System: Slate Grey/White base · Electric Blue CTAs
   ═══════════════════════════════════════════════════════════ */

/* ── DESIGN TOKENS ─────────────────────────────────────── */
:root {
  /* Backgrounds */
  --bg-deep:      #0d0f1a;
  --bg-dark:      #12141f;
  --bg-card:      #1a1d2e;
  --bg-card-alt:  #1e2136;
  --bg-light:     #f5f5f8;
  --bg-white:     #ffffff;

  /* Text */
  --text-primary:   #e8eaf0;
  --text-secondary: #9ca3b0;
  --text-dark:      #0d0f1a;
  --text-muted:     #6b7280;

  /* Brand Colors */
  --electric-blue:  #00d4ff;
  --electric-blue2: #0099cc;
  --blue-glow:      rgba(0,212,255,0.15);
  --blue-glow2:     rgba(0,212,255,0.08);
  --silver:         #c8d0e0;
  --silver-light:   #e8ecf4;
  --gold:           #c9a84c;

  /* Gradients */
  --grad-primary:   linear-gradient(135deg, #00d4ff 0%, #0055ff 100%);
  --grad-hero:      linear-gradient(180deg, rgba(13,15,26,0) 0%, rgba(13,15,26,0.7) 60%, rgba(13,15,26,1) 100%);
  --grad-card:      linear-gradient(135deg, #1a1d2e 0%, #1e2136 100%);

  /* Layout */
  --container-max: 1280px;
  --gutter:        clamp(1.25rem, 5vw, 2.5rem);
  --radius-sm:     8px;
  --radius-md:     16px;
  --radius-lg:     24px;
  --radius-xl:     40px;

  /* Spacing scale */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-8: 3rem;
  --space-10: 4rem;
  --space-16: 6rem;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --t-fast: 0.15s;
  --t-med:  0.3s;
  --t-slow: 0.6s;

  /* Shadows */
  --shadow-sm:   0 2px 8px rgba(0,0,0,0.3);
  --shadow-md:   0 8px 32px rgba(0,0,0,0.4);
  --shadow-lg:   0 20px 60px rgba(0,0,0,0.5);
  --shadow-blue: 0 8px 32px rgba(0,212,255,0.2);
  --shadow-blue-lg: 0 20px 60px rgba(0,212,255,0.15);
}

/* ── RESET & BASE ──────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: 'Inter', 'Montserrat', sans-serif;
  background-color: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}
img, video {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color var(--t-fast) var(--ease);
}
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, select, textarea {
  font: inherit;
  outline: none;
}

/* ── UTILITIES ─────────────────────────────────────────── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section {
  padding: var(--space-16) 0;
}
.hidden { display: none !important; }
.gradient-text {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.accent { color: var(--electric-blue); }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--space-10);
}
.section-tag {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--electric-blue);
  background: var(--blue-glow2);
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: 100px;
  padding: 0.35rem 1rem;
  margin-bottom: var(--space-4);
}
.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: var(--space-4);
  letter-spacing: -0.02em;
}
.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ── BUTTONS ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 100px;
  border: 2px solid transparent;
  transition: all var(--t-med) var(--ease);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn-icon { width: 1rem; height: 1rem; flex-shrink: 0; }
.btn-large { padding: 1.1rem 2.5rem; font-size: 1rem; }

.btn-primary {
  background: var(--grad-primary);
  color: var(--bg-deep);
  box-shadow: var(--shadow-blue);
}
.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--shadow-blue-lg);
  filter: brightness(1.1);
}
.btn-primary:active { transform: translateY(0) scale(0.98); }

.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border-color: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  border-color: var(--electric-blue);
  color: var(--electric-blue);
  background: var(--blue-glow2);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--electric-blue);
  border-color: var(--electric-blue);
}
.btn-outline:hover {
  background: var(--electric-blue);
  color: var(--bg-deep);
  box-shadow: var(--shadow-blue);
  transform: translateY(-2px);
}
.btn-outline-full {
  display: block;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--electric-blue);
  border: 2px solid rgba(0,212,255,0.3);
  border-radius: 100px;
  padding: 0.85rem 1.5rem;
  margin-top: var(--space-4);
  transition: all var(--t-med) var(--ease);
  backdrop-filter: blur(10px);
}
.btn-outline-full:hover {
  background: var(--electric-blue);
  color: var(--bg-deep);
  border-color: var(--electric-blue);
  box-shadow: var(--shadow-blue);
}

/* ── NAVBAR ────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-4) 0;
  transition: all var(--t-med) var(--ease);
}
.navbar.scrolled {
  background: rgba(13,15,26,0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 0.75rem 0;
  box-shadow: var(--shadow-md);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
}
.nav-logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 8px;
}
.nav-logo-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.nav-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
  padding: 0.5rem 0.8rem;
  border-radius: var(--radius-sm);
  transition: all var(--t-fast) var(--ease);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--electric-blue);
  border-radius: 2px;
  transition: width var(--t-med) var(--ease);
}
.nav-link:hover { color: var(--text-primary); }
.nav-link:hover::after, .nav-link.active::after { width: 60%; }
.nav-link.active { color: var(--text-primary); }
.nav-cta {
  background: var(--grad-primary) !important;
  color: var(--bg-deep) !important;
  padding: 0.6rem 1.3rem !important;
  border-radius: 100px !important;
  font-weight: 700 !important;
  letter-spacing: 0.05em !important;
  box-shadow: var(--shadow-blue) !important;
  transition: all var(--t-med) var(--ease) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  transform: translateY(-2px) !important;
  box-shadow: var(--shadow-blue-lg) !important;
  filter: brightness(1.1);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--t-med) var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── HERO ──────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  transition: transform 8s var(--ease);
  will-change: transform;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--grad-hero);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: clamp(6rem, 15vh, 10rem);
  padding-bottom: clamp(4rem, 10vh, 6rem);
  max-width: 820px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--electric-blue);
  background: rgba(0,212,255,0.08);
  border: 1px solid rgba(0,212,255,0.25);
  border-radius: 100px;
  padding: 0.5rem 1.1rem;
  margin-bottom: var(--space-5);
  animation: fadeInUp 0.8s var(--ease) both;
}
.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--electric-blue);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--electric-blue);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--electric-blue); }
  50% { opacity: 0.6; box-shadow: 0 0 20px var(--electric-blue); }
}
.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-5);
  animation: fadeInUp 0.8s var(--ease) 0.15s both;
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: var(--space-8);
  animation: fadeInUp 0.8s var(--ease) 0.3s both;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-bottom: var(--space-10);
  animation: fadeInUp 0.8s var(--ease) 0.45s both;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  flex-wrap: wrap;
  animation: fadeInUp 0.8s var(--ease) 0.6s both;
}
.stat-item {
  display: flex;
  flex-direction: column;
}
.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--electric-blue);
  line-height: 1;
}
.stat-suffix { font-size: 1.5rem; font-weight: 900; color: var(--electric-blue); }
.stat-label {
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  text-transform: uppercase;
  margin-top: 2px;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.1);
}
.hero-scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  opacity: 0.5;
  animation: fadeInUp 1s var(--ease) 1s both;
}
.hero-scroll-indicator span {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-secondary);
}
.scroll-mouse {
  width: 22px;
  height: 34px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 11px;
  display: flex;
  justify-content: center;
  padding-top: 5px;
}
.scroll-wheel {
  width: 3px;
  height: 8px;
  background: var(--electric-blue);
  border-radius: 2px;
  animation: scrollWheel 1.8s infinite;
}
@keyframes scrollWheel {
  0%   { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(12px); opacity: 0; }
}

/* ── SERVICES PREVIEW ──────────────────────────────────── */
.services-preview { background: var(--bg-dark); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  align-items: stretch;
}
@media (max-width: 900px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  position: relative;
  background: var(--grad-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-6);
  transition: all var(--t-med) var(--ease);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(0,212,255,0.06), transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--t-med) var(--ease);
}
.service-card:hover::before { opacity: 1; }
.service-card:hover {
  border-color: rgba(0,212,255,0.25);
  transform: translateY(-6px);
  box-shadow: var(--shadow-blue);
}
.service-card--featured {
  border-color: rgba(0,212,255,0.3);
  background: linear-gradient(135deg, #1a1d2e 0%, #151830 50%, #0d0f1a 100%);
}
.service-card--featured::before { opacity: 1; }
.featured-badge {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bg-deep);
  background: var(--grad-primary);
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  box-shadow: var(--shadow-blue);
}
.service-card-icon {
  width: 56px;
  height: 56px;
  background: var(--blue-glow2);
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.service-card-icon svg {
  width: 28px;
  height: 28px;
  color: var(--electric-blue);
  stroke: var(--electric-blue);
}
.service-card-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
}
.service-card-desc { color: var(--text-secondary); font-size: 0.93rem; line-height: 1.7; flex-grow: 1; }
.service-card-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.service-card-list li {
  font-size: 0.85rem;
  color: var(--text-secondary);
  padding-left: 1rem;
  position: relative;
}
.service-card-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--electric-blue);
  font-size: 0.75rem;
}
.service-card-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--electric-blue);
  text-transform: uppercase;
  transition: gap var(--t-fast) var(--ease), letter-spacing var(--t-fast) var(--ease);
}
.service-card-link:hover { letter-spacing: 0.1em; }

/* ── PROCESS ───────────────────────────────────────────── */
.process-section { background: var(--bg-deep); }
.process-grid {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.process-step {
  flex: 1;
  text-align: center;
  padding: var(--space-6) var(--space-4);
  position: relative;
  transition: transform var(--t-med) var(--ease);
}
.process-step:hover { transform: translateY(-4px); }
.step-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(0,212,255,0.3);
  line-height: 1;
  margin-bottom: var(--space-4);
  transition: -webkit-text-stroke var(--t-med) var(--ease);
}
.process-step:hover .step-number { -webkit-text-stroke-color: var(--electric-blue); }
.step-content h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: var(--space-3);
}
.step-content p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.7; }
.process-connector {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, rgba(0,212,255,0.4), rgba(0,212,255,0.1));
  align-self: center;
  margin-top: -2rem;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .process-grid { flex-direction: column; align-items: center; gap: 0; }
  .process-connector { width: 1px; height: 40px; background: linear-gradient(180deg, rgba(0,212,255,0.4), rgba(0,212,255,0.1)); margin: 0; }
}

/* ── FEATURED WORK ─────────────────────────────────────── */
.featured-section { background: var(--bg-dark); }
.featured-grid {
  display: grid;
  grid-template-columns: 300px 1fr 300px;
  gap: var(--space-5);
  align-items: start;
}
@media (max-width: 1100px) { .featured-grid { grid-template-columns: 260px 1fr; } }
@media (max-width: 960px)  { .featured-grid { grid-template-columns: 1fr; } }

.featured-video-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--t-med) var(--ease);
}
.featured-video-card:hover { box-shadow: var(--shadow-blue); }
/* ── Portrait (9:16) video wrapper — for Reels ─── */
.video-wrapper {
  position: relative;
  aspect-ratio: 9/16;
  background: #000;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  max-height: 70vh;          /* prevent giant portrait on large screens */
}
.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: contain;       /* show full 9:16 without cropping */
  background: #000;
}
/* Landscape override — only for lightbox */
.video-wrapper.landscape {
  aspect-ratio: 16/9;
  max-height: none;
  border-radius: 0;
}
.video-wrapper.landscape video { object-fit: cover; }
.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity var(--t-med) var(--ease);
  cursor: pointer;
}
.video-overlay.hidden { opacity: 0; pointer-events: none; }
.play-btn {
  width: 72px;
  height: 72px;
  background: var(--grad-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 0 rgba(0,212,255,0.4);
  animation: playPulse 2s infinite;
  transition: transform var(--t-fast) var(--ease);
}
.play-btn:hover { transform: scale(1.1); }
.play-btn svg { width: 28px; height: 28px; color: var(--bg-deep); margin-left: 4px; }
@keyframes playPulse {
  0%   { box-shadow: 0 0 0 0 rgba(0,212,255,0.4); }
  70%  { box-shadow: 0 0 0 20px rgba(0,212,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,212,255,0); }
}

/* Custom Video Controls */
.video-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, transparent 100%);
  opacity: 0;
  transition: opacity var(--t-med) var(--ease);
}
.video-wrapper:hover .video-controls,
.video-wrapper:focus-within .video-controls { opacity: 1; }
.vc-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  flex-shrink: 0;
  border-radius: 6px;
  transition: color var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}
.vc-btn:hover { color: var(--electric-blue); background: rgba(255,255,255,0.08); }
.vc-btn svg { width: 16px; height: 16px; }
.vc-progress-wrap {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,0.2);
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.vc-progress-bar {
  height: 100%;
  background: var(--grad-primary);
  border-radius: 4px;
  width: 0%;
  transition: width 0.1s linear;
  pointer-events: none;
}
.vc-time {
  font-size: 0.72rem;
  color: var(--text-secondary);
  font-family: 'Montserrat', sans-serif;
  white-space: nowrap;
}
.video-info {
  padding: var(--space-5) var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.video-info h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
}
.video-info p { color: var(--text-secondary); font-size: 0.9rem; }
.video-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--electric-blue);
  background: var(--blue-glow2);
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: 100px;
  padding: 0.2rem 0.7rem;
  align-self: flex-start;
}

/* Reel Cards */
.featured-reel {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.reel-card {
  display: flex;
  gap: var(--space-3);
  align-items: center;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: all var(--t-med) var(--ease);
}
.reel-card:hover { border-color: rgba(0,212,255,0.3); transform: translateX(4px); box-shadow: var(--shadow-blue); }
.reel-card.active { border-color: var(--electric-blue); background: var(--bg-card-alt); }
.reel-thumb {
  width: 100px;
  height: 72px;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.reel-play {
  width: 32px;
  height: 32px;
  background: rgba(0,212,255,0.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.reel-play svg { width: 12px; height: 12px; color: var(--bg-deep); margin-left: 2px; }
.reel-info { padding: var(--space-3) var(--space-4) var(--space-3) 0; flex: 1; }
.reel-info h4 { font-family: 'Montserrat', sans-serif; font-size: 0.9rem; font-weight: 700; }

/* ── TESTIMONIALS ──────────────────────────────────────── */
.testimonials-section { background: var(--bg-deep); }
.testimonials-carousel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  margin-bottom: var(--space-6);
}
@media (max-width: 900px) { .testimonials-carousel { grid-template-columns: 1fr; } }
.testimonial-card {
  background: var(--grad-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-6);
  position: relative;
  transition: all var(--t-med) var(--ease);
}
.testimonial-card:hover { border-color: rgba(0,212,255,0.2); transform: translateY(-4px); box-shadow: var(--shadow-blue); }
.testimonial-quote {
  font-family: 'Montserrat', sans-serif;
  font-size: 5rem;
  font-weight: 900;
  color: rgba(0,212,255,0.15);
  line-height: 0.8;
  margin-bottom: var(--space-4);
  user-select: none;
}
.testimonial-text { color: var(--text-secondary); line-height: 1.7; font-size: 0.95rem; margin-bottom: var(--space-5); font-style: italic; }
.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.author-avatar {
  width: 44px;
  height: 44px;
  background: var(--grad-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--bg-deep);
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-family: 'Montserrat', sans-serif; font-size: 0.9rem; font-weight: 700; }
.testimonial-author span { font-size: 0.8rem; color: var(--text-muted); }
.carousel-nav {
  display: flex;
  justify-content: center;
  gap: var(--space-2);
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transition: all var(--t-med) var(--ease);
}
.carousel-dot.active { background: var(--electric-blue); width: 24px; border-radius: 4px; }

/* ── CTA BAND ──────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, #0d0f1a 0%, #0a1428 50%, #0d0f1a 100%);
  border-top: 1px solid rgba(0,212,255,0.1);
  border-bottom: 1px solid rgba(0,212,255,0.1);
  padding: var(--space-16) 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(0,212,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
  flex-wrap: wrap;
}
.cta-inner h2 { font-family: 'Montserrat', sans-serif; font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; }
.cta-inner p { color: var(--text-secondary); margin-top: var(--space-2); font-size: 1.05rem; }

/* ── FOOTER ────────────────────────────────────────────── */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: var(--space-16);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-8);
}
@media (max-width: 900px) { .footer-inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-inner { grid-template-columns: 1fr; } }
.footer-tagline { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.7; margin-top: var(--space-3); max-width: 280px; }
.footer-social { display: flex; gap: var(--space-3); margin-top: var(--space-5); }
.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all var(--t-fast) var(--ease);
}
.social-link:hover { background: var(--electric-blue); color: var(--bg-deep); border-color: var(--electric-blue); transform: translateY(-2px); }
.social-link svg { width: 18px; height: 18px; }
.footer-nav-group h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: var(--space-5);
}
.footer-nav-group li { margin-bottom: var(--space-3); }
.footer-nav-group a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: color var(--t-fast) var(--ease);
}
.footer-nav-group a:hover { color: var(--electric-blue); }
.footer-bottom {
  margin-top: var(--space-10);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: var(--space-5) 0;
  text-align: center;
}
.footer-bottom p { color: var(--text-muted); font-size: 0.83rem; }

/* ─── PAGE HEADER (inner pages) ─────────────────────────── */
.page-header {
  padding: calc(var(--space-16) + 80px) 0 var(--space-16);
  background: var(--bg-dark);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}
.page-header h1 { font-family: 'Montserrat', sans-serif; font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; margin-bottom: var(--space-4); letter-spacing: -0.02em; }
.page-header p { color: var(--text-secondary); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }

/* ── ORDER PAGE ────────────────────────────────────────── */
.order-section { background: var(--bg-deep); }
.order-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: var(--space-10);
  align-items: start;
}
@media (max-width: 960px) { .order-layout { grid-template-columns: 1fr; } }
.order-form-wrap {
  background: var(--grad-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: var(--space-10) clamp(var(--space-5), 5%, var(--space-10));
}
.order-form-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: var(--space-2);
}
.order-form-subtitle { color: var(--text-secondary); font-size: 0.95rem; margin-bottom: var(--space-8); }

/* Form grid */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4) var(--space-5);
}
.form-group { display: flex; flex-direction: column; gap: var(--space-2); }
.form-group.full-col { grid-column: 1 / -1; }
.form-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-secondary);
}
.form-label .required-star { color: var(--electric-blue); margin-left: 2px; }
.form-input, .form-select, .form-textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 0.9rem 1.1rem;
  color: var(--text-primary);
  font-size: 0.95rem;
  transition: all var(--t-fast) var(--ease);
  width: 100%;
}
.form-input:hover, .form-select:hover, .form-textarea:hover { border-color: rgba(0,212,255,0.3); }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--electric-blue);
  background: rgba(0,212,255,0.05);
  box-shadow: 0 0 0 3px rgba(0,212,255,0.1);
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239ca3b0' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; background-size: 1rem; padding-right: 2.5rem; }
.form-select option { background: var(--bg-card); color: var(--text-primary); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-char-count { font-size: 0.75rem; color: var(--text-muted); text-align: right; margin-top: -var(--space-1); }

/* File Upload */
.file-upload-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-8) var(--space-5);
  border: 2px dashed rgba(0,212,255,0.3);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--t-med) var(--ease);
  text-align: center;
  background: rgba(0,212,255,0.02);
}
.file-upload-label:hover { border-color: var(--electric-blue); background: var(--blue-glow2); }
.file-upload-label svg { width: 32px; height: 32px; color: var(--electric-blue); }
.file-upload-label span { font-size: 0.88rem; color: var(--text-secondary); }
.file-upload-label strong { color: var(--electric-blue); }
#fileInput { display: none; }
#fileList { margin-top: var(--space-2); font-size: 0.82rem; color: var(--text-secondary); }

/* Submit */
.form-submit-row { grid-column: 1/-1; display: flex; align-items: center; justify-content: space-between; gap: var(--space-4); flex-wrap: wrap; }
.form-disclaimer { font-size: 0.78rem; color: var(--text-muted); max-width: 260px; }
.btn-submit {
  background: var(--grad-primary);
  color: var(--bg-deep);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-blue);
  transition: all var(--t-med) var(--ease);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  position: relative;
  overflow: hidden;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: var(--shadow-blue-lg); filter: brightness(1.1); }
.btn-submit:active { transform: translateY(0) scale(0.98); }
.btn-submit.loading { pointer-events: none; opacity: 0.8; }
.btn-submit svg { width: 18px; height: 18px; }
.spinner { display: none; width: 18px; height: 18px; border: 2px solid rgba(0,0,0,0.2); border-top-color: var(--bg-deep); border-radius: 50%; animation: spin 0.8s linear infinite; }
.btn-submit.loading .spinner { display: block; }
.btn-submit.loading .btn-text { display: none; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Form alerts */
.form-alert {
  display: none;
  padding: var(--space-4) var(--space-5);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  margin-top: var(--space-4);
  grid-column: 1/-1;
  align-items: center;
  gap: var(--space-3);
}
.form-alert.show { display: flex; }
.form-alert.success { background: rgba(0,212,100,0.1); border: 1px solid rgba(0,212,100,0.3); color: #00d464; }
.form-alert.error { background: rgba(255,80,80,0.1); border: 1px solid rgba(255,80,80,0.3); color: #ff5050; }
.form-alert svg { width: 20px; height: 20px; flex-shrink: 0; }

/* Order Sidebar */
.order-sidebar { display: flex; flex-direction: column; gap: var(--space-5); }
.sidebar-card {
  background: var(--grad-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
}
.sidebar-card h3 { font-family: 'Montserrat', sans-serif; font-size: 1.05rem; font-weight: 700; margin-bottom: var(--space-4); }
.pricing-table { display: flex; flex-direction: column; gap: var(--space-3); }
.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-3) 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.pricing-row:last-child { border: none; }
.pricing-row .label { font-size: 0.88rem; color: var(--text-secondary); }
.pricing-row .price { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.95rem; color: var(--electric-blue); }
.faq-item { margin-bottom: var(--space-4); }
.faq-item summary {
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-2);
}
.faq-item summary::after { content: '+'; color: var(--electric-blue); font-size: 1.2rem; flex-shrink: 0; transition: transform var(--t-fast) var(--ease); }
.faq-item[open] summary::after { content: '−'; }
.faq-item p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.7; margin-top: var(--space-3); padding-top: var(--space-3); border-top: 1px solid rgba(255,255,255,0.06); }
.trust-badges { display: flex; flex-direction: column; gap: var(--space-3); }
.trust-badge { display: flex; align-items: center; gap: var(--space-3); }
.trust-badge svg { width: 20px; height: 20px; color: var(--electric-blue); flex-shrink: 0; }
.trust-badge span { font-size: 0.85rem; color: var(--text-secondary); }

/* ── PORTFOLIO PAGE ────────────────────────────────────── */
.portfolio-section { background: var(--bg-deep); }
.portfolio-tabs {
  display: flex;
  justify-content: center;
  gap: var(--space-2);
  margin-bottom: var(--space-10);
  flex-wrap: wrap;
}
.portfolio-tab {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.65rem 1.5rem;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--text-secondary);
  transition: all var(--t-med) var(--ease);
  cursor: pointer;
  background: transparent;
}
.portfolio-tab:hover { color: var(--text-primary); border-color: rgba(0,212,255,0.3); }
.portfolio-tab.active { background: var(--grad-primary); color: var(--bg-deep); border-color: transparent; box-shadow: var(--shadow-blue); }
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--space-5);
}
.portfolio-item {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--t-med) var(--ease);
  cursor: pointer;
}
.portfolio-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-blue); border-color: rgba(0,212,255,0.25); }
.portfolio-item[data-hide="true"] { display: none; }
.portfolio-thumb {
  aspect-ratio: 9/16;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  background-color: #000;
}
.portfolio-thumb video {
  width: 100%;
  height: 100%;
  object-fit: contain;   /* show full 9:16 reel without cropping */
  background: #000;
}
.portfolio-thumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--t-med) var(--ease);
}
.portfolio-item:hover .portfolio-thumb-overlay { opacity: 1; }
.portfolio-thumb-btn {
  width: 60px;
  height: 60px;
  background: var(--grad-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-blue);
  transition: transform var(--t-fast) var(--ease);
}
.portfolio-thumb-btn:hover { transform: scale(1.1); }
.portfolio-thumb-btn svg { width: 22px; height: 22px; color: var(--bg-deep); margin-left: 3px; }
.portfolio-item-info { padding: var(--space-5) var(--space-5); }
.portfolio-item-info h3 { font-family: 'Montserrat', sans-serif; font-size: 1.05rem; font-weight: 700; margin-bottom: var(--space-2); }
.portfolio-item-info p { color: var(--text-secondary); font-size: 0.88rem; }

/* Video Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.92);
  align-items: center;
  justify-content: center;
  padding: var(--space-5);
  backdrop-filter: blur(10px);
}
.lightbox.open { display: flex; }
.lightbox-inner {
  width: 100%;
  max-width: 900px;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
  width: 36px;
  height: 36px;
  background: rgba(0,0,0,0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  font-size: 1.3rem;
  transition: all var(--t-fast) var(--ease);
}
.lightbox-close:hover { background: var(--electric-blue); color: var(--bg-deep); }
.lightbox-body { padding: var(--space-5) var(--space-6); }
.lightbox-body h3 { font-family: 'Montserrat', sans-serif; font-size: 1.2rem; font-weight: 700; margin-bottom: var(--space-2); }
.lightbox-body p { color: var(--text-secondary); font-size: 0.9rem; }

/* ── DEVOTIONAL PAGE ───────────────────────────────────── */
.devotional-section { background: var(--bg-dark); }
.devotional-hero {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: var(--space-16) var(--gutter);
  margin-bottom: var(--space-16);
  border-radius: var(--radius-xl);
}
.devotional-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.3);
  border-radius: inherit;
}
.devotional-hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}
.devotional-hero-content h2 { font-family: 'Montserrat', sans-serif; font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; margin-bottom: var(--space-4); }
.devotional-hero-content p { color: var(--text-secondary); font-size: 1.05rem; }
.youtube-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-5);
}
.youtube-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--t-med) var(--ease);
}
.youtube-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-blue); border-color: rgba(0,212,255,0.2); }
.yt-thumb {
  aspect-ratio: 16/9;
  position: relative;
  overflow: hidden;
  background: var(--bg-deep);
}
.yt-thumb iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.lazy-iframe { display: none; }
.lazy-iframe.loaded { display: block; }
.yt-thumb-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.yt-thumb-placeholder img { width: 100%; height: 100%; object-fit: cover; }
.yt-thumb-placeholder .yt-play-btn {
  position: absolute;
  width: 64px;
  height: 64px;
  background: rgba(255,0,0,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}
.yt-thumb-placeholder:hover .yt-play-btn { transform: scale(1.1); background: #ff0000; }
.yt-play-btn svg { width: 26px; height: 26px; color: white; margin-left: 4px; }
.yt-card-info { padding: var(--space-4) var(--space-5); }
.yt-card-info h4 { font-family: 'Montserrat', sans-serif; font-size: 0.95rem; font-weight: 700; margin-bottom: var(--space-2); }
.yt-card-info p { color: var(--text-secondary); font-size: 0.83rem; }
.yt-channel-cta {
  text-align: center;
  margin-top: var(--space-10);
  padding: var(--space-10) var(--space-8);
  background: var(--grad-card);
  border: 1px solid rgba(255,0,0,0.2);
  border-radius: var(--radius-lg);
}
.yt-channel-cta h3 { font-family: 'Montserrat', sans-serif; font-size: 1.4rem; font-weight: 700; margin-bottom: var(--space-3); }
.yt-channel-cta p { color: var(--text-secondary); margin-bottom: var(--space-6); }
.btn-youtube {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  background: #ff0000;
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border-radius: 100px;
  transition: all var(--t-med) var(--ease);
}
.btn-youtube:hover { background: #cc0000; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,0,0,0.3); }
.btn-youtube svg { width: 20px; height: 20px; }

/* ── SERVICES PAGE ─────────────────────────────────────── */
.services-section { background: var(--bg-deep); }
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-10);
  align-items: center;
  margin-bottom: var(--space-16);
  padding-bottom: var(--space-16);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.service-detail:last-child { border: none; margin: 0; padding: 0; }
.service-detail.reverse { direction: rtl; }
.service-detail.reverse > * { direction: ltr; }
@media (max-width: 768px) {
  .service-detail, .service-detail.reverse { grid-template-columns: 1fr; direction: ltr; }
}
.service-detail-text {}
.service-detail-badge {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--electric-blue);
  margin-bottom: var(--space-3);
}
.service-detail-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: var(--space-4);
  letter-spacing: -0.02em;
}
.service-detail-desc { color: var(--text-secondary); font-size: 1rem; line-height: 1.8; margin-bottom: var(--space-6); }
.service-detail-features { display: flex; flex-direction: column; gap: var(--space-3); margin-bottom: var(--space-6); }
.feature-row { display: flex; align-items: flex-start; gap: var(--space-3); }
.feature-check {
  width: 22px;
  height: 22px;
  background: var(--blue-glow2);
  border: 1px solid rgba(0,212,255,0.3);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.feature-check svg { width: 12px; height: 12px; color: var(--electric-blue); }
.feature-row p { font-size: 0.92rem; color: var(--text-secondary); }
.service-detail-visual {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  /* default: flex container, no fixed ratio — let content define height */
  min-height: 280px;
}
/* When the visual contains a portrait reel video — let it be fully 9:16 */
.service-detail-visual--video {
  aspect-ratio: 9/16;
  background: #000;
  min-height: unset;
  align-items: stretch;
  justify-content: stretch;
}
.service-detail-visual--video .video-wrapper {
  width: 100%;
  height: 100%;
  max-height: none;
  border-radius: 0;
}
.service-detail-visual--video video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

.service-visual-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-8);
  text-align: center;
}
.service-visual-placeholder svg { width: 64px; height: 64px; color: rgba(0,212,255,0.3); }
.service-visual-placeholder p { color: var(--text-muted); font-size: 0.88rem; }

/* ── ANIMATIONS ────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.fade-in-up.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(13,15,26,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-5);
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-link { font-size: 1.1rem; }
  .nav-toggle { display: flex; }
  .hero-stats { gap: var(--space-4); }
  .stat-number { font-size: 1.8rem; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full-col { grid-column: unset; }
  .cta-inner { flex-direction: column; text-align: center; }
  .process-connector { display: none; }
  .process-grid { flex-direction: column; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 2.4rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .btn { width: 100%; justify-content: center; }
}

/* ── PORTRAIT REEL LIST PANEL ──────────────────────────── */
.reel-list-col {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  /* Stick to viewport top on large screens */
  position: sticky;
  top: 88px;
}
@media (max-width: 960px) { .reel-list-col { position: static; } }

/* ── CUSTOM AUDIO PLAYER ───────────────────────────────── */
.audio-card {
  background: var(--grad-card);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--t-med) var(--ease);
}
.audio-card:hover {
  border-color: rgba(201,168,76,0.5);
  box-shadow: 0 8px 32px rgba(201,168,76,0.12);
}
.audio-card-header {
  background: linear-gradient(135deg, rgba(201,168,76,0.12) 0%, rgba(201,168,76,0.04) 100%);
  padding: var(--space-6);
  display: flex;
  align-items: center;
  gap: var(--space-4);
  border-bottom: 1px solid rgba(201,168,76,0.1);
}
.audio-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(201,168,76,0.25) 0%, rgba(201,168,76,0.08) 100%);
  border: 1px solid rgba(201,168,76,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.audio-card-icon svg { width: 24px; height: 24px; color: var(--gold); }
.audio-card-meta { flex: 1; min-width: 0; }
.audio-card-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 100px;
  padding: 0.18rem 0.65rem;
  display: inline-block;
  margin-bottom: 6px;
}
.audio-card-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.audio-card-subtitle {
  font-size: 0.78rem;
  color: var(--text-secondary);
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.audio-player-body { padding: var(--space-5) var(--space-6); }

/* Waveform visualizer bar */
.audio-waveform {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 40px;
  margin-bottom: var(--space-4);
}
.audio-waveform span {
  flex: 1;
  background: rgba(201,168,76,0.25);
  border-radius: 2px;
  transition: all 0.12s var(--ease);
}
.audio-waveform.playing span {
  animation: waveBar 0.8s ease-in-out infinite alternate;
}
.audio-waveform.playing span:nth-child(2n)   { animation-delay: 0.08s; }
.audio-waveform.playing span:nth-child(3n)   { animation-delay: 0.16s; }
.audio-waveform.playing span:nth-child(4n)   { animation-delay: 0.24s; }
.audio-waveform.playing span:nth-child(5n)   { animation-delay: 0.32s; }
.audio-waveform.playing span:nth-child(7n)   { animation-delay: 0.40s; }
@keyframes waveBar {
  from { transform: scaleY(0.3); background-color: rgba(201,168,76,0.3); }
  to   { transform: scaleY(1.0); background-color: rgba(201,168,76,0.85); }
}

/* Progress */
.audio-progress-wrap {
  width: 100%;
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  cursor: pointer;
  margin-bottom: var(--space-3);
  position: relative;
}
.audio-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), #e8c97a);
  border-radius: 4px;
  width: 0%;
  transition: width 0.15s linear;
  position: relative;
}
.audio-progress-bar::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background: #e8c97a;
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(201,168,76,0.6);
}
.audio-time-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: var(--text-muted);
  font-family: 'Montserrat', sans-serif;
  margin-bottom: var(--space-4);
}
.audio-controls-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-5);
}
.ac-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all var(--t-fast) var(--ease);
}
.ac-btn:hover { color: var(--gold); }
.ac-btn svg { width: 18px; height: 18px; }
.ac-play-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #e8c97a);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(201,168,76,0.4);
  transition: all var(--t-fast) var(--ease);
}
.ac-play-btn:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(201,168,76,0.55); }
.ac-play-btn svg { width: 22px; height: 22px; color: var(--bg-deep); margin-left: 3px; }
.ac-play-btn .icon-pause { margin-left: 0; }

/* Portfolio portrait thumb */
.portfolio-thumb.portrait {
  aspect-ratio: 9/16;
  max-height: 360px;
}
.portfolio-thumb.portrait video { object-fit: contain; background: #000; }

/* Form Select Dropdown Fixes */
select optgroup {
  background-color: var(--bg-deep);
  color: var(--gold);
  font-weight: 700;
  font-family: inherit;
}
select option {
  background-color: var(--bg-deep);
  color: var(--text-primary);
}
