/* ==========================================================================
   1. DESIGN TOKENS & VARIABLES (The "System")
   ========================================================================== */
:root {
  /* --- Palette: Luxury Monochrome --- */
  --color-bg: #FFFFFF;
  --color-surface: #F8F8F8;        /* Very subtle grey for contrast */
  --color-surface-hover: #F2F2F2;  /* Slightly darker on hover */
  --color-text-main: #050505;      /* Deepest Black */
  --color-text-body: #404040;      /* Dark Grey for reading */
  --color-text-muted: #888888;     /* Light Grey for metadata */
  --color-border: #E5E5E5;         /* Subtle borders */
  --color-accent: #000000;         /* Primary Action Color */
  --color-inverse: #FFFFFF;        /* Text on black buttons */

  /* --- Spacing System (8pt Grid) --- */
  --space-2xs: 4px;
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 32px;
  --space-xl: 64px;
  --space-2xl: 96px;
  --space-3xl: 128px;

  /* --- Typography --- */
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Inter', sans-serif; /* Use a distinct font here if you have one */
  
  /* Fluid Typography (Clamps for responsive text) */
  --text-hero: clamp(3rem, 6vw, 5.5rem);
  --text-h1: clamp(2.5rem, 5vw, 4rem);
  --text-h2: clamp(2rem, 4vw, 3rem);
  --text-h3: clamp(1.5rem, 3vw, 2rem);
  --text-body: 1.125rem;
  --text-small: 0.95rem;

  /* --- Shapes & Radius --- */
  --radius-full: 9999px;    /* Pill shape */
  --radius-lg: 32px;        /* Large card corners */
  --radius-md: 16px;        /* Medium corners */
  --radius-sm: 8px;         /* Small corners */

  /* --- Animations & transitions --- */
  --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Bouncy feel */
  --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);           /* Luxury smooth feel */
  --duration-fast: 0.2s;
  --duration-normal: 0.4s;
  --duration-slow: 0.8s;
}

/* ==========================================================================
   2. RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text-main);
  font-family: var(--font-main);
  font-size: var(--text-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased; /* Critical for "thin" looking text */
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Custom Scrollbar (Subtle & Minimal) */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #ccc; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #999; }

/* Selection Color (High end feel) */
::selection {
  background: var(--color-accent);
  color: var(--color-inverse);
}

/* ==========================================================================
   3. TYPOGRAPHY SYSTEM
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.04em; /* Tight tracking for modern look */
  line-height: 1.1;
  margin-bottom: var(--space-md);
}

h1 { font-size: var(--text-h1); }
h2 { font-size: var(--text-h2); }
h3 { font-size: var(--text-h3); }

p {
  color: var(--color-text-body);
  margin-bottom: var(--space-md);
  max-width: 60ch; /* Optimal reading length */
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--duration-fast) ease;
}

/* ==========================================================================
   4. LAYOUT UTILITIES
   ========================================================================== */
.container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section {
  padding: var(--space-2xl) 0;
  position: relative;
}

.grid {
  display: grid;
  gap: var(--space-lg);
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

/* Mobile Check for Grid */
@media (max-width: 768px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ==========================================================================
   5. COMPONENT: THE "ISLAND" NAVIGATION
   ========================================================================== */
.site-header {
  position: fixed;
  top: 24px;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  pointer-events: none; /* Allows clicking through empty space */
}

/* Ensure the navigation container and its interactive children are clickable
   even though the header itself allows pointer-events to pass through. */
.site-header .nav-wrap,
.site-header .nav-wrap *,
.site-header .brand,
.site-header nav,
.site-header .nav-links a,
.site-header .nav-cta {
  pointer-events: auto;
}

.nav-bar {
  pointer-events: auto; /* Re-enable clicks on the bar itself */
  background: rgba(0, 0, 0, 0.95); /* Deep Black */
  color: white;
  padding: 12px 32px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 40px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  backdrop-filter: blur(10px); /* Glass effect if opacity < 1 */
  transform: translateY(0);
  transition: transform var(--duration-normal) var(--ease-spring);
}

/* Brand Logo area */
.brand {
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: 1.1rem;
  color: white;
}

/* Desktop Links */
.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.nav-links a:hover, .nav-links a.active {
  color: white;
}

/* CTA Button in Nav */
.nav-cta {
  background: white;
  color: black;
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s;
}

.nav-cta:hover {
  transform: scale(1.05);
  background: #f0f0f0;
}

/* Mobile Nav Handling */
@media (max-width: 768px) {
  .nav-links { display: none; } /* Hide links on mobile */
  .nav-bar { padding: 12px 20px; width: 90%; justify-content: space-between; }
}

/* ==========================================================================
   6. COMPONENT: HERO SECTION (UPDATED FOR VIDEO)
   ========================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 100px;
  background: #060608; /* Matches WebGL scene clear color */
}

.hero-content {
  position: relative;
  z-index: 2; /* Sits on top of video */
  max-width: 900px;
  animation: fadeUp 1s var(--ease-smooth) forwards;
  opacity: 0;
  transform: translateY(30px);
}

/* FORCE HERO TEXT WHITE */
.hero h1, 
.hero .eyebrow, 
.hero .hero-subheading {
  color: #FFFFFF !important;
}

.hero .hero-tagline {
  color: rgba(255, 255, 255, 0.9) !important;
}

.hero h1 {
  font-size: var(--text-hero);
  line-height: 1.05;
  margin-bottom: var(--space-lg);
}

.hero-actions {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

/* ==========================================================================
   7. COMPONENT: BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 36px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 1rem;
  transition: all var(--duration-normal) var(--ease-spring);
  border: 1px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background-color: var(--color-accent);
  color: var(--color-inverse);
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
  background-color: #222; /* Slightly lighter black */
}

/* Secondary Button - Special Override for Dark Hero */
.hero .btn-secondary {
  border: 1px solid #FFFFFF;
  color: #FFFFFF;
  background: transparent;
}

.hero .btn-secondary:hover {
  background-color: #FFFFFF;
  color: #000000;
  transform: translateY(-2px);
}

/* ==========================================================================
   8. COMPONENT: THREE.JS CANVAS + CSS FALLBACK
   ========================================================================== */

/* Canvas fills the full hero */
.hero__canvas-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero__canvas-wrapper canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

/* CSS-only fallback — hidden by default, shown by JS when WebGL is unavailable */
.hero__fallback {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: none;
  pointer-events: none;
}

.hero__fallback.is-active { display: block; }

.fallback__gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 75% 40%, #1a2030 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 20% 70%, #16101e 0%, transparent 60%),
    linear-gradient(160deg, #0a0c10 0%, #060608 100%);
}

.fallback__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 120% 80% at 65% 50%, rgba(200,184,154,0.05) 0%, transparent 60%);
  animation: vfFallbackPulse 8s ease-in-out infinite;
}

@keyframes vfFallbackPulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.05); }
}

/* Button ripple (injected by interaction.js) */
.btn__ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(200, 184, 154, 0.18);
  transform: scale(0);
  animation: vfBtnRipple 0.7s ease-out forwards;
  pointer-events: none;
}

@keyframes vfBtnRipple {
  to { transform: scale(4); opacity: 0; }
}

/* Non-interactive overlay layers */
.hero__canvas-wrapper,
.hero__fallback,
.vf-grain,
.site-overlay {
  pointer-events: none;
}

/* Reduced motion: disable fallback pulse and scroll hint animations */
@media (prefers-reduced-motion: reduce) {
  .fallback__overlay    { animation: none; }
  .scroll-hint__line    { animation: none; }
  .hero__scroll-hint    { opacity: 1; animation: none; }
}

/* ── Scroll Hint ─────────────────────────────────────────────── */
.hero__scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: vfFadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) 1.8s forwards;
  pointer-events: none;
}

.scroll-hint__label {
  font-size: 0.55rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(232, 228, 220, 0.45);
  font-family: var(--font-main);
}

.scroll-hint__line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(200, 184, 154, 0.8), transparent);
  animation: vfScrollLine 2.2s ease-in-out infinite;
  transform-origin: top center;
}

@keyframes vfScrollLine {
  0%, 100% { transform: scaleY(1);    opacity: 0.4; }
  50%       { transform: scaleY(0.45); opacity: 1;   }
}

@keyframes vfFadeIn {
  to { opacity: 1; }
}

@media (max-width: 768px) {
  .hero__scroll-hint { bottom: 1.5rem; }
}

/* ==========================================================================
   9. COMPONENT: CARDS & FORMS (Standard)
   ========================================================================== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-lg);
}

.card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  position: relative;
  z-index: 1;
  transition: transform var(--duration-normal) var(--ease-smooth), background var(--duration-fast);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 300px;
  cursor: pointer;
}

/* Ensure anchor-based cards sit above decorative layers and accept pointer events */
.card a, .service-card, a.card {
  pointer-events: auto;
  position: relative;
  z-index: 2;
  display: inline-flex;
}

.card:hover {
  transform: translateY(-8px) scale(1.01);
  background: var(--color-surface-hover);
}

.card-title {
  font-size: 1.5rem;
  margin-bottom: var(--space-xs);
}

.card-text {
  color: var(--color-text-body);
  font-size: 1rem;
}

.form-group {
  margin-bottom: var(--space-md);
}

label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
}

input, textarea, select {
  width: 100%;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.2s ease;
  appearance: none;
}

input:focus, textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  background: white;
  box-shadow: 0 0 0 4px rgba(0,0,0,0.05);
}

textarea {
  resize: vertical;
  min-height: 150px;
}

/* ==========================================================================
   10. COMPONENT: FOOTER & ANIMATIONS
   ========================================================================== */
.site-footer {
  background-color: var(--color-surface);
  padding: var(--space-3xl) 0 var(--space-xl);
  margin-top: var(--space-3xl);
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Reveal utility used by JS observers */
.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.52s var(--ease-smooth), transform 0.52s var(--ease-smooth);
}
.reveal.is-visible,
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   TIMELINE WITH ANIMATED NODES
   ========================================================================== */
.timeline {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  position: relative;
  padding: var(--space-lg) 0;
}

/* Connecting line between timeline items */
.timeline::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 60px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #00D4FF, #FFD700, #00A8CC);
  z-index: 0;
}

.timeline-item {
  display: flex;
  gap: var(--space-lg);
  position: relative;
  z-index: 1;
  animation: slideInTimeline 0.8s var(--ease-smooth) backwards;
}

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.2s; }
.timeline-item:nth-child(3) { animation-delay: 0.3s; }
.timeline-item:nth-child(4) { animation-delay: 0.4s; }
.timeline-item:nth-child(5) { animation-delay: 0.5s; }

@keyframes slideInTimeline {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.timeline-node {
  position: relative;
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -10px;
}

.node-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00D4FF 0%, #00A8CC 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  color: #0F1F3F;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.4);
  transition: all 0.4s var(--ease-spring);
  cursor: pointer;
}

.node-glow {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid #00D4FF;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse-glow 2s ease-in-out infinite;
  z-index: 1;
}

@keyframes pulse-glow {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 0;
  }
}

/* Hover effect on timeline items */
.timeline-item:hover .node-circle {
  transform: scale(1.15) translateY(-8px);
  background: linear-gradient(135deg, #00E8FF 0%, #FFD700 100%);
  box-shadow: 0 12px 36px rgba(0, 212, 255, 0.6), 0 0 30px rgba(255, 215, 0, 0.4);
}

.timeline-item:hover .node-glow {
  border-color: #FFD700;
  animation: pulse-glow-active 1s ease-in-out infinite;
}

@keyframes pulse-glow-active {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
  }
}

.timeline-content {
  flex: 1;
  padding: var(--space-md);
  border-left: 3px solid #00D4FF;
  transition: all 0.4s var(--ease-smooth);
}

.timeline-item:hover .timeline-content {
  border-left-color: #FFD700;
  background: rgba(0, 212, 255, 0.05);
  padding-left: var(--space-lg);
}

/* ==========================================================================
   SERVICE PAGE BRANDED BACKGROUNDS
   ========================================================================== */

/* Video Editing - Purple/Magenta */
.hero-video {
  background: linear-gradient(135deg, #1a0033 0%, #330066 50%, #1a0033 100%);
}

.hero-video .bg-blob-1 {
  background: linear-gradient(45deg, #FF006E, #C2185B);
}

.hero-video .bg-blob-2 {
  background: linear-gradient(45deg, #9D4EDD, #C77DFF);
}

.hero-video .bg-blob-3 {
  background: linear-gradient(45deg, #FF006E, #9D4EDD);
}

.hero-video h1, .hero-video .eyebrow, .hero-video .hero-subheading {
  color: #FFFFFF !important;
}

.hero-video .hero-tagline {
  color: rgba(255, 255, 255, 0.95) !important;
}

.hero-video .btn-primary {
  background: linear-gradient(135deg, #FF006E 0%, #C2185B 100%);
  color: #FFFFFF;
}

.hero-video .btn-primary:hover {
  box-shadow: 0 20px 40px rgba(255, 0, 110, 0.4);
  background: linear-gradient(135deg, #FF1A7F 0%, #D32F7F 100%);
}

/* Graphic Designing - Gold/Amber */
.hero-design {
  background: linear-gradient(135deg, #3D3000 0%, #664D00 50%, #3D3000 100%);
}

.hero-design .bg-blob-1 {
  background: linear-gradient(45deg, #FFD700, #FFC700);
}

.hero-design .bg-blob-2 {
  background: linear-gradient(45deg, #FFA500, #FF8C00);
}

.hero-design .bg-blob-3 {
  background: linear-gradient(45deg, #FFD700, #FF8C00);
}

.hero-design h1, .hero-design .eyebrow, .hero-design .hero-subheading {
  color: #FFFFFF !important;
}

.hero-design .hero-tagline {
  color: rgba(255, 255, 255, 0.95) !important;
}

.hero-design .btn-primary {
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  color: #3D3000;
  font-weight: 700;
}

.hero-design .btn-primary:hover {
  box-shadow: 0 20px 40px rgba(255, 215, 0, 0.4);
  background: linear-gradient(135deg, #FFE94D 0%, #FFB84D 100%);
}

/* AI Creative - Cyan/Tech Blue */
.hero-ai {
  background: linear-gradient(135deg, #001a4d 0%, #003366 50%, #001a4d 100%);
}

.hero-ai .bg-blob-1 {
  background: linear-gradient(45deg, #00D9FF, #0099CC);
}

.hero-ai .bg-blob-2 {
  background: linear-gradient(45deg, #00FFFF, #0099FF);
}

.hero-ai .bg-blob-3 {
  background: linear-gradient(45deg, #009FFF, #00D9FF);
}

.hero-ai h1, .hero-ai .eyebrow, .hero-ai .hero-subheading {
  color: #FFFFFF !important;
}

.hero-ai .hero-tagline {
  color: rgba(255, 255, 255, 0.95) !important;
}

.hero-ai .btn-primary {
  background: linear-gradient(135deg, #00D9FF 0%, #0099CC 100%);
  color: #001a4d;
  font-weight: 700;
}

.hero-ai .btn-primary:hover {
  box-shadow: 0 20px 40px rgba(0, 217, 255, 0.4);
  background: linear-gradient(135deg, #4DFFFF 0%, #33BBEE 100%);
}

/* Brand Advertisement - Red/Performance */
.hero-ads {
  background: linear-gradient(135deg, #330000 0%, #660000 50%, #330000 100%);
}

.hero-ads .bg-blob-1 {
  background: linear-gradient(45deg, #FF3333, #DD0000);
}

.hero-ads .bg-blob-2 {
  background: linear-gradient(45deg, #FF6B6B, #FF4444);
}

.hero-ads .bg-blob-3 {
  background: linear-gradient(45deg, #FF3333, #FF6B6B);
}

.hero-ads h1, .hero-ads .eyebrow, .hero-ads .hero-subheading {
  color: #FFFFFF !important;
}

.hero-ads .hero-tagline {
  color: rgba(255, 255, 255, 0.95) !important;
}

.hero-ads .btn-primary {
  background: linear-gradient(135deg, #FF3333 0%, #DD0000 100%);
  color: #FFFFFF;
}

.hero-ads .btn-primary:hover {
  box-shadow: 0 20px 40px rgba(255, 51, 51, 0.4);
  background: linear-gradient(135deg, #FF5555 0%, #EE2222 100%);
}

/* Content Creation - Green/Growth */
.hero-content-page {
  background: linear-gradient(135deg, #002600 0%, #004D00 50%, #002600 100%);
}

.hero-content-page .bg-blob-1 {
  background: linear-gradient(45deg, #00D976, #00B359);
}

.hero-content-page .bg-blob-2 {
  background: linear-gradient(45deg, #33FF99, #00DD66);
}

.hero-content-page .bg-blob-3 {
  background: linear-gradient(45deg, #00D976, #33FF99);
}

.hero-content-page h1, .hero-content-page .eyebrow, .hero-content-page .hero-subheading {
  color: #FFFFFF !important;
}

.hero-content-page .hero-tagline {
  color: rgba(255, 255, 255, 0.95) !important;
}

.hero-content-page .btn-primary {
  background: linear-gradient(135deg, #00D976 0%, #00B359 100%);
  color: #FFFFFF;
}

.hero-content-page .btn-primary:hover {
  box-shadow: 0 20px 40px rgba(0, 217, 118, 0.4);
  background: linear-gradient(135deg, #33FF99 0%, #00DD66 100%);
}

/* Public Relations - Silver/Professional */
.hero-pr {
  background: linear-gradient(135deg, #1a1a2e 0%, #333366 50%, #1a1a2e 100%);
}

.hero-pr .bg-blob-1 {
  background: linear-gradient(45deg, #C0C0C0, #A9A9A9);
}

.hero-pr .bg-blob-2 {
  background: linear-gradient(45deg, #D3D3D3, #B0B0B0);
}

.hero-pr .bg-blob-3 {
  background: linear-gradient(45deg, #C0C0C0, #DCDCDC);
}

.hero-pr h1, .hero-pr .eyebrow, .hero-pr .hero-subheading {
  color: #FFFFFF !important;
}

.hero-pr .hero-tagline {
  color: rgba(255, 255, 255, 0.95) !important;
}

.hero-pr .btn-primary {
  background: linear-gradient(135deg, #C0C0C0 0%, #A9A9A9 100%);
  color: #1a1a2e;
  font-weight: 700;
}

.hero-pr .btn-primary:hover {
  box-shadow: 0 20px 40px rgba(192, 192, 192, 0.4);
  background: linear-gradient(135deg, #E8E8E8 0%, #BFBFBF 100%);
}

/* ==========================================================================
   PREMIUM ANIMATED CTA BUTTONS & CARDS
   ========================================================================== */
.cta-button {
  position: relative;
  padding: 16px 40px;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  overflow: hidden;
  transition: all var(--duration-normal) var(--ease-spring);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.cta-button-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

/* Primary CTA - Magenta */
.cta-button.primary {
  background: linear-gradient(135deg, #FF006E 0%, #C2185B 100%);
  color: white;
  box-shadow: 0 10px 30px rgba(255, 0, 110, 0.3);
}

.cta-button.primary:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 25px 50px rgba(255, 0, 110, 0.5);
  background: linear-gradient(135deg, #FF1A7F 0%, #D32F7F 100%);
}

/* Secondary CTA - Glass morphism */
.cta-button.secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.2);
}

.cta-button.secondary:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2), 0 0 30px rgba(255, 0, 110, 0.2);
}

/* Icon animation */
.cta-button .icon {
  display: inline-block;
  transition: transform 0.4s var(--ease-spring);
  font-size: 1.2em;
}

.cta-button:hover .icon {
  transform: translateX(4px);
}

/* Premium service CTA card */
.service-cta-card {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  backdrop-filter: blur(10px);
  text-align: center;
  transition: all var(--duration-normal) var(--ease-smooth);
}

.service-cta-card:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.15) 100%);
  box-shadow: 0 20px 60px rgba(255, 0, 110, 0.2);
  transform: translateY(-8px);
}

.service-cta-card h3 {
  color: #FFFFFF;
  margin-bottom: var(--space-md);
}

.timeline-content h3 {
  color: #0F1F3F;
  font-size: 1.35rem;
  margin-bottom: var(--space-xs);
}

.timeline-content .meta {
  color: #00D4FF;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-sm);
}

.timeline-content p {
  color: var(--color-text-body);
  font-size: 0.95rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .timeline::before {
    left: 20px;
    top: 40px;
  }

  .timeline-node {
    width: 60px;
    height: 60px;
  }

  .node-circle {
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }

  .node-glow {
    width: 45px;
    height: 45px;
  }

  .timeline-item {
    gap: var(--space-md);
  }

  .timeline-item:hover .node-circle {
    transform: scale(1.1) translateY(-4px);
  }

  .timeline-content {
    padding: var(--space-sm);
  }

  .timeline-item:hover .timeline-content {
    padding-left: var(--space-md);
  }
}

/* ==========================================================================
   11. 3D ANIMATED BACKGROUND - SOCIAL MEDIA PAGE
   ========================================================================== */
.hero-3d-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  background: linear-gradient(135deg, #0F1F3F 0%, #1A3A52 50%, #0D2E3F 100%);
}

.blob {
  position: absolute;
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  filter: blur(40px);
  opacity: 0.7;
  mix-blend-mode: screen;
}

.blob-1 {
  width: 400px;
  height: 400px;
  background: linear-gradient(45deg, #00D4FF, #00A8CC);
  top: -100px;
  left: -100px;
  animation: float-blob-1 15s ease-in-out infinite;
}

.blob-2 {
  width: 350px;
  height: 350px;
  background: linear-gradient(45deg, #D4A300, #FFD700);
  bottom: -50px;
  right: -50px;
  animation: float-blob-2 18s ease-in-out infinite;
}

.blob-3 {
  width: 300px;
  height: 300px;
  background: linear-gradient(45deg, #1A3A7F, #00D4FF);
  top: 50%;
  right: 10%;
  animation: float-blob-3 20s ease-in-out infinite;
}

/* 3D Floating Animations */
@keyframes float-blob-1 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(50px, -50px) rotate(90deg); }
  50% { transform: translate(100px, 0px) rotate(180deg); }
  75% { transform: translate(50px, 50px) rotate(270deg); }
}

@keyframes float-blob-2 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(-50px, 50px) rotate(100deg); }
  50% { transform: translate(-100px, 0px) rotate(200deg); }
  75% { transform: translate(-50px, -50px) rotate(300deg); }
}

@keyframes float-blob-3 {
  0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
  25% { transform: translate(-30px, 30px) scale(1.1) rotate(80deg); }
  50% { transform: translate(30px, -30px) scale(0.95) rotate(180deg); }
  75% { transform: translate(0px, 50px) scale(1.05) rotate(270deg); }
}

.hero-3d-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(15, 31, 63, 0.4) 0%, rgba(26, 58, 82, 0.6) 100%);
  z-index: 1;
}

/* Social Media Page Hero Specific Styles */
.hero-social h1,
.hero-social .eyebrow,
.hero-social .hero-subheading {
  color: #FFFFFF !important;
}

.hero-social .hero-tagline {
  color: rgba(255, 255, 255, 0.95) !important;
}

.hero-social .btn-primary {
  background: linear-gradient(135deg, #00D4FF 0%, #00A8CC 100%);
  color: #0F1F3F;
  font-weight: 700;
  transition: all var(--duration-normal) var(--ease-spring);
}

.hero-social .btn-primary:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 212, 255, 0.3);
  background: linear-gradient(135deg, #00E8FF 0%, #00BBDD 100%);
}

.hero-social .btn-secondary {
  border: 2px solid rgba(255, 255, 255, 0.8);
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all var(--duration-normal) var(--ease-spring);
}

.hero-social .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #FFFFFF;
  transform: translateY(-4px);
}

/* Accent colors for social media service cards */
.hero-social ~ .section .card {
  border-left: 4px solid #00D4FF;
  transition: all var(--duration-normal) var(--ease-smooth);
}

.hero-social ~ .section .card:hover {
  border-left-color: #FFD700;
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.15);
}

@media (max-width: 768px) {
  .blob-1 { width: 250px; height: 250px; }
  .blob-2 { width: 200px; height: 200px; }
  .blob-3 { width: 180px; height: 180px; }
}