/* ==========================================
   Zero Bondage — Core CSS & Design System
   ========================================== */

/* Modern CSS Reset & Variables */
:root {
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Premium HSL Color Palette (Dark Theme) */
  --bg-primary: hsl(235, 43%, 6%);
  --bg-secondary: hsl(235, 30%, 10%);
  --bg-card: hsla(235, 25%, 12%, 0.55);
  
  --accent-purple: hsl(271, 85%, 60%);
  --accent-purple-glow: hsla(271, 85%, 60%, 0.3);
  --accent-cyan: hsl(182, 100%, 48%);
  --accent-cyan-glow: hsla(182, 100%, 48%, 0.3);
  --accent-pink: hsl(328, 100%, 60%);
  --accent-pink-glow: hsla(328, 100%, 60%, 0.35);

  --text-primary: hsl(0, 0%, 96%);
  --text-muted: hsl(235, 12%, 75%);
  --text-dark: hsl(235, 20%, 40%);

  --border-color: rgba(255, 255, 255, 0.08);
  --border-color-glow: rgba(0, 242, 254, 0.25);
  
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
  
  --glass-bg: rgba(11, 13, 28, 0.6);
  --glass-blur: blur(16px) saturate(180%);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, var(--accent-purple), var(--accent-cyan));
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(to bottom, var(--accent-pink), var(--accent-purple));
}

/* Body / Global Setup */
body {
  position: relative;
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Visual Depth: Ambient Blur Orbs */
.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(140px);
  z-index: -1;
  opacity: 0.45;
  pointer-events: none;
  mix-blend-mode: screen;
  animation: floatOrb 25s infinite alternate ease-in-out;
}

.orb-1 {
  width: 450px;
  height: 450px;
  background: var(--accent-purple-glow);
  top: -10%;
  right: -5%;
  animation-duration: 20s;
}

.orb-2 {
  width: 500px;
  height: 500px;
  background: var(--accent-cyan-glow);
  bottom: 10%;
  left: -10%;
  animation-duration: 28s;
}

.orb-3 {
  width: 350px;
  height: 350px;
  background: var(--accent-pink-glow);
  top: 40%;
  right: 20%;
  animation-duration: 22s;
}

@keyframes floatOrb {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(40px, -60px) scale(1.1);
  }
  100% {
    transform: translate(-30px, 30px) scale(0.95);
  }
}

/* Typography Utilities */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

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

/* Gradients & Special Text styles */
.gradient-text {
  background: linear-gradient(135deg, #ffffff 30%, var(--accent-cyan) 70%, var(--accent-purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-alt {
  background: linear-gradient(135deg, var(--accent-pink) 0%, var(--accent-purple) 50%, var(--accent-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.badge-container {
  margin-bottom: 1.5rem;
}

.modern-badge {
  background: rgba(138, 43, 226, 0.15);
  border: 1px solid rgba(138, 43, 226, 0.3);
  padding: 0.5rem 1.2rem;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-cyan);
  display: inline-block;
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.1);
}

/* Layout Containers */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 2rem;
  position: relative;
}

.grid-2-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* ==========================================
   Component Styling
   ========================================== */

/* Sticky Header Navigation */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(8, 9, 20, 0.3);
  border-bottom: 1px solid transparent;
  transition: var(--transition-smooth);
}

.main-header.scrolled {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--border-color);
  padding: 0.8rem 0;
}

.header-container {
  max-width: 1250px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  transition: var(--transition-smooth);
}

.main-header.scrolled .header-container {
  padding: 0.8rem 2rem;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo {
  height: 40px;
  width: auto;
  border-radius: 5px;
  transition: var(--transition-smooth);
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  background: linear-gradient(to right, #ffffff, var(--accent-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-item {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  padding: 0.5rem 0;
}

.nav-item:hover, .nav-item.active {
  color: var(--text-primary);
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, var(--accent-cyan), var(--accent-purple));
  transition: var(--transition-fast);
}

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

.nav-cta-btn {
  background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-pink) 100%);
  color: white;
  padding: 0.75rem 1.75rem;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 20px rgba(138, 43, 226, 0.3);
  transition: var(--transition-smooth);
}

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

/* Mobile Toggle Hamburger */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  padding: 0.5rem;
  z-index: 110;
}

.mobile-menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--text-primary);
  transition: var(--transition-fast);
}

/* ==========================================
   Hero Section
   ========================================== */
/* ==========================================
   Hero Section
   ========================================== */
.hero-section {
  padding-top: 8rem;
  padding-bottom: 5rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  background: linear-gradient(to bottom, rgba(5, 6, 12, 0.78) 0%, rgba(5, 6, 12, 0.9) 70%, var(--bg-primary) 100%), 
              url('images/Hero-Banner.png') center/cover no-repeat;
  overflow: hidden;
}

.hero-slider-container {
  position: relative;
  width: 90%;
  max-width: 1000px;
  height: clamp(130px, 15vw, 160px);
  margin-top: 1rem;
  margin-bottom: 3rem;
  overflow: hidden;
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateX(100px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.hero-slide.exit {
  opacity: 0;
  transform: translateX(-100px);
}

.hero-slide span {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5.5vw, 4.5rem); /* Extra Large Font Size */
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  text-align: center;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.95), 0 0 30px rgba(0, 0, 0, 0.95);
  line-height: 1.15;
  display: block;
}

.hero-slide .divider {
  color: var(--accent-pink);
  margin: 0 0.8rem;
  font-weight: 400;
  opacity: 0.85;
  text-shadow: 0 0 10px var(--accent-pink-glow);
  display: inline;
}

.hero-slide .highlight-cyan {
  color: var(--accent-cyan);
  text-shadow: 0 0 25px var(--accent-cyan-glow);
  display: inline;
}

.hero-slide .highlight-purple {
  color: hsl(271, 100%, 75%); /* Lighter purple for readability */
  text-shadow: 0 0 25px var(--accent-purple-glow);
  display: inline;
}

.hero-slide .highlight-pink {
  color: var(--accent-pink);
  text-shadow: 0 0 25px var(--accent-pink-glow);
  display: inline;
}

/* Welcome Card style */
.hero-content-card {
  background: var(--glass-bg);
  border: 1px solid var(--border-color);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  padding: 3.5rem 3rem;
  border-radius: 24px;
  max-width: 800px;
  width: 90%;
  text-align: center;
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.6), 
              0 0 30px rgba(138, 43, 226, 0.1);
  position: relative;
  z-index: 10;
  transition: var(--transition-smooth);
}

.hero-content-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 30px 65px rgba(0, 0, 0, 0.7), 
              0 0 40px rgba(0, 242, 254, 0.15);
}

.hero-title-main {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff 40%, var(--accent-cyan) 80%, var(--accent-purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-intro-text {
  font-size: 1.15rem;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  max-width: 100%;
}

.hero-highlight-text {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
  max-width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1.5rem;
  margin-top: 1.5rem;
}

.hero-highlight-text strong {
  color: var(--text-primary);
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-purple) 100%);
  color: var(--bg-primary);
  padding: 1.1rem 2.2rem;
  border-radius: 50px;
  font-size: 1.05rem;
  font-weight: 800;
  display: inline-block;
  box-shadow: 0 4px 25px rgba(0, 242, 254, 0.35);
  transition: var(--transition-smooth);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(138, 43, 226, 0.5);
  color: #fff;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  padding: 1.1rem 2.2rem;
  border-radius: 50px;
  font-size: 1.05rem;
  font-weight: 700;
  display: inline-block;
  backdrop-filter: var(--glass-blur);
  transition: var(--transition-smooth);
}

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

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

/* ==========================================
   Middle Section (The Struggle vs Freedom)
   ========================================== */
.struggle-section {
  background: linear-gradient(to bottom, var(--bg-primary), var(--bg-secondary));
  position: relative;
}

.section-title {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  margin-bottom: 1.8rem;
  line-height: 1.25;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  max-width: 580px;
}

.max-width-text {
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.text-center {
  text-align: center;
}

.struggle-cards {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.struggle-vs-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2.2rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.struggle-vs-card.negative {
  border-left: 4px solid var(--text-dark);
}

.struggle-vs-card.positive {
  border-left: 4px solid var(--accent-cyan);
  box-shadow: 0 10px 30px rgba(0, 242, 254, 0.05);
}

.struggle-vs-card:hover {
  transform: translateY(-5px);
  background: rgba(13, 16, 35, 0.7);
}

.struggle-vs-card.positive:hover {
  border-color: var(--border-color-glow);
  box-shadow: 0 15px 40px rgba(0, 242, 254, 0.12);
}

.card-status-badge {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-dark);
  letter-spacing: 0.1em;
  margin-bottom: 0.8rem;
}

.glow-badge {
  color: var(--accent-cyan);
  text-shadow: 0 0 10px var(--accent-cyan-glow);
}

.struggle-vs-card h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}

.struggle-vs-card ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.struggle-vs-card.negative ul li {
  color: var(--text-muted);
  position: relative;
  padding-left: 1.5rem;
}

.struggle-vs-card.negative ul li::before {
  content: "✕";
  position: absolute;
  left: 0;
  color: var(--text-dark);
}

.struggle-vs-card.positive ul li {
  color: var(--text-primary);
  position: relative;
  padding-left: 1.5rem;
  font-weight: 500;
}

.struggle-vs-card.positive ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-cyan);
  font-weight: 800;
}

/* ==========================================
   About Section & Pillars
   ========================================== */
.about-section {
  position: relative;
  background-color: var(--bg-secondary);
}

.section-header {
  margin-bottom: 4.5rem;
}

.sub-header {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-purple);
  margin-bottom: 0.8rem;
  display: block;
}

.center {
  text-align: center;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.2rem;
}

.pillar-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 3rem 2.2rem;
  position: relative;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.pillar-card:hover {
  transform: translateY(-8px);
  background: rgba(13, 16, 35, 0.8);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
}

.pillar-card.active {
  background: linear-gradient(to bottom, rgba(138, 43, 226, 0.12), rgba(0, 242, 254, 0.05));
  border: 1px solid rgba(138, 43, 226, 0.25);
  box-shadow: 0 15px 40px rgba(138, 43, 226, 0.1);
}

.pillar-card.active:hover {
  border-color: rgba(138, 43, 226, 0.45);
  box-shadow: 0 25px 50px rgba(138, 43, 226, 0.2);
}

.pillar-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  transition: var(--transition-smooth);
}

.pillar-card:hover .pillar-icon-wrapper {
  background: var(--accent-purple);
  color: white;
  border-color: transparent;
  box-shadow: 0 0 20px var(--accent-purple-glow);
}

.pillar-card.active .pillar-icon-wrapper {
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
  color: white;
  border-color: transparent;
}

.pillar-icon {
  width: 28px;
  height: 28px;
  color: var(--text-primary);
  transition: var(--transition-smooth);
}

.pillar-card:hover .pillar-icon {
  color: white;
  transform: rotate(5deg) scale(1.1);
}

.pillar-num {
  position: absolute;
  top: 2rem;
  right: 2.2rem;
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(255, 255, 255, 0.02);
  transition: var(--transition-smooth);
}

.pillar-card:hover .pillar-num {
  color: rgba(138, 43, 226, 0.15);
  transform: scale(1.1);
}

.pillar-card h3 {
  font-size: 1.45rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.pillar-tagline {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-cyan);
  letter-spacing: 0.12em;
  margin-bottom: 1.5rem;
  display: block;
}

.pillar-card p {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

/* ==========================================
   Team Section
   ========================================== */
.team-section {
  background-color: var(--bg-primary);
  position: relative;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  overflow: hidden;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.team-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-color-glow);
  box-shadow: 0 20px 45px rgba(0, 242, 254, 0.08);
  background: rgba(13, 16, 35, 0.6);
}

.team-image-container {
  width: 100%;
  height: 380px;
  overflow: hidden;
  position: relative;
}

.team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: var(--transition-smooth);
  filter: grayscale(30%) brightness(95%);
}

.team-card:hover .team-img {
  filter: grayscale(0%) brightness(105%);
  transform: scale(1.05);
}

.team-glow-outline {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: inset 0 0 0px transparent;
  transition: var(--transition-smooth);
  pointer-events: none;
}

.team-card:hover .team-glow-outline {
  box-shadow: inset 0 0 30px rgba(0, 242, 254, 0.3);
}

.team-info {
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.team-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.team-role {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-purple);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.2rem;
  display: block;
}

.team-bio {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ==========================================
   CTA (Join) Section
   ========================================== */
.cta-section {
  background: linear-gradient(to bottom, var(--bg-primary), var(--bg-secondary));
}

.cta-card {
  background: rgba(13, 16, 35, 0.45);
  border: 1px solid var(--border-color);
  border-radius: 30px;
  padding: 4.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
}

.cta-glow-bg {
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(138, 43, 226, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1.8rem;
}

.cta-text {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2.2rem;
  line-height: 1.7;
}

.cta-quote {
  border-left: 3px solid var(--accent-pink);
  padding-left: 1.5rem;
  margin-top: 2rem;
}

.cta-quote blockquote {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  font-style: italic;
  color: var(--text-primary);
}

.cta-form-container {
  background: rgba(8, 9, 20, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  position: relative;
}

.form-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
}

/* Modern Floating Input Style */
.form-group {
  position: relative;
  margin-bottom: 2rem;
}

.form-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  padding: 1.1rem 1.2rem;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: white;
  outline: none;
  transition: var(--transition-smooth);
}

.form-input:focus {
  border-color: var(--accent-cyan);
  background: rgba(255, 255, 255, 0.04);
}

/* Label Animation */
.form-label {
  position: absolute;
  left: 1.2rem;
  top: 1.1rem;
  color: var(--text-dark);
  font-size: 0.98rem;
  pointer-events: none;
  transition: var(--transition-smooth);
}

/* Float logic for focus or filled inputs */
.form-input:focus ~ .form-label,
.form-input:not(:placeholder-shown) ~ .form-label {
  top: -0.6rem;
  left: 0.8rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-cyan);
  background: var(--bg-secondary);
  padding: 0 0.4rem;
  border-radius: 4px;
}

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

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='currentColor' class='w-6 h-6' style='color: %23888;'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.2rem center;
  background-size: 1.2rem;
  cursor: pointer;
}

/* Form input focus neon highlight line */
.input-focus-line {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, var(--accent-cyan), var(--accent-purple));
  transition: var(--transition-smooth);
}

.form-input:focus ~ .input-focus-line {
  left: 0;
  width: 100%;
}

.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-purple) 100%);
  color: var(--bg-primary);
  border: none;
  padding: 1.1rem;
  border-radius: 12px;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  box-shadow: 0 4px 20px rgba(0, 242, 254, 0.25);
  transition: var(--transition-smooth);
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(138, 43, 226, 0.45);
  color: #fff;
}

.btn-icon {
  width: 1.2rem;
  height: 1.2rem;
  transition: var(--transition-fast);
}

.btn-submit:hover .btn-icon {
  transform: translateX(4px);
}

/* Success Form State */
.signup-form {
  transition: var(--transition-smooth);
}

.form-success-message {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 0;
  animation: fadeIn 0.6s ease forwards;
}

.success-icon-wrapper {
  width: 80px;
  height: 80px;
  background: rgba(0, 242, 254, 0.1);
  border: 1px solid var(--accent-cyan);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  box-shadow: 0 0 30px rgba(0, 242, 254, 0.25);
}

.success-icon {
  width: 45px;
  height: 45px;
  color: var(--accent-cyan);
}

.form-success-message h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.form-success-message p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

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

/* ==========================================
   Footer
   ========================================== */
.main-footer {
  background-color: hsl(235, 30%, 5%);
  border-top: 1px solid var(--border-color);
  padding: 5rem 0 2.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 5rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--border-color);
}

.footer-brand {
  max-width: 400px;
}

.footer-logo {
  height: 35px;
  width: auto;
}

.footer-tagline {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-top: 1.2rem;
  line-height: 1.7;
}

.footer-links-group h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

.footer-links-group ul li {
  font-size: 0.95rem;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

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

.footer-bottom {
  padding-top: 2rem;
  text-align: center;
}

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

/* ==========================================
   Scroll Reveal System
   ========================================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

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

/* ==========================================
   Responsive Design & Breakpoints
   ========================================== */

@media (max-width: 1024px) {
  .grid-2-col, .hero-grid, .cta-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  
  .hero-media-wrapper {
    order: -1;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .hero-intro-text, .hero-highlight-text {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-highlight-text {
    border-left: none;
    border-top: 2px solid var(--accent-cyan);
    padding-left: 0;
    padding-top: 1.2rem;
  }

  .pillars-grid, .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .cta-card {
    padding: 3rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  
  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .section-container {
    padding: 4rem 1.5rem;
  }

  .hero-slider-container {
    height: 130px;
    margin-top: 0.5rem;
    margin-bottom: 2rem;
  }

  .hero-slide span {
    font-size: clamp(1.4rem, 5vw, 2rem);
    line-height: 1.35;
  }

  /* Hamburger Menu implementation */
  .mobile-menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(11, 13, 28, 0.95);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    padding: 3rem;
    border-left: 1px solid var(--border-color);
    transition: var(--transition-smooth);
    z-index: 105;
  }

  .nav-menu.open {
    right: 0;
  }

  /* Hamburger Menu animation state */
  .mobile-menu-toggle.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .mobile-menu-toggle.open span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-toggle.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .pillars-grid, .team-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .cta-form-container {
    padding: 2rem 1.5rem;
  }
  
  .team-image-container {
    height: 320px;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .btn-primary, .btn-secondary {
    width: 100%;
    text-align: center;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-brand {
    grid-column: span 1;
  }
  
  .cta-card {
    padding: 2rem 1rem;
  }
}

/* ==========================================
   Modal Dialog styling
   ========================================== */
.bootcamp-dialog {
  border: 1px solid var(--border-color);
  border-radius: 24px;
  background: var(--bg-secondary);
  color: var(--text-primary);
  max-width: 520px;
  width: 90%;
  padding: 0;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8), 
              0 0 45px rgba(138, 43, 226, 0.2);
  margin: auto;
  overflow: hidden;
  z-index: 1000;
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.bootcamp-dialog[open] {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.bootcamp-dialog::backdrop {
  background: rgba(5, 6, 12, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: backdrop-filter 0.3s ease;
}

.dialog-content {
  position: relative;
  padding: 3rem;
}

.dialog-close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  font-size: 1.8rem;
  width: 44px;
  height: 44px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  justify-content: center;
  align-items: center;
}

.dialog-close-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: white;
  transform: rotate(90deg);
}

.dialog-header {
  margin-bottom: 2rem;
}

.dialog-badge {
  background: rgba(255, 0, 127, 0.15);
  border: 1px solid rgba(255, 0, 127, 0.3);
  padding: 0.4rem 1rem;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent-pink);
  display: inline-block;
  margin-bottom: 0.8rem;
  box-shadow: 0 0 15px rgba(255, 0, 127, 0.15);
}

.dialog-header h2 {
  font-size: 1.95rem;
  font-weight: 900;
  line-height: 1.25;
  background: linear-gradient(135deg, #ffffff, var(--accent-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.dialog-body {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  margin-bottom: 2.5rem;
}

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

.info-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition-fast);
}

.info-item:hover .info-icon-wrapper {
  background: rgba(0, 242, 254, 0.1);
  border-color: var(--accent-cyan);
}

.dialog-info-icon {
  width: 22px;
  height: 22px;
  color: var(--accent-cyan);
}

.info-details {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.info-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-dark);
}

.info-value {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
}

.dialog-footer {
  width: 100%;
}

.btn-register {
  width: 100%;
  background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-purple) 100%);
  color: var(--bg-primary);
  border: none;
  padding: 1.2rem;
  border-radius: 12px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  box-shadow: 0 4px 20px rgba(0, 242, 254, 0.3);
  transition: var(--transition-smooth);
}

.btn-register:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(138, 43, 226, 0.5);
  color: #fff;
}

.register-icon {
  width: 1.3rem;
  height: 1.3rem;
  transition: var(--transition-fast);
}

.btn-register:hover .register-icon {
  transform: translate(3px, -3px);
}

