/* ====================================================================
   Abin Vinod — Best Digital Marketer & SEO Expert in Kerala
   Complete Premium Design System & Stylesheet (Simple & Pookie Vibe)
   ==================================================================== */

/* Import Cute Rounded Fonts Quicksand & Fredoka */
@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@300;400;500;600;700&family=Quicksand:wght@300;400;500;600;700&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

/* Root Variables - Immersive Dark Cinematic Vibe */
:root {
  /* Rich Dark Backgrounds */
  --bg-dark: #0a0808;      
  --bg-dark-accent: #14100f;
  
  /* Premium Dark Glassmorphism */
  --bg-glass: rgba(26, 21, 20, 0.65);
  --bg-glass-hover: rgba(36, 30, 29, 0.85);
  --border-glass: rgba(255, 117, 151, 0.12);
  --border-glass-active: rgba(255, 117, 151, 0.28);
  --text-primary: #f5f2f1;   
  --text-secondary: #c5bebc; 
  --text-muted: #857e7c;
  --font-heading: 'Fredoka', sans-serif;
  --font-body: 'Quicksand', sans-serif;
  --font-mono: 'Space Grotesk', sans-serif;
  --transition-smooth: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --transition-fast: all 0.25s ease;
  
  /* Accents & Gradients */
  --accent: #ff7597;         
  --accent-rose: #fda4af;    
  --accent-cyan: #ff7597;    
  --accent-gradient: linear-gradient(135deg, #ff7597 0%, #fda4af 100%);
  --accent-gradient-hover: linear-gradient(135deg, #ff527b 0%, #fda4af 100%);
  --shadow-premium: 0 20px 45px rgba(255, 117, 151, 0.08);
  --shadow-neon: 0 0 25px rgba(255, 117, 151, 0.18);
}

/* Reset & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-dark);
  color: var(--text-primary);
  font-family: var(--font-body);
  overflow-x: hidden;
  letter-spacing: -0.01em;
}

body {
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(255, 158, 187, 0.04) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(253, 164, 189, 0.04) 0%, transparent 40%);
}

body::after {
  content: '';
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(10, 8, 8, 0.45); /* Soft dark tint for high readability */
  z-index: -3;
  pointer-events: none;
}

/* Custom scrollbar in pink */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { 
  background: var(--accent-gradient); 
  border-radius: 5px;
  border: 2px solid var(--bg-dark);
}
::-webkit-scrollbar-thumb:hover { background: var(--accent-gradient-hover); }

/* Custom Cute Cursor */
.custom-cursor {
  width: 24px;
  height: 24px;
  border: 1.5px solid var(--accent-cyan);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9999;
  transition: width 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), height 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.3s, border-color 0.3s;
}

.custom-cursor-dot {
  width: 6px;
  height: 6px;
  background-color: var(--accent-cyan);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 10000;
  transition: transform 0.1s;
}

.custom-cursor.hovered {
  width: 48px;
  height: 48px;
  background-color: rgba(255, 158, 187, 0.12);
  border-color: var(--accent-rose);
}

@media (max-width: 768px) {
  .custom-cursor, .custom-cursor-dot { display: none; }
}

/* Pink glow orbs */
.glow-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(140px);
  z-index: -1;
  opacity: 0.22;
  pointer-events: none;
}

.orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255, 158, 187, 0.22) 0%, transparent 70%);
  top: -150px; right: -150px;
  animation: orb-drift-1 22s infinite alternate ease-in-out;
}

.orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(253, 164, 189, 0.18) 0%, transparent 70%);
  bottom: 10%; left: -150px;
  animation: orb-drift-2 18s infinite alternate ease-in-out;
}

.orb-3 {
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(254, 205, 211, 0.15) 0%, transparent 70%);
  top: 45%; right: 5%;
  animation: orb-drift-3 15s infinite alternate ease-in-out;
}

@keyframes orb-drift-1 { 0% { transform: translate(0, 0) scale(1); } 100% { transform: translate(-150px, 100px) scale(1.2); } }
@keyframes orb-drift-2 { 0% { transform: translate(0, 0) scale(1); } 100% { transform: translate(140px, -80px) scale(0.85); } }
@keyframes orb-drift-3 { 0% { transform: translate(0, 0) scale(1); } 100% { transform: translate(-100px, -100px) scale(1.15); } }

/* Interactive Warped Grid Background Canvas styling */
#grid-interactive-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -2;
}

/* Layout Utilities */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ====================================================================
   HEADER & NAVIGATION
   ==================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 28px 0;
  transition: padding 0.3s ease;
}

.header-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg-glass);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid var(--border-glass);
  border-radius: 100px;
  padding: 14px 28px;
  box-shadow: 0 10px 40px rgba(255, 158, 187, 0.1);
  transition: var(--transition-smooth);
}

.logo, .footer-logo {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  text-decoration: none;
  color: var(--text-primary);
  letter-spacing: 2px;
}

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

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

.nav-link {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition-fast);
  position: relative;
  padding: 6px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: var(--accent-gradient);
  transition: var(--transition-smooth);
}

.nav-link:hover { color: var(--text-primary); }
.nav-link:hover::after { width: 100%; }

.hire-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.06);
  border: 1px solid rgba(16, 185, 129, 0.15);
  padding: 8px 16px;
  border-radius: 30px;
}

.pulse-dot {
  width: 8px; height: 8px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5);
  animation: pulse 2s infinite;
}

.badge-text {
  font-size: 0.8rem;
  color: #10b981;
  font-weight: 600;
  letter-spacing: 0.5px;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .header-container { padding: 12px 20px; border-radius: 40px; }
  .hire-badge { display: none; }
}

/* ====================================================================
   BUTTONS
   ==================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  font-family: var(--font-body);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-primary {
  background: var(--accent-gradient);
  color: #fff;
  border: none;
  box-shadow: 0 10px 25px rgba(168, 85, 247, 0.3);
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(168, 85, 247, 0.5);
  background: var(--accent-gradient-hover);
}

.btn-secondary {
  background: var(--bg-glass);
  color: var(--text-primary);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(12px);
}

.btn-secondary:hover {
  background: var(--bg-glass-hover);
  border-color: var(--border-glass-active);
  transform: translateY(-4px);
  box-shadow: var(--shadow-neon);
}

/* ====================================================================
   HERO SECTION
   ==================================================================== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  padding-top: 140px;
  padding-bottom: 60px;
}

.hero-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Cine-Deck Card Styling */
.cine-deck {
  position: relative;
  width: 100%;
  max-width: 1140px;
  height: 680px;
  background: rgba(30, 24, 23, 0.95);
  border: 1px solid rgba(255, 183, 197, 0.15);
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 0 35px 80px rgba(255, 158, 187, 0.18), 0 10px 25px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px 40px;
  z-index: 5;
  perspective: 1000px;
  transform-style: preserve-3d;
  transition: box-shadow 0.5s ease, border-color 0.5s ease;
}

.cine-deck::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 117, 151, 0.08) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

/* Deck Header */
.deck-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  z-index: 10;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 20px;
}

.deck-logo {
  font-family: var(--font-heading);
  font-weight: 800;
  color: #fff;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.deck-logo span:first-child {
  background: linear-gradient(135deg, #fff 0%, #ffdada 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.deck-subtitle-badge {
  font-size: 0.65rem;
  letter-spacing: 1px;
  font-family: var(--font-mono);
  background: rgba(255, 117, 151, 0.15);
  color: var(--accent-cyan);
  padding: 4px 10px;
  border-radius: 8px;
  font-weight: 600;
}

.deck-nav-categories {
  display: flex;
  gap: 12px;
}

.category-pill {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 6px 16px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition-fast);
}

.category-pill:hover, .category-pill.active {
  color: #fff;
  background: var(--accent-gradient);
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(255, 117, 151, 0.3);
}

.deck-header-right {
  display: flex;
  align-items: center;
}

.deck-live-pulse {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  padding: 6px 14px;
  border-radius: 20px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: #10b981;
  font-weight: 700;
}

/* Background Large Decrypted Title */
.deck-bg-title-wrap {
  position: absolute;
  top: 15%;
  left: 0;
  width: 100%;
  text-align: center;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}

.deck-bg-title {
  font-family: var(--font-heading);
  font-size: clamp(4.5rem, 12vw, 9.5rem);
  font-weight: 900;
  color: rgba(255, 255, 255, 0.025);
  letter-spacing: -4px;
  text-transform: uppercase;
  line-height: 1;
  margin: 0;
  transition: filter 0.6s ease, transform 0.6s ease;
}

.deck-bg-title.blur-out {
  filter: blur(25px);
  opacity: 0;
  transform: scale(1.08);
}

/* Central Character Layer */
.deck-character-layer {
  position: absolute;
  bottom: 150px;
  right: 40px;
  left: auto;
  transform: translate3d(0, 0, 50px);
  width: 40%;
  height: 52%;
  pointer-events: none;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: visible;
  transition: transform 0.1s ease-out;
}

.deck-character-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: drop-shadow(0 20px 40px rgba(255, 117, 151, 0.45));
  transform: translateY(100%) scale(0.9);
  opacity: 0;
  animation: slide-up-character 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.3s;
  transition: filter 0.5s ease, transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

@keyframes slide-up-character {
  0% { transform: translateY(100%) scale(0.9); opacity: 0; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}

/* Content Pane layout */
.deck-content-pane {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: flex-end;
  z-index: 10;
  margin-top: auto;
}

.deck-slides-container {
  position: relative;
  min-height: 220px;
  max-width: 580px;
}

.deck-slide {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.deck-slide.active {
  position: relative;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.deck-meta {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-cyan);
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.deck-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.deck-desc {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 520px;
}

.deck-stats {
  display: flex;
  align-items: center;
  gap: 20px;
}

.d-stat {
  display: flex;
  flex-direction: column;
}

.d-stat-val {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 4px;
}

.d-stat-lbl {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  font-family: var(--font-mono);
  text-transform: uppercase;
}

.d-stat-divider {
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, 0.1);
}

/* Quote Card right side */
.deck-quote-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 20px 24px;
  margin-bottom: 0px;
  backdrop-filter: blur(10px);
  transition: var(--transition-smooth);
  max-width: 380px;
  justify-self: end;
  z-index: 11;
}

.deck-quote-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 117, 151, 0.2);
  transform: translateY(-4px);
}

.deck-quote-stars {
  color: var(--accent-cyan);
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.deck-quote-text {
  font-size: 0.88rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  font-style: italic;
  margin-bottom: 10px;
}

.deck-quote-author {
  font-size: 0.78rem;
  font-family: var(--font-mono);
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
}

/* Deck Footer & Navigation controls */
.deck-footer {
  grid-column: 1 / span 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
  margin-top: 20px;
}

.deck-actions {
  display: flex;
  gap: 16px;
}

#deck-cta {
  padding: 12px 28px;
  font-size: 0.88rem;
}

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

.deck-ctrl-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 1rem;
  transition: var(--transition-fast);
}

.deck-ctrl-btn:hover {
  background: #fff;
  color: #000;
  border-color: #fff;
  transform: scale(1.05);
}

.deck-page-indicator {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
}

.deck-page-indicator span:first-child {
  color: #fff;
  font-weight: 700;
}

/* Floating Stickers on Deck */
.deck-stickers {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none;
  z-index: 4;
}

.deck-sticker {
  position: absolute;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  color: rgba(255, 255, 255, 0.9);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-family: var(--font-body);
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  animation: float-sticker 6s ease-in-out infinite alternate;
}

.deck-sticker.pos-1 { top: 22%; left: 8%; animation-delay: 0s; }
.deck-sticker.pos-2 { top: 40%; right: 6%; animation-delay: 1.5s; }
.deck-sticker.pos-3 { top: 60%; left: 5%; animation-delay: 3s; }
.deck-sticker.pos-4 { top: 18%; right: 12%; animation-delay: 4.5s; }

@keyframes float-sticker {
  0% { transform: translateY(0) rotate(-2deg); }
  100% { transform: translateY(-8px) rotate(2deg); }
}

/* Responsive Cine-Deck */
@media (max-width: 991px) {
  .cine-deck {
    height: auto;
    min-height: 750px;
    padding: 24px;
  }
  .deck-bg-title-wrap {
    top: 25%;
  }
  .deck-content-pane {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .deck-quote-card {
    display: none;
  }
  .deck-character-layer {
    height: 55%;
    bottom: 25%;
  }
  .deck-character-img {
    max-width: 60%;
  }
  .deck-sticker {
    display: none;
  }
}

@media (max-width: 600px) {
  .hero {
    padding-top: 100px;
  }
  .cine-deck {
    min-height: 650px;
    border-radius: 24px;
  }
  .deck-header {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  .deck-nav-categories {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }
  .deck-header-right {
    display: none;
  }
  .deck-character-layer {
    height: 40%;
    bottom: 35%;
  }
  .deck-character-img {
    max-width: 80%;
  }
  .deck-slides-container {
    min-height: 240px;
  }
}

.hero-scroll-indicator {
  margin: 40px auto 0 auto;
  align-self: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.mouse-icon {
  width: 22px; height: 38px;
  border: 1.5px solid var(--text-muted);
  border-radius: 100px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-wheel {
  width: 3px; height: 6px;
  background-color: var(--accent-cyan);
  border-radius: 100px;
  animation: scroll-anim 1.8s infinite;
}

@keyframes scroll-anim {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(14px); opacity: 0; }
}

/* ====================================================================
   SECTIONS GLOBAL
   ==================================================================== */
.services, .work, .experience, .testimonials, .about, .faq, .contact {
  padding: 140px 0;
  position: relative;
}

.section-header {
  margin-bottom: 72px;
}

.section-tag {
  font-size: 0.8rem;
  letter-spacing: 4px;
  color: var(--accent-cyan);
  font-weight: 800;
  margin-bottom: 16px;
  display: block;
  font-family: var(--font-mono);
  text-transform: uppercase;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.1;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.15rem;
  line-height: 1.7;
  max-width: 650px;
  margin-top: 20px;
  font-weight: 300;
}

/* ====================================================================
   SERVICES SECTION
   ==================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  background: var(--bg-glass);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 32px;
  padding: 44px 36px;
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.4s ease, 
              box-shadow 0.4s ease, 
              background 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at top left, rgba(255, 117, 151, 0.08) 0%, transparent 60%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.service-card:hover {
  border-color: rgba(255, 117, 151, 0.3);
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(255, 117, 151, 0.08), 0 15px 30px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, rgba(36, 30, 29, 0.8) 0%, rgba(26, 21, 20, 0.8) 100%);
}

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

.service-icon {
  width: 64px;
  height: 64px;
  background: rgba(255, 117, 151, 0.05);
  border: 1px solid rgba(255, 117, 151, 0.15);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  color: var(--accent);
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
              background 0.4s ease, 
              border-color 0.4s ease, 
              box-shadow 0.4s ease;
}

.service-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 2;
}

.service-card:hover .service-icon {
  background: var(--accent-gradient);
  color: #fff;
  border-color: transparent;
  transform: translateY(-6px) rotate(4deg);
  box-shadow: 0 10px 25px rgba(255, 117, 151, 0.35);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.3;
  letter-spacing: -0.5px;
}

.service-card > p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 28px;
  font-weight: 400;
}

.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-features li {
  color: var(--text-muted);
  font-size: 0.9rem;
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.service-features li::before {
  content: '✓';
  color: var(--accent-cyan);
  font-weight: 800;
  font-size: 0.85rem;
  transition: transform 0.3s ease;
}

.service-card:hover .service-features li {
  color: var(--text-secondary);
}

.service-features li:hover {
  transform: translateX(4px);
  color: #fff;
}

.service-features li:hover::before {
  transform: scale(1.2);
}

@media (max-width: 991px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ====================================================================
   RESULTS STATS BAR
   ==================================================================== */
.results-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-bottom: 72px;
}

.result-stat {
  text-align: center;
  padding: 40px 24px;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  backdrop-filter: blur(20px);
  transition: var(--transition-smooth);
}

.result-stat:hover {
  border-color: var(--border-glass-active);
  transform: translateY(-4px);
  box-shadow: var(--shadow-neon);
}

.result-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
  line-height: 1;
}

.result-label {
  font-size: 0.88rem;
  color: var(--text-secondary);
  font-weight: 500;
}

@media (max-width: 768px) {
  .results-bar { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .results-bar { grid-template-columns: 1fr; }
}

/* ====================================================================
   WORK / PROJECTS SECTION
   ==================================================================== */
.work-grid {
  display: flex;
  flex-direction: column;
  gap: 72px;
}

.project-card {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 60px;
  align-items: center;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: 32px;
  padding: 40px;
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  transition: var(--transition-smooth);
}

.project-card:hover {
  border-color: var(--border-glass-active);
  box-shadow: 0 30px 60px rgba(168, 85, 247, 0.08);
  transform: translateY(-4px);
}

.project-image-container {
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.project-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-card:hover .project-image { transform: scale(1.06); }

.project-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(4, 4, 7, 0.5);
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition-smooth);
}

.project-card:hover .project-overlay { opacity: 1; }

.project-link {
  width: 76px; height: 76px;
  background: #fff;
  color: var(--bg-dark);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-size: 1.7rem;
  box-shadow: 0 15px 30px rgba(0,0,0,0.4);
  transition: var(--transition-smooth);
}

.project-link:hover { transform: scale(1.1) rotate(45deg); background: var(--accent); color: #fff; }

.project-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.project-meta {
  display: flex;
  gap: 18px;
  color: var(--accent-cyan);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 1.5px;
  font-family: var(--font-mono);
  text-transform: uppercase;
}

.project-title {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.25;
}

.project-description {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 1.05rem;
  font-weight: 300;
}

.project-description strong {
  color: var(--text-primary);
  font-weight: 600;
}

@media (max-width: 991px) {
  .project-card {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 28px;
  }
}

/* ====================================================================
   EXPERIENCE SECTION (TIMELINE)
   ==================================================================== */
.timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20px;
  width: 2px;
  background: linear-gradient(180deg, var(--accent) 0%, rgba(255, 117, 151, 0.05) 100%);
}

.timeline-item {
  position: relative;
  margin-bottom: 60px;
  padding-left: 60px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: 11px;
  top: 32px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--bg-dark);
  border: 4px solid var(--accent);
  box-shadow: var(--shadow-neon);
  z-index: 2;
  transition: var(--transition-smooth);
}

.timeline-item:hover .timeline-dot {
  background: var(--accent);
  transform: scale(1.3);
}

.timeline-content {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: 28px;
  padding: 40px;
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  transition: var(--transition-smooth);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.timeline-content:hover {
  border-color: var(--border-glass-active);
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(255, 117, 151, 0.08), 0 15px 30px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, rgba(36, 30, 29, 0.8) 0%, rgba(26, 21, 20, 0.8) 100%);
}

.timeline-header {
  margin-bottom: 24px;
}

.timeline-date {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-rose);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.timeline-role {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 6px;
}

.timeline-company {
  font-size: 1.05rem;
  color: var(--text-secondary);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
}

.badge {
  font-size: 0.7rem;
  font-family: var(--font-mono);
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 8px;
  text-transform: uppercase;
}

.badge-freelance {
  background: rgba(255, 117, 151, 0.15);
  color: var(--accent-rose);
  border: 1px solid rgba(255, 117, 151, 0.25);
}

.badge-corp {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.25);
}

.timeline-desc {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 28px;
  font-weight: 400;
}

.timeline-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 28px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 20px;
}

.t-metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.t-metric-val {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
}

.t-metric-lbl {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
  text-transform: uppercase;
  margin-top: 4px;
}

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

.timeline-bullets li {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  position: relative;
  padding-left: 24px;
}

.timeline-bullets li::before {
  content: '→';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-cyan);
  font-weight: 800;
}

@media (max-width: 768px) {
  .timeline::before {
    left: 15px;
  }
  .timeline-dot {
    left: 6px;
    top: 28px;
  }
  .timeline-item {
    padding-left: 40px;
  }
  .timeline-content {
    padding: 24px;
  }
  .timeline-metrics {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .timeline-role {
    font-size: 1.3rem;
  }
}

/* ====================================================================
   TESTIMONIALS SECTION
   ==================================================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: 24px;
  padding: 40px 32px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  border-color: var(--border-glass-active);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(168, 85, 247, 0.08);
}

.testimonial-stars {
  color: #fbbf24;
  font-size: 1.1rem;
  letter-spacing: 3px;
  margin-bottom: 24px;
}

.testimonial-text {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  font-style: italic;
  flex-grow: 1;
  margin-bottom: 28px;
  font-weight: 300;
}

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

.testimonial-name {
  font-style: normal;
  font-weight: 700;
  color: var(--text-primary);
  display: block;
  margin-bottom: 2px;
}

.testimonial-role {
  font-size: 0.85rem;
  color: var(--accent-cyan);
  font-weight: 600;
}

@media (max-width: 991px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* ====================================================================
   ABOUT SECTION
   ==================================================================== */
.about-container {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.about-card {
  background: #2e2522;
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(255, 158, 187, 0.12);
}

.about-card-header {
  background: rgba(255, 255, 255, 0.02);
  padding: 16px 24px;
  border-bottom: 1px solid var(--border-glass);
  display: flex;
  gap: 8px;
}

.circle { width: 12px; height: 12px; border-radius: 50%; }
.circle.red { background: #f87171; }
.circle.yellow { background: #fbbf24; }
.circle.green { background: #34d399; }

.about-card-body {
  padding: 32px;
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.95rem;
  line-height: 1.7;
}

.code-comment { color: #4b5563; }
.keyword { color: #c084fc; }
.string { color: #34d399; }
.indent { padding-left: 24px; }
.indent-2 { padding-left: 48px; }

.about-text {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 28px;
  font-weight: 300;
}

.about-text strong {
  color: var(--text-primary);
  font-weight: 600;
}

.skills-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  margin-top: 48px;
}

.skill-category h4 {
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 20px;
  font-weight: 700;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 10px;
  display: inline-block;
  font-family: var(--font-heading);
}

.skill-category ul { list-style: none; }

.skill-category li {
  color: var(--text-secondary);
  margin-bottom: 12px;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 450;
}

.skill-category li::before {
  content: '→';
  color: var(--accent-cyan);
  font-weight: 800;
}

@media (max-width: 991px) {
  .about-container { grid-template-columns: 1fr; gap: 48px; }
}

/* ====================================================================
   CERTIFICATIONS SECTION
   ==================================================================== */
.certifications {
  padding: 100px 0;
  position: relative;
}

.certs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.cert-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: 24px;
  padding: 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: var(--transition-smooth);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.cert-card:hover {
  background: var(--bg-glass-hover);
  border-color: var(--border-glass-active);
  transform: translateY(-5px);
  box-shadow: var(--shadow-neon);
}

.cert-icon {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  transition: var(--transition-fast);
}

.cert-icon svg {
  width: 26px;
  height: 26px;
  display: block;
}

.cert-info h3 {
  font-size: 1.05rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.3;
}

.cert-issuer {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: block;
}

/* ====================================================================
   FAQ SECTION
   ==================================================================== */
.faq-list {
  max-width: 850px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: var(--transition-smooth);
}

.faq-item:hover,
.faq-item[open] {
  border-color: var(--border-glass-active);
  background: var(--bg-glass-hover);
}

.faq-question {
  padding: 26px 32px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1.1rem;
  list-style: none;
  user-select: none;
  color: var(--text-primary);
  transition: var(--transition-fast);
}

.faq-question::-webkit-details-marker { display: none; }

.faq-question:hover {
  color: var(--accent-cyan);
}

.faq-icon {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
  margin-left: 20px;
  color: var(--accent-cyan);
}

.faq-item[open] .faq-icon {
  transform: rotate(180deg);
  color: var(--accent-rose);
}

.faq-answer {
  padding: 0 32px 28px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.02);
  margin-top: 2px;
}

.faq-answer p {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 1rem;
  font-weight: 350;
  padding-top: 16px;
}

/* ====================================================================
   CONTACT SECTION
   ==================================================================== */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 80px;
  align-items: start;
}

.contact-subtitle {
  color: var(--text-secondary);
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 48px;
  max-width: 480px;
  font-weight: 300;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--text-primary);
  text-decoration: none;
  font-size: 1.1rem;
  padding: 20px 28px;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  transition: var(--transition-smooth);
  width: fit-content;
}

.contact-method:hover {
  background: var(--bg-glass-hover);
  border-color: var(--border-glass-active);
  box-shadow: var(--shadow-neon);
  transform: translateY(-3px);
}

.contact-method i { color: var(--accent); }

.social-links {
  display: flex;
  gap: 16px;
}

.social-link {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  color: var(--text-primary);
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.social-link:hover {
  background: var(--bg-glass-hover);
  border-color: var(--border-glass-active);
  transform: translateY(-4px);
  box-shadow: var(--shadow-neon);
  color: var(--accent-cyan);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: 32px;
  padding: 48px;
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
}

.form-group {
  position: relative;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 18px;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  outline: none;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition-smooth);
}

.form-group label {
  position: absolute;
  left: 18px; top: 18px;
  color: var(--text-muted);
  transition: var(--transition-smooth);
  pointer-events: none;
  font-weight: 450;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent-rose);
  box-shadow: 0 0 20px rgba(236, 72, 153, 0.15);
  background: rgba(255, 255, 255, 0.02);
}

.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
  top: -10px; left: 14px;
  font-size: 0.75rem;
  padding: 2px 10px;
  background: var(--bg-dark);
  color: var(--accent-cyan);
  font-weight: 700;
  border-radius: 100px;
  border: 1px solid rgba(255, 117, 151, 0.2);
}

.form-status {
  margin-top: 12px;
  font-size: 0.95rem;
  font-weight: 600;
}
.form-status.success { color: #10b981; }
.form-status.error { color: #ef4444; }

@media (max-width: 991px) {
  .contact-container { grid-template-columns: 1fr; gap: 48px; }
  .contact-form { padding: 32px; }
}

/* ====================================================================
   FOOTER (WORLD CLASS LEVEL - ULTRA PREMIUM & EXQUISITE)
   ==================================================================== */
.footer {
  background-color: #050404;
  padding: 120px 0 60px;
  position: relative;
  overflow: hidden;
}

.footer-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  opacity: 0.85;
}

.footer-spotlight {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 500px;
  background: radial-gradient(ellipse at 50% 0%, rgba(255, 117, 151, 0.12) 0%, rgba(253, 164, 189, 0.03) 40%, transparent 70%);
  pointer-events: none;
  filter: blur(80px);
  z-index: 1;
}

.footer-bg-noise {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-image: 
    linear-gradient(rgba(255, 117, 151, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 117, 151, 0.015) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 1;
  pointer-events: none;
  opacity: 0.5;
}

.footer-container {
  position: relative;
  z-index: 5;
}

/* 1. DUAL KINETIC MARQUEES */
.footer-marquee-system {
  width: 100%;
  overflow: hidden;
  margin-bottom: 80px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.marquee-row {
  display: flex;
  overflow: hidden;
  white-space: nowrap;
  user-select: none;
  padding: 8px 0;
  width: 120vw;
  margin-left: -10vw;
}

.marquee-row.marquee-left {
  border-top: 1px solid rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.marquee-row.marquee-right {
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.marquee-slider {
  display: inline-flex;
  gap: 30px;
  animation: marquee-scroll 35s linear infinite;
}

.marquee-left .marquee-slider {
  animation-direction: normal;
}

.marquee-right .marquee-slider {
  animation-direction: reverse;
}

.marquee-slider span {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.marquee-slider span:hover {
  color: var(--accent);
}

@keyframes marquee-scroll {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

/* 2. TYPOGRAPHIC CTA & SPLIT TEXT CHARACTER HOVERS */
.footer-cta-wrapper {
  text-align: center;
  margin-bottom: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-cta-tag {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 3px;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 24px;
  font-weight: 700;
  display: block;
}

.footer-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 6.2rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -3px;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 48px;
  cursor: default;
}

/* Individual character split animation on hover */
.hover-kinetic-text .word {
  display: inline-block;
  white-space: nowrap;
}

.hover-kinetic-text .char {
  display: inline-block;
  transition: transform 0.45s cubic-bezier(0.19, 1, 0.22, 1), color 0.4s ease;
}

.hover-kinetic-text .char:hover {
  transform: translateY(-12px) rotate(-8deg) scale(1.15);
  color: var(--accent);
}

/* Luxury magnetic liquid-like button */
.footer-cta-button-luxury {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 24px 60px;
  border-radius: 100px;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.25rem;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 15px 35px rgba(255, 117, 151, 0.15);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 117, 151, 0.25);
  z-index: 10;
}

.footer-cta-button-luxury .fluid-background {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: var(--accent-gradient);
  transform: scale(0);
  border-radius: 50%;
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: -1;
}

.footer-cta-button-luxury:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 25px 50px rgba(255, 117, 151, 0.35);
  border-color: transparent;
}

.footer-cta-button-luxury:hover .fluid-background {
  transform: scale(1.6);
  border-radius: 100px;
}

.footer-cta-button-luxury .arrow-wrap {
  margin-left: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-cta-button-luxury .arrow-svg {
  width: 20px;
  height: 20px;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.footer-cta-button-luxury:hover .arrow-svg {
  transform: translateX(6px) rotate(-45deg);
}

.footer-divider-glow {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 117, 151, 0.25), transparent);
  margin-bottom: 80px;
}

/* 3. ASYMMETRICAL GRID */
.footer-main-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 80px;
  margin-bottom: 100px;
}

.footer-brand-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.footer-logo-premium {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  text-decoration: none;
  color: #fff;
  letter-spacing: 2px;
}

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

.footer-brand-text {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.75;
  font-weight: 300;
  max-width: 440px;
}

.footer-social-capsules {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-capsule {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px 24px;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
  background: rgba(255, 255, 255, 0.01);
  z-index: 1;
}

.social-capsule .capsule-hover-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: var(--accent-gradient);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: -1;
}

.social-capsule:hover {
  border-color: transparent;
  color: #fff;
  transform: translateY(-4px);
  box-shadow: var(--shadow-neon);
}

.social-capsule:hover .capsule-hover-bg {
  transform: translateY(0);
}

.column-header {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 3px;
  display: block;
  margin-bottom: 32px;
  font-weight: 800;
}

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

.footer-nav-links-premium a {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--text-secondary);
  font-size: 1.1rem;
  font-weight: 600;
  transition: var(--transition-fast);
}

.link-num {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--accent);
  opacity: 0.7;
}

.link-text {
  position: relative;
}

.link-text::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1.5px;
  background: var(--accent);
  transition: var(--transition-smooth);
}

.footer-nav-links-premium a:hover {
  color: #fff;
}

.footer-nav-links-premium a:hover .link-text::after {
  width: 100%;
}

/* Awwwards Custom HUD Console Panel */
.status-console-box-premium {
  background: rgba(10, 8, 8, 0.85);
  border: 1px solid rgba(255, 117, 151, 0.12);
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  backdrop-filter: blur(25px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
  transition: border-color 0.4s ease;
}

.status-console-box-premium:hover {
  border-color: rgba(255, 117, 151, 0.3);
}

.console-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.console-lbl {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.console-val {
  font-size: 0.98rem;
  color: #fff;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.console-val.text-green {
  color: #10b981;
}

.font-mono-spec {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.console-pulse {
  width: 8px; height: 8px;
  background-color: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6);
  animation: pulse-green 2s infinite;
  display: inline-block;
}

@keyframes pulse-green {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* 4. LOWER FOOTER */
.footer-bottom-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.04);
  margin-bottom: 40px;
}

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

.copyright-text {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 400;
}

.back-to-top-premium {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  transition: var(--transition-fast);
}

.back-to-top-premium svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.back-to-top-premium:hover {
  color: var(--accent-rose);
}

.back-to-top-premium:hover svg {
  transform: translateY(-6px);
}

/* Responsive media queries */
@media (max-width: 1024px) {
  .footer-main-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
  .footer-status-panel {
    grid-column: 1 / span 2;
  }
}

@media (max-width: 600px) {
  .footer {
    padding: 100px 0 40px;
  }
  .footer-cta-title {
    font-size: clamp(2.5rem, 10vw, 4.5rem);
    letter-spacing: -1.5px;
  }
  .footer-main-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 60px;
  }
  .footer-status-panel {
    grid-column: auto;
  }
  .footer-bottom-row {
    flex-direction: column-reverse;
    gap: 24px;
    text-align: center;
  }
}

/* ====================================================================
   SCROLL REVEAL ANIMATIONS
   ==================================================================== */
.reveal, .reveal-text {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active, .reveal-text.active {
  opacity: 1;
  transform: translateY(0);
}

/* ====================================================================
   BLOG PAGES
   ==================================================================== */
.blog-hero {
  padding-top: 180px;
  padding-bottom: 80px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 32px;
  margin-bottom: 100px;
}

.blog-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: 24px;
  padding: 36px 32px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: var(--transition-smooth);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.blog-card:hover {
  border-color: var(--border-glass-active);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(168, 85, 247, 0.1);
  background: var(--bg-glass-hover);
}

.blog-card-tag {
  font-size: 0.8rem;
  color: var(--accent-cyan);
  font-weight: 800;
  letter-spacing: 3px;
  margin-bottom: 20px;
  font-family: var(--font-mono);
  text-transform: uppercase;
}

.blog-card h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 14px;
  line-height: 1.35;
}

.blog-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 24px;
  font-weight: 300;
}

.blog-card-read {
  font-size: 0.9rem;
  color: var(--accent);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-fast);
}

.blog-card:hover .blog-card-read {
  color: var(--accent-rose);
  transform: translateX(4px);
}

/* Blog Article Page */
.article-page {
  padding-top: 180px;
  padding-bottom: 100px;
}

.article-page .breadcrumb {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 48px;
  font-weight: 500;
}

.article-page .breadcrumb a {
  color: var(--accent-cyan);
  text-decoration: none;
  transition: var(--transition-fast);
}

.article-page .breadcrumb a:hover { color: var(--accent-rose); }

.article-header {
  max-width: 850px;
  margin-bottom: 56px;
}

.article-header .section-tag {
  margin-bottom: 20px;
}

.article-header h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -1.5px;
}

.article-meta {
  display: flex;
  gap: 24px;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  font-family: var(--font-mono);
}

.article-content {
  max-width: 850px;
}

.article-content h2 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  margin-top: 56px;
  margin-bottom: 24px;
  color: var(--text-primary);
  letter-spacing: -0.5px;
}

.article-content h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 18px;
  color: var(--text-primary);
}

.article-content p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.85;
  margin-bottom: 24px;
  font-weight: 300;
}

.article-content strong {
  color: var(--text-primary);
  font-weight: 600;
}

.article-content ul,
.article-content ol {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.85;
  margin-bottom: 24px;
  padding-left: 28px;
  font-weight: 300;
}

.article-content li {
  margin-bottom: 12px;
}

.article-content blockquote {
  border-left: 4px solid var(--accent);
  padding: 20px 28px;
  margin: 36px 0;
  background: var(--bg-glass);
  border-radius: 0 16px 16px 0;
  backdrop-filter: blur(10px);
}

.article-content blockquote p {
  font-style: italic;
  color: var(--text-primary);
  margin-bottom: 0;
  font-size: 1.15rem;
  font-weight: 350;
}

.article-cta {
  margin-top: 80px;
  padding: 48px;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: 28px;
  text-align: center;
  backdrop-filter: blur(20px);
}

.article-cta h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.article-cta p {
  color: var(--text-secondary);
  margin-bottom: 28px;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
}

/* ====================================================================
   POOKIE STICKERS, VIBE TOGGLE, AND SPARKLES
   ==================================================================== */
.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.vibe-toggle {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(255, 158, 187, 0.1);
}

.vibe-toggle:hover {
  background: var(--accent-gradient);
  border-color: transparent;
  transform: scale(1.1) rotate(15deg);
  box-shadow: var(--shadow-neon);
}

.pookie-stickers {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  align-items: center;
}

.sticker-badge {
  background: #fff;
  border: 1.5px solid var(--border-glass-active);
  color: var(--text-primary);
  padding: 8px 18px;
  border-radius: 40px;
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(255, 158, 187, 0.05);
  transition: var(--transition-smooth);
  animation: sticker-float 4s infinite alternate ease-in-out;
}

.sticker-badge:nth-child(even) {
  animation-delay: 1.5s;
}

.sticker-badge:hover {
  transform: translateY(-5px) scale(1.05);
  border-color: var(--accent-cyan);
  box-shadow: var(--shadow-premium);
  background: var(--bg-dark-accent);
}

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

/* Floating sparkle particles */
.sparkle-particle {
  position: fixed;
  pointer-events: none;
  z-index: 99999;
  font-size: 1.5rem;
  animation: fall-fade linear forwards;
}

@keyframes fall-fade {
  0% {
    transform: translateY(0) rotate(0deg) scale(0.4);
    opacity: 0;
  }
  15% {
    opacity: 1;
    transform: translateY(-80px) rotate(45deg) scale(1.2); /* Pop up slightly */
  }
  100% {
    transform: translateY(105vh) rotate(360deg) scale(0.5); /* Fall all the way down to bottom */
    opacity: 0;
  }
}

/* Responsive Flower mouse trail */
.flower-trail-particle {
  position: fixed;
  pointer-events: none;
  z-index: 99998;
  font-size: 1.2rem;
  transform: translate(-50%, -50%);
  animation: float-fade-flower 1s cubic-bezier(0.1, 0.8, 0.3, 1) forwards;
}

@keyframes float-fade-flower {
  0% {
    transform: translate(-50%, -50%) scale(0.4) rotate(0deg);
    opacity: 0;
  }
  20% {
    opacity: 0.9;
    transform: translate(-50%, -50%) scale(1.2) rotate(var(--random-rotate, 15deg));
  }
  100% {
    transform: translate(-50%, -60px) scale(0.5) rotate(90deg);
    opacity: 0;
  }
}


