/* ============================================
   PLAYCORE CLUB - MODERN GAMING CSS
   Design System: Creative with Warped Grids
   Color Scheme: Triadic
   Animation: Parallax
   ============================================ */

/* ============================================
   CSS VARIABLES - TRIADIC COLOR SCHEME
   ============================================ */
:root {
  /* Primary Triadic Colors */
  --color-primary: #FF3366;
  --color-secondary: #33FF66;
  --color-tertiary: #3366FF;
  
  /* Color Variations */
  --color-primary-dark: #CC0033;
  --color-primary-light: #FF6699;
  --color-secondary-dark: #00CC33;
  --color-secondary-light: #66FF99;
  --color-tertiary-dark: #0033CC;
  --color-tertiary-light: #6699FF;
  
  /* Neutral Colors */
  --color-dark: #0A0E27;
  --color-dark-secondary: #1A1F3A;
  --color-dark-tertiary: #2A2F4A;
  --color-light: #F5F7FA;
  --color-white: #FFFFFF;
  --color-gray: #8B92A8;
  --color-gray-light: #C4C9D8;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--color-primary) 0%, var(--color-tertiary) 100%);
  --gradient-secondary: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-tertiary) 100%);
  --gradient-dark: linear-gradient(135deg, var(--color-dark) 0%, var(--color-dark-secondary) 100%);
  --gradient-overlay: linear-gradient(135deg, rgba(255, 51, 102, 0.9) 0%, rgba(51, 102, 255, 0.9) 100%);
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(10, 14, 39, 0.1);
  --shadow-md: 0 4px 16px rgba(10, 14, 39, 0.15);
  --shadow-lg: 0 8px 32px rgba(10, 14, 39, 0.2);
  --shadow-xl: 0 16px 48px rgba(10, 14, 39, 0.25);
  --shadow-glow: 0 0 20px rgba(255, 51, 102, 0.4);
  
  /* Typography */
  --font-heading: 'Archivo Black', sans-serif;
  --font-body: 'Roboto', sans-serif;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  --spacing-3xl: 6rem;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Z-index */
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal-backdrop: 1040;
  --z-modal: 1050;
  --z-popover: 1060;
  --z-tooltip: 1070;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-dark);
  background-color: var(--color-light);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul {
  list-style: none;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
  color: var(--color-dark);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
}

h4 {
  font-size: clamp(1.25rem, 2.5vw, 2rem);
}

h5 {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
}

h6 {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
}

p {
  margin-bottom: var(--spacing-md);
  color: var(--color-gray);
  font-size: 1.125rem;
  line-height: 1.8;
}

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================
   GLOBAL BUTTON STYLES
   ============================================ */
.btn,
.button,
button,
input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before,
.button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  z-index: -1;
  transition: transform var(--transition-base);
  transform: scaleX(0);
  transform-origin: right;
}

.btn:hover::before,
.button:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.btn-primary,
.button.is-primary {
  background: var(--gradient-primary);
  color: var(--color-white);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover,
.button.is-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.btn-secondary {
  background: var(--gradient-secondary);
  color: var(--color-dark);
  box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-light,
.button.is-light {
  background: var(--color-white);
  color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.btn-light:hover,
.button.is-light:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  background: var(--color-light);
}

.btn-hero,
.btn-hero-secondary {
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
  margin: 0.5rem;
}

.btn-large,
.button.is-large {
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
}

.btn-small,
.button.is-small {
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-fixed);
  transition: all var(--transition-base);
}

.navbar {
  background: rgba(10, 14, 39, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
  padding: 0.5rem 0;
}

.navbar.is-scrolled {
  background: rgba(10, 14, 39, 0.98);
  box-shadow: var(--shadow-lg);
}

.navbar-brand {
  display: flex;
  align-items: center;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  padding: 0.75rem 1rem;
}

.logo-text {
  display: inline-block;
  animation: logoGlow 3s ease-in-out infinite;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@keyframes logoGlow {
  0%, 100% {
    filter: drop-shadow(0 0 5px rgba(255, 51, 102, 0.5));
  }
  50% {
    filter: drop-shadow(0 0 15px rgba(255, 51, 102, 0.8));
  }
}

.navbar-item {
  color: var(--color-white);
  padding: 0.75rem 1rem;
  transition: all var(--transition-base);
  position: relative;
}

.navbar-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: all var(--transition-base);
  transform: translateX(-50%);
}

.navbar-item:hover {
  color: var(--color-primary);
}

.navbar-item:hover::after {
  width: 80%;
}

.navbar-burger {
  color: var(--color-white);
  height: 3.25rem;
  width: 3.25rem;
}

.navbar-burger span {
  background-color: var(--color-white);
  height: 2px;
  width: 20px;
}

.navbar-burger:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* ============================================
   HERO SECTION - WITH PARALLAX
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 51, 102, 0.85) 0%, rgba(51, 102, 255, 0.85) 100%);
  z-index: 1;
}

.hero-body {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: var(--spacing-3xl) var(--spacing-md);
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.hero-title {
  color: var(--color-white);
  font-size: clamp(3rem, 6vw, 5rem);
  margin-bottom: var(--spacing-lg);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

@keyframes heroTitleFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.hero-subtitle {
  color: var(--color-white);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  margin-bottom: var(--spacing-lg);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-description {
  color: var(--color-white);
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.8;
  margin-bottom: var(--spacing-xl);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-md);
  justify-content: center;
  margin-top: var(--spacing-xl);
}

.scroll-indicator {
  position: absolute;
  bottom: var(--spacing-xl);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-arrow {
  display: block;
  width: 30px;
  height: 50px;
  border: 2px solid var(--color-white);
  border-radius: var(--radius-xl);
  position: relative;
  animation: scrollBounce 2s infinite;
}

.scroll-arrow::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 50%;
  width: 6px;
  height: 6px;
  background: var(--color-white);
  border-radius: 50%;
  transform: translateX(-50%);
  animation: scrollDot 2s infinite;
}

@keyframes scrollBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}

@keyframes scrollDot {
  0% {
    opacity: 1;
    top: 10px;
  }
  100% {
    opacity: 0;
    top: 30px;
  }
}

/* ============================================
   PARALLAX SECTIONS
   ============================================ */
.parallax-section {
  position: relative;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.section-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 14, 39, 0.85);
  z-index: 1;
}

.parallax-section .container {
  position: relative;
  z-index: 2;
}

/* ============================================
   SECTION BASE STYLES
   ============================================ */
.section {
  padding: var(--spacing-3xl) var(--spacing-md);
  position: relative;
}

.section-header {
  margin-bottom: var(--spacing-2xl);
}

.section-title {
  position: relative;
  display: inline-block;
  padding-bottom: var(--spacing-md);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
}

.section-subtitle {
  color: var(--color-gray);
  font-size: 1.25rem;
  margin-top: var(--spacing-md);
}

.parallax-section .section-title,
.parallax-section .section-subtitle {
  color: var(--color-white);
}

/* ============================================
   STATISTICS SECTION
   ============================================ */
.statistics-section {
  background: var(--gradient-dark);
}

.stats-grid {
  margin-top: var(--spacing-2xl);
}

.stat-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: var(--spacing-xl);
  text-align: center;
  transition: all var(--transition-base);
  transform: translateY(0);
}

.stat-card:hover {
  transform: translateY(-10px) rotate(2deg);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.stat-icon {
  font-size: 3rem;
  margin-bottom: var(--spacing-md);
  filter: drop-shadow(0 0 10px rgba(255, 51, 102, 0.5));
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--spacing-sm);
}

.stat-label {
  color: var(--color-white);
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: var(--spacing-md);
}

.progress-bar {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-top: var(--spacing-md);
}

.progress-fill {
  height: 100%;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
  transition: width 1s ease;
}

/* ============================================
   PROCESS SECTION - WARPED GRID
   ============================================ */
.process-section {
  background: var(--color-light);
}

.process-timeline {
  margin-top: var(--spacing-2xl);
}

.process-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transform: rotate(0deg);
}

.process-card:nth-child(odd) {
  transform: rotate(-2deg);
}

.process-card:nth-child(even) {
  transform: rotate(2deg);
}

.process-card:hover {
  transform: translateY(-15px) scale(1.05) rotate(0deg);
  box-shadow: var(--shadow-xl);
}

.process-number {
  position: absolute;
  top: -20px;
  right: -20px;
  font-family: var(--font-heading);
  font-size: 6rem;
  font-weight: 900;
  color: rgba(255, 51, 102, 0.1);
  z-index: 0;
}

.process-icon-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 200px;
  margin-bottom: var(--spacing-lg);
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.process-icon-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.process-card:hover .process-icon-wrapper img {
  transform: scale(1.1);
}

.process-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-dark);
  margin-bottom: var(--spacing-md);
  position: relative;
  z-index: 1;
}

.process-description {
  color: var(--color-gray);
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

/* ============================================
   INSTRUCTORS SECTION
   ============================================ */
.instructors-section {
  background: var(--gradient-dark);
}

.instructor-grid {
  margin-top: var(--spacing-2xl);
}

.instructor-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition-base);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.instructor-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
  border-color: var(--color-primary);
}

.instructor-card .card-image {
  position: relative;
  overflow: hidden;
  height: 400px;
}

.instructor-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.instructor-card:hover .card-image img {
  transform: scale(1.1);
}

.instructor-card .card-content {
  padding: var(--spacing-xl);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.instructor-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-white);
  margin-bottom: var(--spacing-sm);
}

.instructor-role {
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: var(--spacing-md);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.instructor-bio {
  color: var(--color-gray-light);
  line-height: 1.8;
  margin-bottom: var(--spacing-md);
}

.instructor-stats {
  display: flex;
  gap: var(--spacing-sm);
  flex-wrap: wrap;
  justify-content: center;
}

.stat-badge {
  background: var(--gradient-primary);
  color: var(--color-white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 700;
}

/* ============================================
   ACCOLADES SECTION
   ============================================ */
.accolades-section {
  background: var(--color-white);
}

.accolades-carousel-wrapper {
  position: relative;
  margin-top: var(--spacing-2xl);
}

.accolades-carousel {
  display: flex;
  gap: var(--spacing-lg);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: var(--spacing-md);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.accolades-carousel::-webkit-scrollbar {
  display: none;
}

.accolade-slide {
  flex: 0 0 calc(33.333% - var(--spacing-lg));
  scroll-snap-align: start;
}

.accolade-card {
  background: var(--gradient-dark);
  border-radius: var(--radius-xl);
  padding: var(--spacing-xl);
  text-align: center;
  transition: all var(--transition-base);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: rotate(-1deg);
}

.accolade-card:hover {
  transform: translateY(-10px) rotate(0deg);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.accolade-icon {
  font-size: 4rem;
  margin-bottom: var(--spacing-lg);
  filter: drop-shadow(0 0 15px rgba(255, 51, 102, 0.6));
}

.accolade-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-white);
  margin-bottom: var(--spacing-sm);
}

.accolade-organization {
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: var(--spacing-md);
}

.accolade-description {
  color: var(--color-gray-light);
  line-height: 1.8;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
  margin-top: var(--spacing-xl);
}

.carousel-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: var(--color-white);
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all var(--transition-base);
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

/* ============================================
   RESOURCES SECTION
   ============================================ */
.resources-section {
  background: var(--color-light);
}

.resources-grid {
  margin-top: var(--spacing-2xl);
}

.resource-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.resource-card:hover {
  transform: translateY(-10px) rotate(1deg);
  box-shadow: var(--shadow-xl);
}

.resource-card .card-content {
  padding: var(--spacing-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex-grow: 1;
}

.resource-icon {
  font-size: 3rem;
  margin-bottom: var(--spacing-md);
  filter: drop-shadow(0 0 10px rgba(255, 51, 102, 0.4));
}

.resource-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: var(--spacing-md);
}

.resource-title a {
  color: var(--color-dark);
  transition: all var(--transition-base);
}

.resource-title a:hover {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.resource-description {
  color: var(--color-gray);
  line-height: 1.8;
  margin-bottom: var(--spacing-lg);
  flex-grow: 1;
}

.resource-link {
  margin-top: auto;
}

/* ============================================
   CAREERS SECTION
   ============================================ */
.careers-section {
  background: var(--gradient-dark);
}

.careers-grid {
  margin-top: var(--spacing-2xl);
}

.career-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: var(--spacing-xl);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.career-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
  border-color: var(--color-primary);
}

.career-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--spacing-lg);
  flex-wrap: wrap;
  gap: var(--spacing-sm);
}

.career-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--color-white);
  margin-bottom: 0;
}

.career-badge {
  background: var(--gradient-primary);
  color: var(--color-white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
}

.career-description {
  color: var(--color-gray-light);
  line-height: 1.8;
  margin-bottom: var(--spacing-lg);
}

.career-requirements {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

.career-requirements h4 {
  color: var(--color-white);
  font-size: 1.125rem;
  margin-bottom: var(--spacing-md);
}

.career-requirements ul {
  list-style: none;
  padding-left: 0;
}

.career-requirements li {
  color: var(--color-gray-light);
  padding: var(--spacing-sm) 0;
  padding-left: var(--spacing-lg);
  position: relative;
}

.career-requirements li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-secondary);
  font-weight: 700;
}

.career-apply {
  margin-top: auto;
  width: 100%;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
  background: var(--color-white);
}

.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
}

.contact-info-card {
  background: var(--gradient-dark);
  border-radius: var(--radius-xl);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-lg);
}

.contact-info-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-white);
  margin-bottom: var(--spacing-xl);
}

.contact-item {
  display: flex;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
  align-items: flex-start;
}

.contact-icon {
  font-size: 2rem;
  min-width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.contact-details h4 {
  color: var(--color-white);
  font-size: 1.125rem;
  margin-bottom: var(--spacing-sm);
}

.contact-details p {
  color: var(--color-gray-light);
  margin-bottom: 0;
}

.contact-details a {
  color: var(--color-primary);
  transition: all var(--transition-base);
}

.contact-details a:hover {
  color: var(--color-primary-light);
  text-decoration: underline;
}

.contact-image-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.contact-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--transition-slow);
}

.contact-image-wrapper:hover img {
  transform: scale(1.05);
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-form-wrapper {
  background: var(--color-light);
  border-radius: var(--radius-xl);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-lg);
}

.contact-form .field {
  margin-bottom: var(--spacing-lg);
}

.contact-form .label {
  color: var(--color-dark);
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
  display: block;
}

.contact-form .input,
.contact-form .textarea,
.contact-form .select select {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--color-gray-light);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all var(--transition-base);
  background: var(--color-white);
}

.contact-form .input:focus,
.contact-form .textarea:focus,
.contact-form .select select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(255, 51, 102, 0.1);
}

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

.contact-form .checkbox {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  color: var(--color-gray);
}

.contact-form .checkbox input {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.submit-btn {
  width: 100%;
  position: relative;
}

.btn-text {
  display: inline-block;
  transition: opacity var(--transition-base);
}

.submit-btn.is-loading .btn-text {
  opacity: 0;
}

.btn-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: var(--color-white);
  border-radius: 50%;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.submit-btn.is-loading .btn-loader {
  opacity: 1;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--gradient-dark);
  color: var(--color-white);
  padding: var(--spacing-3xl) 0 var(--spacing-xl);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.footer-content {
  position: relative;
  z-index: 1;
}

.footer-section {
  margin-bottom: var(--spacing-xl);
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--spacing-md);
}

.footer-description {
  color: var(--color-gray-light);
  line-height: 1.8;
  margin-bottom: var(--spacing-lg);
}

.footer-subtitle {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--color-white);
  margin-bottom: var(--spacing-md);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: var(--spacing-sm);
}

.footer-links a {
  color: var(--color-gray-light);
  transition: all var(--transition-base);
  display: inline-block;
  position: relative;
  padding-left: var(--spacing-md);
}

.footer-links a::before {
  content: '→';
  position: absolute;
  left: 0;
  opacity: 0;
  transform: translateX(-10px);
  transition: all var(--transition-base);
}

.footer-links a:hover {
  color: var(--color-primary);
  padding-left: var(--spacing-lg);
}

.footer-links a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer-contact {
  list-style: none;
  padding: 0;
}

.footer-contact li {
  color: var(--color-gray-light);
  margin-bottom: var(--spacing-md);
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.footer-contact a {
  color: var(--color-primary);
  transition: all var(--transition-base);
}

.footer-contact a:hover {
  color: var(--color-primary-light);
}

/* Social Links in Footer */
.footer-social {
  margin-top: var(--spacing-lg);
}

.social-links {
  display: flex;
  gap: var(--spacing-md);
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  color: var(--color-white);
  font-weight: 600;
  transition: all var(--transition-base);
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
}

.social-link:hover {
  background: var(--gradient-primary);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.footer-bottom {
  margin-top: var(--spacing-2xl);
  padding-top: var(--spacing-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: var(--color-gray-light);
}

/* ============================================
   ABOUT & ADDITIONAL PAGES
   ============================================ */
.page-header {
  padding-top: 100px;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-dark);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('./image/page-header-pattern.jpg') center/cover no-repeat;
  opacity: 0.1;
  z-index: 0;
}

.page-header-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: var(--spacing-xl);
}

.page-title {
  color: var(--color-white);
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: var(--spacing-md);
}

.page-subtitle {
  color: var(--color-gray-light);
  font-size: 1.25rem;
  line-height: 1.8;
}

.page-content {
  padding: var(--spacing-3xl) var(--spacing-md);
  padding-top: 100px;
}

.content-section {
  max-width: 900px;
  margin: 0 auto var(--spacing-2xl);
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-md);
}

.content-section h2 {
  color: var(--color-dark);
  margin-bottom: var(--spacing-lg);
  padding-bottom: var(--spacing-md);
  border-bottom: 2px solid var(--color-primary);
}

.content-section h3 {
  color: var(--color-dark);
  margin-top: var(--spacing-xl);
  margin-bottom: var(--spacing-md);
}

.content-section p {
  color: var(--color-gray);
  margin-bottom: var(--spacing-md);
  line-height: 1.8;
}

.content-section ul,
.content-section ol {
  color: var(--color-gray);
  margin-bottom: var(--spacing-lg);
  padding-left: var(--spacing-xl);
}

.content-section li {
  margin-bottom: var(--spacing-sm);
  line-height: 1.8;
}

/* ============================================
   SUCCESS PAGE
   ============================================ */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-dark);
  padding: var(--spacing-xl);
}

.success-content {
  text-align: center;
  max-width: 600px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: var(--spacing-3xl) var(--spacing-xl);
}

.success-icon {
  font-size: 5rem;
  margin-bottom: var(--spacing-xl);
  animation: successPulse 2s ease-in-out infinite;
}

@keyframes successPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.success-title {
  color: var(--color-white);
  font-size: 2.5rem;
  margin-bottom: var(--spacing-md);
}

.success-message {
  color: var(--color-gray-light);
  font-size: 1.25rem;
  margin-bottom: var(--spacing-xl);
}

/* ============================================
   ANIMATION UTILITIES
   ============================================ */
.animate-on-scroll {
  opacity: 1;
  transform: none;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
  .accolade-slide {
    flex: 0 0 calc(50% - var(--spacing-lg));
  }
  
  .process-card:nth-child(odd),
  .process-card:nth-child(even) {
    transform: rotate(0deg);
  }
}

@media (max-width: 768px) {
  .hero,
  .parallax-section {
    background-attachment: scroll;
  }
}

@media (max-width: 768px) {
  :root {
    --spacing-3xl: 4rem;
    --spacing-2xl: 3rem;
  }
  
  .section {
    padding: var(--spacing-2xl) var(--spacing-md);
  }
  
  .hero {
    min-height: 100vh;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .btn-hero,
  .btn-hero-secondary {
    width: 100%;
  }
  
  .navbar-menu {
    background: rgba(10, 14, 39, 0.98);
    backdrop-filter: blur(10px);
  }
  
  .accolade-slide {
    flex: 0 0 calc(100% - var(--spacing-lg));
  }
  
  .columns.is-variable {
    --columnGap: var(--spacing-md);
  }
  
  .scroll-indicator {
    display: none;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .process-icon-wrapper {
    height: 180px;
  }
  
  .career-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .page-content {
    padding-top: 80px;
  }
  
  .content-section {
    padding: var(--spacing-lg);
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
  }
  
  .section-title::after {
    width: 60px;
  }
  
  .stat-icon {
    font-size: 2rem;
  }
  
  .process-number {
    font-size: 4rem;
  }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center {
  text-align: center;
}

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

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

.is-fullwidth {
  width: 100%;
}

.has-text-white {
  color: var(--color-white) !important;
}

.has-text-primary {
  color: var(--color-primary) !important;
}

.mb-0 { margin-bottom: 0 !important; }
.mb-sm { margin-bottom: var(--spacing-sm) !important; }
.mb-md { margin-bottom: var(--spacing-md) !important; }
.mb-lg { margin-bottom: var(--spacing-lg) !important; }
.mb-xl { margin-bottom: var(--spacing-xl) !important; }

.mt-0 { margin-top: 0 !important; }
.mt-sm { margin-top: var(--spacing-sm) !important; }
.mt-md { margin-top: var(--spacing-md) !important; }
.mt-lg { margin-top: var(--spacing-lg) !important; }
.mt-xl { margin-top: var(--spacing-xl) !important; }

/* ============================================
   ACCESSIBILITY
   ============================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
  .header,
  .footer,
  .navbar,
  .hero-buttons,
  .carousel-controls {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
  
  .section {
    page-break-inside: avoid;
  }
}