/* ==========================================================================
   SKILL3 — PREMIUM 3D DIGITAL MARKETING EXPERIENCE (MULTI-PAGE SYSTEM)
   Brand Palette:
   --bg-primary: #0D0D0D
   --bg-secondary: #141414
   --bg-card: rgba(22, 22, 22, 0.75)
   --red-primary: #E30000
   --red-bright: #FF1A1A
   --red-glow: rgba(227, 0, 0, 0.4)
   --text-white: #FFFFFF
   --text-muted: #8E8E93
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  --bg-primary: #0D0D0D;
  --bg-secondary: #141414;
  --bg-card: rgba(22, 22, 22, 0.75);
  --bg-card-hover: rgba(32, 32, 32, 0.9);
  --border-dark: rgba(255, 255, 255, 0.08);
  --border-red: rgba(227, 0, 0, 0.3);
  --red-primary: #E30000;
  --red-bright: #FF1A1A;
  --red-glow: rgba(227, 0, 0, 0.4);
  --red-glow-strong: rgba(227, 0, 0, 0.7);
  --text-white: #FFFFFF;
  --text-muted: #9E9EA5;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'Space Grotesk', sans-serif;
  --container-width: 1320px;
  --transition-fast: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: auto;
  background-color: var(--bg-primary);
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  background-color: var(--bg-primary);
  color: var(--text-white);
  line-height: 1.6;
  position: relative;
}

::selection {
  background-color: var(--red-primary);
  color: #FFFFFF;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: #262626;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--red-primary);
}

/* Utility Containers */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* Typography & Accent Text */
.text-red {
  color: var(--red-primary);
}

.text-gradient {
  background: linear-gradient(135deg, #FFFFFF 0%, #A0A0A0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-red {
  background: linear-gradient(135deg, #FF3333 0%, var(--red-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red-primary);
  margin-bottom: 1rem;
  padding: 0.4rem 1rem;
  background: rgba(227, 0, 0, 0.08);
  border: 1px solid var(--border-red);
  border-radius: 100px;
}

.section-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  background-color: var(--red-primary);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--red-primary);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.section-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--text-muted);
  max-width: 650px;
}

/* Page Hero Banner (For inner pages) */
.page-hero {
  position: relative;
  padding: 10rem 0 4rem;
  background: radial-gradient(circle at top center, rgba(227, 0, 0, 0.15) 0%, rgba(13, 13, 13, 1) 70%);
  border-bottom: 1px solid var(--border-dark);
  text-align: center;
}

.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.page-hero-desc {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
}

/* Custom Cursor */
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  background-color: var(--red-primary);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  opacity: 0 !important;
  visibility: hidden !important;
  transition: transform 0.1s ease, background-color 0.2s ease, opacity 0.3s ease;
  box-shadow: 0 0 12px var(--red-primary);
}

.custom-cursor.visible {
  opacity: 1 !important;
  visibility: visible !important;
}

.cursor-follower {
  position: fixed;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(227, 0, 0, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  opacity: 0 !important;
  visibility: hidden !important;
  transition: width 0.3s ease, height 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #FFFFFF;
}

.cursor-follower.visible {
  opacity: 1 !important;
  visibility: visible !important;
}

.cursor-follower.expand {
  width: 70px;
  height: 70px;
  background-color: rgba(227, 0, 0, 0.15);
  border-color: var(--red-primary);
  backdrop-filter: blur(4px);
}

.cursor-follower.view-mode::after { content: 'VIEW'; }
.cursor-follower.play-mode::after { content: 'PLAY'; }
.cursor-follower.explore-mode::after { content: 'EXPLORE'; }

/* Preloader Screen */
#preloader {
  position: fixed;
  inset: 0;
  background-color: var(--bg-primary);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

#preloader.loaded {
  opacity: 0;
  visibility: hidden;
}

.preloader-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.preloader-logo {
  width: 180px;
  animation: pulseLogo 2s infinite ease-in-out;
}

@keyframes pulseLogo {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 10px rgba(227,0,0,0.3)); }
  50% { transform: scale(1.05); filter: drop-shadow(0 0 25px rgba(227,0,0,0.8)); }
}

.preloader-bar-container {
  width: 240px;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.preloader-bar {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #FF1A1A, var(--red-primary));
  box-shadow: 0 0 10px var(--red-primary);
  transition: width 0.2s ease-out;
}

.preloader-tagline {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 4px;
  color: var(--text-muted);
}

/* Floating Navigation Header (Ultra-Clean White Glassmorphism) */
#navbar {
  position: fixed;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 4rem);
  max-width: var(--container-width);
  z-index: 1000;
  padding: 0.7rem 1.8rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all var(--transition-fast);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15), 0 0 15px rgba(255, 255, 255, 0.2);
}

#navbar.scrolled {
  top: 1rem;
  background: #FFFFFF;
  border-color: rgba(227, 0, 0, 0.4);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25), 0 0 20px rgba(227, 0, 0, 0.2);
}

.nav-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
}

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

.nav-link {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  font-weight: 700;
  color: #0D0D0D;
  text-decoration: none;
  position: relative;
  transition: color var(--transition-fast);
  padding: 0.2rem 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--red-primary);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: #0D0D0D;
  font-size: 1.5rem;
  cursor: pointer;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--red-primary);
  box-shadow: 0 0 8px var(--red-primary);
  transition: width var(--transition-fast);
}

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

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.75rem 1.6rem;
  background: linear-gradient(135deg, var(--red-primary), #B30000);
  color: var(--text-white);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-decoration: none;
  border-radius: 100px;
  border: 1px solid var(--red-bright);
  box-shadow: 0 0 15px rgba(227, 0, 0, 0.4);
  transition: all var(--transition-fast);
  cursor: pointer;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(227, 0, 0, 0.7);
  background: linear-gradient(135deg, var(--red-bright), var(--red-primary));
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-white);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Mobile Drawer Overlay */
.mobile-drawer {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-smooth);
}

.mobile-drawer.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-links {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-white);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.mobile-nav-link:hover {
  color: var(--red-primary);
}

/* Hero Section (Home) */
#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1.2rem;
  background: rgba(227, 0, 0, 0.1);
  border: 1px solid var(--border-red);
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-white);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6.5vw, 5.8rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  max-width: 1050px;
  margin-bottom: 1.5rem;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--text-muted);
  max-width: 700px;
  margin-bottom: 2.5rem;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.1rem 2.5rem;
  background: linear-gradient(135deg, var(--red-primary) 0%, #A60000 100%);
  color: var(--text-white);
  font-family: var(--font-mono);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 30px var(--red-glow);
  transition: all var(--transition-fast);
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 40px var(--red-glow-strong);
  background: linear-gradient(135deg, var(--red-bright) 0%, var(--red-primary) 100%);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  border-color: #25D366;
  box-shadow: 0 0 25px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #28E16D 0%, #25D366 100%);
  box-shadow: 0 0 35px rgba(37, 211, 102, 0.7);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.1rem 2.5rem;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-white);
  font-family: var(--font-mono);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  border-radius: 100px;
  border: 1px solid var(--border-dark);
  backdrop-filter: blur(10px);
  transition: all var(--transition-fast);
  cursor: pointer;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}

/* Hero Scroll Indicator */
.hero-scroll-indicator {
  position: relative;
  margin-top: 3.5rem;
  left: auto;
  bottom: auto;
  transform: none;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  color: #AAAAAA;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 3px;
  z-index: 10;
  transition: color var(--transition-fast);
}

.hero-scroll-indicator:hover {
  color: var(--red-primary);
}

.scroll-mouse {
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  position: relative;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-wheel {
  width: 4px;
  height: 8px;
  background: var(--red-primary);
  border-radius: 4px;
  animation: scrollWheel 1.8s infinite ease-in-out;
  box-shadow: 0 0 8px var(--red-primary);
}

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

@media (max-width: 991px), (hover: none) {
  .custom-cursor, .cursor-follower {
    display: none !important;
  }
}

/* Services Marquee */
.marquee-section {
  padding: 2.5rem 0;
  background: #0A0A0A;
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  overflow: hidden;
  position: relative;
  z-index: 3;
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 3rem;
  animation: marqueeScroll 25s linear infinite;
}

.marquee-track.reverse {
  animation-direction: reverse;
}

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

.marquee-item {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 3rem;
  color: rgba(255, 255, 255, 0.85);
  white-space: nowrap;
}

.marquee-item .dot {
  width: 10px;
  height: 10px;
  background-color: var(--red-primary);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--red-primary);
}

/* Section Common Spacing */
.section-padding {
  padding: 8rem 0;
  position: relative;
}

/* "What We Do" & 3D Interactive Service Universe */
#services {
  background: var(--bg-primary);
  overflow: hidden;
}

.services-header {
  text-align: center;
  margin-bottom: 4rem;
}

.service-universe-container {
  position: relative;
  min-height: 650px;
  border-radius: 24px;
  background: radial-gradient(circle at center, rgba(25, 25, 25, 0.8) 0%, rgba(13, 13, 13, 0.95) 100%);
  border: 1px solid var(--border-dark);
  padding: 3rem 2rem;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

#services-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: auto;
}

.services-nav-tabs {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.service-tab-btn {
  padding: 0.7rem 1.4rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-dark);
  border-radius: 100px;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  backdrop-filter: blur(8px);
}

.service-tab-btn:hover, .service-tab-btn.active {
  background: rgba(227, 0, 0, 0.15);
  border-color: var(--red-primary);
  color: var(--text-white);
  box-shadow: 0 0 15px rgba(227, 0, 0, 0.3);
}

.service-display-panel {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  background: rgba(18, 18, 18, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-red);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
}

.service-detail-card {
  display: none;
}

.service-detail-card.active {
  display: block;
  animation: fadeInCard 0.4s ease forwards;
}

@keyframes fadeInCard {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

.service-card-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.service-card-title i {
  color: var(--red-primary);
}

.service-card-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.service-tags-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.8rem;
}

.service-tag-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-dark);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: #E0E0E0;
  transition: all var(--transition-fast);
}

.service-tag-item:hover {
  background: rgba(227, 0, 0, 0.12);
  border-color: rgba(227, 0, 0, 0.4);
  transform: translateX(4px);
}

.service-tag-item i {
  color: var(--red-primary);
  font-size: 0.8rem;
}

/* CEO Spotlight Card (About Page) */
.ceo-spotlight-card {
  background: var(--bg-card);
  border: 1px solid var(--border-red);
  border-radius: 24px;
  padding: 3.5rem;
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 3.5rem;
  align-items: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(227, 0, 0, 0.2);
  margin-top: 3rem;
}

.ceo-image-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid var(--red-primary);
  box-shadow: 0 10px 30px var(--red-glow);
  aspect-ratio: 1;
  background: linear-gradient(135deg, #1A1A1A 0%, #080808 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.ceo-avatar-badge {
  font-family: var(--font-heading);
  font-size: 4.5rem;
  font-weight: 900;
  color: var(--text-white);
  background: linear-gradient(180deg, #FFFFFF 0%, var(--red-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ceo-name {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--text-white);
  margin-bottom: 0.4rem;
}

.ceo-title {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--red-primary);
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
}

.ceo-bio {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.8rem;
}

.ceo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

/* Why Skill3? (3D Animated Pillars) */
#why-skill3 {
  background: var(--bg-secondary);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.8rem;
  margin-top: 3.5rem;
}

.why-card {
  background: rgba(26, 26, 26, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  opacity: 1 !important;
  transition: all var(--transition-smooth);
}

.why-card:hover {
  border-color: var(--red-primary);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), 0 0 20px rgba(227, 0, 0, 0.3);
  background: rgba(36, 36, 36, 0.95);
}

.why-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  color: var(--red-primary);
  opacity: 0.95;
  margin-bottom: 1rem;
  text-shadow: 0 0 10px rgba(227, 0, 0, 0.4);
}

.why-card:hover .why-number {
  color: var(--red-bright);
  text-shadow: 0 0 20px var(--red-primary);
}

.why-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.why-desc {
  font-size: 0.95rem;
  color: #D0D0D5;
  line-height: 1.6;
}

/* Statistics Counter Section */
#stats {
  background: #080808;
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  padding: 5rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 1.5rem;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 900;
  color: var(--text-white);
  line-height: 1;
  margin-bottom: 0.5rem;
  background: linear-gradient(180deg, #FFFFFF 0%, var(--red-bright) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* Selected Work / Portfolio */
#portfolio {
  background: var(--bg-primary);
}

.portfolio-filter-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin: 3rem 0;
}

.filter-btn {
  padding: 0.6rem 1.4rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-dark);
  border-radius: 100px;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--red-primary);
  border-color: var(--red-primary);
  color: #FFFFFF;
  box-shadow: 0 0 15px rgba(227, 0, 0, 0.4);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 2rem;
}

.portfolio-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  transition: all var(--transition-smooth);
}

.portfolio-card:hover {
  border-color: var(--border-red);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), 0 0 25px rgba(227, 0, 0, 0.25);
}

.portfolio-thumb {
  position: relative;
  width: 100%;
  height: 260px;
  overflow: hidden;
  background: linear-gradient(135deg, #222222 0%, #0D0D0D 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-card:hover .portfolio-thumb-img {
  transform: scale(1.08);
}

.portfolio-content {
  padding: 1.8rem;
}

.portfolio-category {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--red-primary);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.portfolio-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 0.8rem;
}

.portfolio-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

.portfolio-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-white);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.portfolio-card:hover .portfolio-link {
  color: var(--red-bright);
}

/* Video Showcase */
#video-showcase {
  background: var(--bg-secondary);
}

.video-frame-container {
  position: relative;
  max-width: 1000px;
  margin: 3.5rem auto 0;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border-red);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.9), 0 0 30px rgba(227, 0, 0, 0.3);
  background: #000000;
}

.video-stage {
  position: relative;
  width: 100%;
  height: 520px;
  background: radial-gradient(circle at center, #240505 0%, #080808 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-play-btn {
  width: 90px;
  height: 90px;
  background: rgba(227, 0, 0, 0.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 2rem;
  cursor: pointer;
  box-shadow: 0 0 30px var(--red-primary);
  transition: all var(--transition-fast);
  z-index: 3;
}

.video-play-btn:hover {
  transform: scale(1.15);
  background: var(--red-bright);
  box-shadow: 0 0 50px var(--red-bright);
}

.floating-tags {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.floating-tag {
  position: absolute;
  padding: 0.6rem 1.2rem;
  background: rgba(15, 15, 15, 0.85);
  border: 1px solid var(--border-red);
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-white);
  backdrop-filter: blur(10px);
  animation: floatTag 6s infinite ease-in-out alternate;
}

.tag-1 { top: 15%; left: 8%; animation-delay: 0s; }
.tag-2 { top: 20%; right: 10%; animation-delay: 1.5s; }
.tag-3 { bottom: 25%; left: 12%; animation-delay: 3s; }
.tag-4 { bottom: 18%; right: 14%; animation-delay: 4.5s; }

@keyframes floatTag {
  0% { transform: translateY(0px) rotate(0deg); }
  100% { transform: translateY(-15px) rotate(2deg); }
}

/* Pipeline Visualization */
#pipeline {
  background: var(--bg-primary);
}

.pipeline-nodes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}

.pipeline-node {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: 20px;
  padding: 2rem 1.2rem;
  text-align: center;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.pipeline-node:hover, .pipeline-node.active {
  border-color: var(--red-primary);
  background: rgba(227, 0, 0, 0.12);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(227, 0, 0, 0.3);
}

.node-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--red-primary);
  font-size: 1.4rem;
}

.pipeline-node:hover .node-icon, .pipeline-node.active .node-icon {
  background: var(--red-primary);
  color: #FFFFFF;
  box-shadow: 0 0 15px var(--red-primary);
}

.node-step {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--red-primary);
  letter-spacing: 2px;
  margin-bottom: 0.3rem;
}

.node-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-white);
}

/* Process Section */
#process {
  background: var(--bg-secondary);
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.process-step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  position: relative;
  transition: all var(--transition-fast);
}

.process-step-card:hover {
  border-color: var(--border-red);
  transform: translateY(-5px);
}

.process-step-number {
  font-family: var(--font-mono);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--red-primary);
  margin-bottom: 1rem;
}

.process-step-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 0.8rem;
}

.process-step-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Client Trust & Testimonials */
#trust {
  background: var(--bg-primary);
}

.client-logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem;
  margin: 3.5rem 0 5rem;
}

.client-logo-card {
  min-height: 90px;
  padding: 1rem 1.2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 1px;
  color: #FFFFFF;
  line-height: 1.3;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.client-logo-card:hover {
  color: #FFFFFF;
  border-color: var(--red-primary);
  box-shadow: 0 0 25px rgba(227, 0, 0, 0.4);
  background: rgba(227, 0, 0, 0.15);
  transform: translateY(-4px);
}

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

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: 20px;
  padding: 2.2rem;
  transition: all var(--transition-smooth);
}

.testimonial-card:hover {
  border-color: var(--border-red);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8);
}

.rating-stars {
  color: #FFB800;
  font-size: 1rem;
  margin-bottom: 1rem;
  display: flex;
  gap: 0.2rem;
}

.testimonial-text {
  font-size: 1rem;
  color: #D0D0D0;
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #333, #111);
  border: 1px solid var(--red-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--text-white);
}

.author-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-white);
}

.author-role {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* CTA & Contact Section */
#contact {
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

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

.contact-info-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.contact-info-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.contact-icon-box {
  width: 50px;
  height: 50px;
  background: rgba(227, 0, 0, 0.1);
  border: 1px solid var(--border-red);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red-primary);
  font-size: 1.2rem;
}

.contact-item-title {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 1px;
}

.contact-item-value {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-white);
  text-decoration: none;
}

.contact-form-container {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-dark);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}

.form-label {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #CCCCCC;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.9rem 1.2rem;
  background: rgba(10, 10, 10, 0.8);
  border: 1px solid var(--border-dark);
  border-radius: 10px;
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
  outline: none;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--red-primary);
  box-shadow: 0 0 12px rgba(227, 0, 0, 0.3);
}

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

.btn-submit {
  width: 100%;
  padding: 1.1rem;
  background: linear-gradient(135deg, var(--red-primary), #B30000);
  color: #FFFFFF;
  font-family: var(--font-mono);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 1px;
  border: 1px solid var(--red-bright);
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 0 20px var(--red-glow);
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

.btn-submit:hover {
  background: linear-gradient(135deg, var(--red-bright), var(--red-primary));
  box-shadow: 0 0 35px var(--red-glow-strong);
  transform: translateY(-2px);
}

/* Footer (Clean White Theme for PNG Logo Visibility) */
#footer {
  background: #FFFFFF;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 5rem 0 2rem;
  position: relative;
  overflow: hidden;
  color: #0D0D0D;
}

.footer-watermark {
  position: absolute;
  bottom: -2rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-heading);
  font-size: clamp(8rem, 20vw, 22rem);
  font-weight: 900;
  color: rgba(0, 0, 0, 0.03);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.footer-brand-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
  margin-bottom: 1.2rem;
}

.footer-brand-desc {
  font-size: 0.95rem;
  color: #444444;
  max-width: 320px;
  margin-bottom: 1.5rem;
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: #0D0D0D;
  margin-bottom: 1.2rem;
}

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

.footer-link {
  color: #555555;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.footer-link:hover {
  color: var(--red-primary);
}

.social-links {
  display: flex;
  gap: 0.8rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0D0D0D;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.social-icon:hover {
  background: var(--red-primary);
  border-color: var(--red-primary);
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 0 15px var(--red-primary);
}

.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #555555;
  position: relative;
  z-index: 2;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: #00FF66;
}

.status-dot {
  width: 8px;
  height: 8px;
  background-color: #00FF66;
  border-radius: 50%;
  box-shadow: 0 0 10px #00FF66;
}

/* Toast Notification */
.toast-notification {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: rgba(20, 20, 20, 0.95);
  border: 1px solid var(--red-primary);
  border-radius: 12px;
  padding: 1rem 1.8rem;
  color: #FFFFFF;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 20px var(--red-glow);
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  transition: all var(--transition-smooth);
}

.toast-notification.show {
  transform: translateY(0);
  opacity: 1;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .contact-layout, .ceo-spotlight-card {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .nav-links, .nav-cta {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.2rem;
  }

  #navbar {
    width: calc(100% - 2.4rem);
  }

  .hero-title {
    font-size: 2.4rem;
  }

  .form-group-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}
