/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700&family=Syne:wght@700;800&display=swap');

:root {
  --bg-void: #060608;
  --bg-deep: #0b0b0f;
  --bg-card: rgba(18, 18, 24, 0.65);
  --bg-glass: rgba(10, 10, 14, 0.45);
  
  --accent-cyan: #00f2fe;
  --accent-purple: #9d4edd;
  --accent-purple-glow: rgba(157, 78, 221, 0.4);
  --accent-cyan-glow: rgba(0, 242, 254, 0.4);
  --accent-grad: linear-gradient(135deg, #00f2fe 0%, #7f00ff 100%);
  --accent-grad-hover: linear-gradient(135deg, #7f00ff 0%, #00f2fe 100%);
  
  --text-main: #f9fafb;
  --text-muted: #9ca3af;
  --text-dim: #6b7280;
  
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-neon: rgba(0, 242, 254, 0.25);
  
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
  
  --shadow-neon: 0 8px 32px 0 rgba(0, 242, 254, 0.15);
  --shadow-purple: 0 8px 32px 0 rgba(127, 0, 255, 0.15);
}

/* ==========================================================================
   RESET & GLOBAL STYLES
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  background-color: var(--bg-void);
  color: var(--text-main);
  font-family: 'Plus Jakarta Sans', sans-serif;
}

body {
  overflow-x: hidden;
  position: relative;
  background-color: var(--bg-void);
}

/* Custom Sleek Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  background: var(--bg-void);
}
::-webkit-scrollbar-track {
  background: var(--bg-void);
}
::-webkit-scrollbar-thumb {
  background: #1f1f2e;
  border-radius: 10px;
  border: 2px solid var(--bg-void);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-cyan);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

button, input, select, textarea {
  font-family: inherit;
  outline: none;
  background: none;
  border: none;
}

/* ==========================================================================
   UTILITY STYLES
   ========================================================================== */
.glow-text {
  background: var(--accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.glow-btn {
  background: var(--accent-grad);
  color: #fff !important;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(0, 242, 254, 0.25);
  cursor: pointer;
}

.glow-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--accent-grad-hover);
  z-index: -1;
  opacity: 0;
  transition: var(--transition-smooth);
}

.glow-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(127, 0, 255, 0.35);
}

.glow-btn:hover::before {
  opacity: 1;
}

.glow-border {
  border: 1px solid var(--border-glass);
  position: relative;
}

.glow-border::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(0,242,254,0.4) 0%, rgba(127,0,255,0.4) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: var(--transition-smooth);
}

.glow-border:hover::after {
  opacity: 1;
}

/* Background Ambient Lights */
.bg-glow-1, .bg-glow-2 {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(150px);
  z-index: -1;
  pointer-events: none;
  opacity: 0.15;
}
.bg-glow-1 {
  background: var(--accent-cyan);
  top: 15%;
  right: -100px;
}
.bg-glow-2 {
  background: var(--accent-purple);
  bottom: 25%;
  left: -100px;
}

/* ==========================================================================
   PRELOADER
   ========================================================================== */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--bg-void);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-logo {
  position: relative;
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.loader-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid transparent;
  border-top-color: var(--accent-cyan);
  border-bottom-color: var(--accent-purple);
  border-radius: 50%;
  animation: spin 1.5s linear infinite;
}

.loader-ring::after {
  content: '';
  position: absolute;
  inset: 6px;
  border: 2px solid transparent;
  border-left-color: var(--accent-cyan);
  border-right-color: var(--accent-purple);
  border-radius: 50%;
  animation: spin-reverse 1s linear infinite;
}

.loader-brand {
  font-family: 'Syne', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: 2px;
}

.loader-brand span {
  background: var(--accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes spin-reverse {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(-360deg); }
}

/* ==========================================================================
   NAVBAR
   ========================================================================== */
.header-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition-smooth);
  border-bottom: 1px solid transparent;
}

.header-nav.scrolled {
  padding: 12px 0;
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--border-glass);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Dynamic SVG Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 1px;
}

.logo svg, .logo img {
  width: 38px;
  height: 38px;
}

.logo-text span {
  background: var(--accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  padding: 6px 0;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--text-main);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-grad);
  transition: var(--transition-fast);
}

.nav-links a:hover::after, .nav-links a.active::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--text-main);
  cursor: pointer;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 120px;
  padding-bottom: 60px;
  overflow: hidden;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.hero-content {
  z-index: 10;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--accent-cyan);
  margin-bottom: 24px;
}

.hero-tag i {
  font-size: 0.75rem;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.9); opacity: 0.6; }
  50% { transform: scale(1.15); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.6; }
}

.hero-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero-title span {
  display: block;
}

.hero-desc {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.sec-btn {
  border: 1px solid var(--border-glass);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-main);
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-smooth);
}

.sec-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

/* Stats */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  border-top: 1px solid var(--border-glass);
  padding-top: 32px;
}

.stat-item h3 {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.stat-item h3 span {
  color: var(--accent-cyan);
}

.stat-item p {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Hero Showcase Frame */
.hero-media {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* iPhone 16 Frame & Screen */
.iphone16-frame {
  position: relative;
  width: 290px;
  height: 580px;
  transform: rotate(3deg);
  transition: var(--transition-smooth);
}

.iphone16-frame:hover {
  transform: rotate(0deg) scale(1.02);
}

.hero-phone-mockup {
  width: 100%;
  height: 100%;
  border-radius: 44px;
  background: #000;
  border: 7px solid #141416;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8),
              0 0 40px rgba(0, 242, 254, 0.25);
  overflow: hidden;
  position: relative;
  transition: var(--transition-smooth);
}

.iphone16-frame:hover .hero-phone-mockup {
  box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.9),
              0 0 50px rgba(127, 0, 255, 0.35);
}

/* Dynamic Island */
.dynamic-island {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 85px;
  height: 24px;
  background: #000;
  border-radius: 20px;
  z-index: 30;
  border: 1px solid rgba(255,255,255,0.05);
}

/* iPhone 16 Buttons */
.phone-btn {
  position: absolute;
  background: #1c1c22;
  border-radius: 3px 0 0 3px;
  z-index: -1;
  box-shadow: -1px 2px 5px rgba(0,0,0,0.5);
}

.vol-up {
  left: -3px;
  top: 130px;
  width: 3px;
  height: 38px;
}

.vol-down {
  left: -3px;
  top: 178px;
  width: 3px;
  height: 38px;
}

.action-btn {
  left: -3px;
  top: 84px;
  width: 3px;
  height: 20px;
}

.power-btn {
  right: -3px;
  top: 130px;
  width: 3px;
  height: 48px;
  border-radius: 0 3px 3px 0;
}

.camera-control {
  right: -3px;
  top: 360px;
  width: 3px;
  height: 32px;
  border-radius: 0 3px 3px 0;
  background: linear-gradient(to bottom, #1c1c22, #0d0d10, #1c1c22);
}

.hero-phone-mockup video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-phone-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px 24px 32px 24px;
  pointer-events: none;
}

.hero-phone-overlay .creator-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.hero-phone-overlay .creator-tag img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--accent-cyan);
}

.hero-phone-overlay h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.hero-phone-overlay p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
}

/* Floating Badges */
.floating-badge {
  position: absolute;
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-glass);
  padding: 12px 20px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 20;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  animation: float 6s ease-in-out infinite;
}

.fb-1 {
  top: 15%;
  left: -20px;
}

.fb-2 {
  bottom: 15%;
  right: -10px;
  animation-delay: 3s;
}

.floating-badge .icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(0, 242, 254, 0.1);
  color: var(--accent-cyan);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
}

.fb-2 .icon {
  background: rgba(157, 78, 221, 0.1);
  color: var(--accent-purple);
}

.floating-badge h5 {
  font-size: 0.9rem;
  font-weight: 600;
}

.floating-badge p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0px); }
}

/* ==========================================================================
   OCCASIONS SECTION
   ========================================================================== */
.section {
  padding: 100px 0;
  position: relative;
}

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

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px auto;
}

.subtitle {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-cyan);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
}

.occasions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.occasion-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 24px;
  padding: 32px 24px;
  text-align: left;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.occasion-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(0, 242, 254, 0.08), transparent 60%);
  opacity: 0;
  transition: var(--transition-smooth);
}

.occasion-card:hover {
  transform: translateY(-8px);
  background: rgba(22, 22, 30, 0.8);
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.occasion-card:hover::before {
  opacity: 1;
}

.occasion-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  color: var(--text-main);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  margin-bottom: 24px;
  transition: var(--transition-smooth);
}

.occasion-card:hover .occasion-icon {
  background: var(--accent-grad);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 5px 15px rgba(0, 242, 254, 0.3);
}

.occasion-card h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.occasion-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   DYNAMIC REELS WALL (PORTFOLIO)
   ========================================================================== */
.portfolio-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

.filter-btn {
  padding: 10px 24px;
  border-radius: 50px;
  border: 1px solid var(--border-glass);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--text-main);
  color: var(--bg-void);
  border-color: var(--text-main);
}

.reels-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.reels-more-container {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.reel-item {
  position: relative;
  aspect-ratio: 9/16;
  border-radius: 20px;
  overflow: hidden;
  background: #000;
  border: 1px solid var(--border-glass);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.reel-item::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: var(--accent-grad);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: var(--transition-smooth);
}

.reel-item:hover {
  transform: scale(1.03) translateY(-4px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.6), 0 0 20px rgba(0, 242, 254, 0.25);
}

.reel-item:hover::after {
  opacity: 1;
}

.reel-video-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.reel-video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.65;
  filter: grayscale(20%);
  transition: var(--transition-smooth);
}

.reel-item:hover video {
  opacity: 0.95;
  filter: grayscale(0%);
}

.reel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  z-index: 2;
}

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

.reel-badge {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 4px 10px;
  border-radius: 30px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.views-count {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
}

.reel-play-btn {
  align-self: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--text-main);
  color: var(--bg-void);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  opacity: 0;
  transform: scale(0.8);
  transition: var(--transition-smooth);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.reel-item:hover .reel-play-btn {
  opacity: 1;
  transform: scale(1);
}

.reel-bottom {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.reel-title {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
}

.reel-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Filtering animation */
.reel-item.hide {
  display: none !important;
}

/* ==========================================================================
   CUSTOM REELS LIGHTBOX (VERTICAL ASPECT)
   ========================================================================== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(3, 3, 5, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 2000;
  display: none;
  justify-content: center;
  align-items: center;
  padding: 40px;
}

.lightbox.active {
  display: flex;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 2rem;
  color: var(--text-muted);
  cursor: pointer;
  z-index: 2010;
  transition: var(--transition-fast);
}

.lightbox-close:hover {
  color: var(--text-main);
  transform: scale(1.1);
}

.lightbox-wrapper {
  display: grid;
  grid-template-columns: 380px 420px;
  max-height: 85vh;
  border-radius: 24px;
  overflow: hidden;
  background: var(--bg-deep);
  border: 1px solid var(--border-glass);
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.8),
              0 0 40px rgba(0,242,254,0.1);
  animation: modalZoom 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes modalZoom {
  0% { transform: scale(0.9) translateY(20px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}

/* Lightbox Left Pane: Reel Screen */
.lightbox-video-container {
  width: 380px;
  height: 675px; /* Perfect 9:16 vertical ratio for 380px width */
  background: #000;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lightbox-video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Custom Reel Overlays */
.lightbox-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 30%),
              linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, transparent 20%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  pointer-events: none;
  z-index: 10;
}

.lightbox-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.lightbox-live-indicator {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 242, 254, 0.2);
  border: 1px solid rgba(0, 242, 254, 0.4);
  padding: 4px 10px;
  border-radius: 30px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent-cyan);
}

.lightbox-live-indicator .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-cyan);
  animation: pulse 1.5s infinite;
}

.lightbox-reel-actions {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: absolute;
  right: 20px;
  bottom: 120px;
  pointer-events: auto;
}

.lightbox-action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: #fff;
  cursor: pointer;
}

.lightbox-action-btn .btn-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.1rem;
  transition: var(--transition-fast);
  border: 1px solid rgba(255,255,255,0.05);
}

.lightbox-action-btn:hover .btn-circle {
  background: var(--text-main);
  color: var(--bg-void);
  transform: scale(1.1);
}

.lightbox-action-btn span {
  font-size: 0.7rem;
  font-weight: 600;
}

/* Custom Video Controls Panel */
.lightbox-video-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  z-index: 20;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: auto;
}

.progress-bar-container {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  cursor: pointer;
  position: relative;
}

.progress-bar {
  height: 100%;
  background: var(--accent-grad);
  width: 0%;
  border-radius: 2px;
  transition: width 0.1s linear;
}

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

.controls-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.play-pause-toggle, .volume-toggle {
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.play-pause-toggle:hover, .volume-toggle:hover {
  color: var(--accent-cyan);
  transform: scale(1.1);
}

.time-display {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

/* Big Central Play Button overlay (fades out) */
.central-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 15;
  background: rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.central-play-btn {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  transition: var(--transition-smooth);
}

.central-play-overlay.playing {
  opacity: 0;
  pointer-events: none;
}

/* Lightbox Right Pane: Info & Action Sheet */
.lightbox-info-container {
  width: 420px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-y: auto;
  border-left: 1px solid var(--border-glass);
}

.lightbox-info-top {
  display: flex;
  flex-direction: column;
}

.lightbox-category {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-cyan);
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.lightbox-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 18px;
}

.lightbox-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.lightbox-meta-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
  margin-bottom: 30px;
}

.lightbox-meta-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
}

.lightbox-meta-item i {
  color: var(--accent-cyan);
  width: 20px;
  text-align: center;
}

.lightbox-meta-item span {
  font-weight: 600;
  color: var(--text-main);
}

.lightbox-meta-item p {
  color: var(--text-muted);
}

/* Lightbox Bottom Inquiry Button */
.lightbox-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.whatsapp-cta {
  width: 100%;
  background: #25D366;
  color: #fff;
  padding: 14px;
  border-radius: 50px;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25);
  transition: var(--transition-smooth);
}

.whatsapp-cta:hover {
  background: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
}

.instagram-cta {
  width: 100%;
  border: 1px solid var(--border-glass);
  color: var(--text-main);
  padding: 14px;
  border-radius: 50px;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  transition: var(--transition-smooth);
}

.instagram-cta:hover {
  background: rgba(255,255,255,0.05);
  transform: translateY(-2px);
}

/* ==========================================================================
   ABOUT HARDIK SECTION (WITH VIDEO/CAMERA THEMED SKILL PILLS)
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

.about-img-frame {
  width: 100%;
  max-width: 380px;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-glass);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.about-img-frame::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-purple) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.about-img-frame img {
  width: 100%;
  display: block;
  transition: var(--transition-smooth);
}

.about-img-frame:hover img {
  transform: scale(1.05);
}

.about-floating-experience {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--accent-grad);
  border-radius: 20px;
  padding: 16px 24px;
  box-shadow: 0 10px 25px rgba(127, 0, 255, 0.35);
  text-align: center;
  z-index: 10;
}

.about-floating-experience h4 {
  font-family: 'Syne', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
}

.about-floating-experience p {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about-title {
  font-family: 'Syne', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
}

.about-title span {
  background: var(--accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-bio {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 30px;
}

.skills-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.skill-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.skill-info {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  font-weight: 600;
}

.skill-bar-bg {
  width: 100%;
  height: 6px;
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  overflow: hidden;
}

.skill-bar-fill {
  height: 100%;
  background: var(--accent-grad);
  border-radius: 10px;
}

.tools-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.tool-tag {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tool-tag i {
  color: var(--accent-cyan);
}

/* ==========================================================================
   TESTIMONIALS SLIDER SECTION
   ========================================================================== */
.testimonials-wrapper {
  overflow: hidden;
  position: relative;
  padding: 20px 0;
}

.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s ease;
  cursor: grab;
}

.testimonials-track:active {
  cursor: grabbing;
}

.testimonial-card {
  min-width: 380px;
  max-width: 380px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  padding: 36px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: var(--transition-smooth);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  background: rgba(22, 22, 30, 0.8);
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.testimonial-quote {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 24px;
  position: relative;
}

.testimonial-quote i {
  font-size: 1.5rem;
  color: rgba(0, 242, 254, 0.15);
  position: absolute;
  top: -15px;
  left: -15px;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  border: 1px solid var(--accent-cyan);
  color: var(--accent-cyan);
}

.testimonial-info h5 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.testimonial-info p {
  font-size: 0.78rem;
  color: var(--accent-purple);
  font-weight: 600;
}

.testimonials-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}

.bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  cursor: pointer;
  transition: var(--transition-fast);
}

.bullet.active {
  width: 24px;
  border-radius: 10px;
  background: var(--accent-cyan);
}

/* ==========================================================================
   BOOKING & CONTACT FORM (INTEGRATES WHATSAPP)
   ========================================================================== */
.booking-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.booking-info h3 {
  font-family: 'Syne', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.booking-info h3 span {
  background: var(--accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.booking-info p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 36px;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.channel-card {
  display: flex;
  align-items: center;
  gap: 20px;
}

.channel-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-glass);
  color: var(--accent-cyan);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
}

.channel-icon.insta {
  color: #E1306C;
}

.channel-icon.wa {
  color: #25D366;
}

.channel-details h6 {
  font-size: 0.8rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.channel-details a, .channel-details p {
  font-size: 1.05rem;
  font-weight: 600;
}

/* Form Styles */
.booking-form-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  padding: 48px;
  border-radius: 28px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

.form-group-full {
  grid-column: span 2;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
}

.form-input {
  background: rgba(0,0,0,0.2);
  border: 1px solid var(--border-glass);
  color: #fff;
  padding: 14px 20px;
  border-radius: 12px;
  font-size: 0.92rem;
  transition: var(--transition-fast);
  width: 100%;
}

.form-input:focus {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 10px rgba(0, 242, 254, 0.15);
}

select.form-input {
  cursor: pointer;
}

select.form-input option {
  background: var(--bg-deep);
  color: #fff;
}

textarea.form-input {
  min-height: 120px;
  resize: vertical;
}

.form-submit-btn {
  width: 100%;
  cursor: pointer;
  justify-content: center;
  font-size: 1rem;
  padding: 14px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: #040406;
  border-top: 1px solid var(--border-glass);
  padding: 60px 0 30px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .logo {
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 320px;
}

.footer-links h5, .footer-contact h5 {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-list a {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.footer-links-list a:hover {
  color: var(--accent-cyan);
  padding-left: 4px;
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.footer-contact-list li i {
  color: var(--accent-cyan);
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-glass);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.95rem;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.social-circle:hover {
  background: var(--text-main);
  color: var(--bg-void);
  transform: translateY(-2px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-glass);
  padding-top: 30px;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-dim);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 0.8rem;
  color: var(--text-dim);
}

.footer-bottom-links a:hover {
  color: var(--text-muted);
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 60px;
  }
  .hero-desc {
    margin: 0 auto 36px auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-stats {
    justify-content: center;
  }
  .hero-media {
    margin-top: 20px;
  }
  .occasions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .reels-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .about-floating-experience {
    right: 20px;
  }
  .skills-container {
    max-width: 500px;
    margin: 0 auto;
  }
  .tools-list {
    justify-content: center;
  }
  .booking-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .lightbox-wrapper {
    grid-template-columns: 1fr;
    max-height: 90vh;
    max-width: 380px;
  }
  .lightbox-info-container {
    display: none; /* Hide desktop side info, click CTA directly inside video controls or open dynamic overlays */
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg-deep);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-left: 1px solid var(--border-glass);
    flex-direction: column;
    padding: 80px 40px;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 28px;
    z-index: 999;
    transition: right 0.4s ease;
  }
  .nav-links.active {
    right: 0;
  }
  .menu-toggle {
    display: none !important;
  }
  .reels-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .testimonial-card {
    min-width: 300px;
    max-width: 300px;
    padding: 24px;
  }
  .iphone16-frame {
    transform: rotate(3deg) scale(0.9);
  }
  .iphone16-frame:hover {
    transform: rotate(0deg) scale(0.95);
  }
}

@media (max-width: 576px) {
  .floating-badge {
    display: none;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 1.15rem;
    gap: 6px;
  }
  .logo img {
    width: 30px;
    height: 30px;
  }
  .header-nav .glow-btn {
    padding: 8px 16px;
    font-size: 0.8rem;
  }
  .occasions-grid {
    grid-template-columns: 1fr;
  }
  .reels-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin: 0 auto;
  }
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .iphone16-frame {
    width: 240px;
    height: 480px;
    transform: rotate(0deg);
  }
  .iphone16-frame:hover {
    transform: scale(1.02);
  }
  .vol-up { top: 110px; height: 32px; }
  .vol-down { top: 150px; height: 32px; }
  .action-btn { top: 72px; }
  .power-btn { top: 110px; height: 40px; }
  .camera-control { top: 300px; height: 28px; }
  .hero-phone-mockup { border-radius: 36px; border-width: 5px; }
  .dynamic-island { width: 70px; height: 18px; }
  .hero-phone-overlay { padding: 16px 12px 24px 12px; }
  .hero-phone-overlay h4 { font-size: 0.88rem; }
  .hero-phone-overlay p { font-size: 0.68rem; }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-group-full {
    grid-column: span 1;
  }
  .booking-form-wrapper {
    padding: 24px;
  }
  .lightbox {
    padding: 10px;
  }
  .lightbox-wrapper {
    max-width: 100%;
    border-radius: 16px;
  }
  .lightbox-video-container {
    width: 100%;
    height: 78vh; /* Make reel cover screen on mobile */
  }
  .lightbox-close {
    top: 20px;
    right: 20px;
    font-size: 1.6rem;
  }
}
