/* ============================================================
   ByteLipi - The Makerspace | Premium Stylesheet
   ============================================================ */

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

/* ---------- CSS Custom Properties ---------- */
:root {
  --pink: #ff5d8f;
  --pink-light: #ff85ab;
  --pink-dark: #e84477;
  --orange: #ffb547;
  --orange-light: #ffc96e;
  --teal: #35d0ba;
  --teal-light: #5eddcc;
  --teal-dark: #28b8a4;
  --purple: #5b5f97;
  --purple-light: #7a7db5;
  --purple-dark: #484b7a;
  --white: #ffffff;
  --dark: #1a1a2e;
  --dark-light: #2d2f4e;
  --light-gray: #f8f9fa;
  --gray: #6c757d;
  --gray-light: #dee2e6;

  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  --shadow-sm: 0 2px 8px rgba(27, 27, 46, 0.06);
  --shadow-md: 0 4px 20px rgba(27, 27, 46, 0.08);
  --shadow-lg: 0 8px 40px rgba(27, 27, 46, 0.12);
  --shadow-xl: 0 16px 56px rgba(27, 27, 46, 0.16);
  --shadow-pink: 0 8px 32px rgba(255, 93, 143, 0.3);
  --shadow-teal: 0 8px 32px rgba(53, 208, 186, 0.3);
  --shadow-purple: 0 8px 32px rgba(91, 95, 151, 0.3);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 50px;
  --radius-circle: 50%;

  --transition-fast: 0.2s ease;
  --transition: 0.3s ease;
  --transition-slow: 0.5s ease;
  --transition-bounce: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--dark);
  background-color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

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

ul, ol {
  list-style: none;
}

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

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: var(--font-body);
  background: transparent;
}

input, select, textarea {
  font-family: var(--font-body);
  outline: none;
  border: none;
}

section {
  padding: 6rem 0;
  position: relative;
}

/* ---------- Selection ---------- */
::selection {
  background-color: var(--pink);
  color: var(--white);
}

::-moz-selection {
  background-color: var(--pink);
  color: var(--white);
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--purple-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--pink);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--pink-light);
}

/* Firefox scrollbar */
html {
  scrollbar-width: thin;
  scrollbar-color: var(--pink) var(--purple-dark);
}

/* ---------- Container ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

/* ============================================================
   KEYFRAME ANIMATIONS
   ============================================================ */

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-15px) rotate(2deg);
  }
  50% {
    transform: translateY(-8px) rotate(-1deg);
  }
  75% {
    transform: translateY(-20px) rotate(1deg);
  }
}

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

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

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

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0) translateX(-50%);
  }
  40% {
    transform: translateY(-12px) translateX(-50%);
  }
  60% {
    transform: translateY(-6px) translateX(-50%);
  }
}

@keyframes floatSlow {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-25px) rotate(5deg);
  }
}

@keyframes ripple {
  0% {
    transform: scale(0);
    opacity: 0.5;
  }
  100% {
    transform: scale(4);
    opacity: 0;
  }
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  border: 2px solid transparent;
  text-align: center;
  line-height: 1.4;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-circle);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  color: var(--white);
  border-color: var(--pink);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: var(--shadow-pink);
  background: linear-gradient(135deg, var(--pink-light), var(--pink));
}

.btn-primary:active {
  transform: translateY(-1px) scale(1.01);
}

.btn-secondary {
  background: transparent;
  color: var(--purple);
  border-color: var(--purple);
}

.btn-secondary:hover {
  background: var(--purple);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-purple);
}

.btn-teal {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: var(--white);
  border-color: var(--teal);
}

.btn-teal:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: var(--shadow-teal);
  background: linear-gradient(135deg, var(--teal-light), var(--teal));
}

/* ============================================================
   NAVIGATION
   ============================================================ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all var(--transition);
  padding: 0.75rem 0;
}

.navbar.scrolled {
  box-shadow: 0 2px 30px rgba(27, 27, 46, 0.1);
  padding: 0.5rem 0;
  background: rgba(255, 255, 255, 0.98);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

..nav-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  z-index: 1001;
}

.nav-logo img {
  height: 55px;
  width: auto;
  transition: transform var(--transition);
}

.nav-logo:hover img {
  transform: scale(1.05);
}

.nav-logo span {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: var(--purple);
  background: linear-gradient(135deg, var(--purple), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  line-height: 1.1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--purple);
  position: relative;
  padding: 0.25rem 0;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2.5px;
  background: linear-gradient(90deg, var(--pink), var(--orange));
  border-radius: 2px;
  transition: width var(--transition);
}

.nav-links a:hover {
  color: var(--pink);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--pink);
}

.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  color: var(--white) !important;
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius-pill);
  font-weight: 600 !important;
  transition: all var(--transition) !important;
  border: 2px solid var(--pink);
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-pink);
  background: linear-gradient(135deg, var(--pink-light), var(--pink)) !important;
  color: var(--white) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--purple);
  border-radius: 3px;
  transition: all var(--transition);
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* ============================================================
   HERO SECTION
   ============================================================ */

#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  padding-top: 5rem;
  background: linear-gradient(135deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(248, 249, 250, 1) 30%,
    rgba(255, 93, 143, 0.03) 50%,
    rgba(53, 208, 186, 0.04) 70%,
    rgba(255, 181, 71, 0.03) 100%
  );
  background-size: 300% 300%;
  animation: gradientShift 15s ease infinite;
}

#hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(255, 93, 143, 0.06) 0%, transparent 70%);
  border-radius: var(--radius-circle);
  pointer-events: none;
}

#hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(53, 208, 186, 0.06) 0%, transparent 70%);
  border-radius: var(--radius-circle);
  pointer-events: none;
}

#hero > .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, rgba(53, 208, 186, 0.12), rgba(53, 208, 186, 0.06));
  color: var(--teal-dark);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  font-family: var(--font-heading);
  margin-bottom: 1.5rem;
  border: 1px solid rgba(53, 208, 186, 0.2);
  animation: slideIn 0.8s ease forwards;
  background-size: 200% auto;
}

.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--teal);
  border-radius: var(--radius-circle);
  animation: pulse 2s ease infinite;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 1.5rem;
  color: var(--dark);
  letter-spacing: -0.02em;
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--pink), var(--orange), var(--pink));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease infinite;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 520px;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-light);
}

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

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--purple);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--gray);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  width: 100%;
  max-width: 550px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  position: relative;
  z-index: 2;
  transition: transform var(--transition-slow);
}

.hero-image:hover img {
  transform: scale(1.02);
}

/* Floating Shapes */
.floating-shape {
  position: absolute;
  border-radius: var(--radius-circle);
  z-index: 1;
  pointer-events: none;
}

.shape-1 {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(255, 93, 143, 0.2), rgba(255, 93, 143, 0.05));
  top: 5%;
  right: 10%;
  animation: float 6s ease-in-out infinite;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.shape-2 {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(53, 208, 186, 0.25), rgba(53, 208, 186, 0.05));
  bottom: 15%;
  right: 5%;
  animation: float 8s ease-in-out infinite 1s;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
}

.shape-3 {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(255, 181, 71, 0.25), rgba(255, 181, 71, 0.05));
  top: 20%;
  left: -5%;
  animation: float 7s ease-in-out infinite 0.5s;
  border-radius: 50% 50% 30% 70% / 40% 60% 40% 60%;
}

.shape-4 {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, rgba(91, 95, 151, 0.2), rgba(91, 95, 151, 0.05));
  bottom: 25%;
  left: 10%;
  animation: float 9s ease-in-out infinite 2s;
  border-radius: 40% 60% 60% 40% / 50% 40% 60% 50%;
}

/* ============================================================
   SECTION HEADER (Shared)
   ============================================================ */

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.4rem 1.25rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1rem;
  background: linear-gradient(135deg, rgba(255, 93, 143, 0.1), rgba(255, 181, 71, 0.1));
  color: var(--pink);
  border: 1px solid rgba(255, 93, 143, 0.15);
}

.section-title {
  margin-bottom: 1rem;
  color: var(--dark);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.8;
  max-width: 620px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .section-header {
    max-width: 100%;
    margin-bottom: 3rem;
  }

  .section-title {
    font-size: clamp(1.9rem, 3vw, 2.6rem);
  }

  .section-subtitle {
    font-size: 0.98rem;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .section-header {
    margin-bottom: 2.5rem;
  }

  .section-title {
    font-size: clamp(1.75rem, 5vw, 2.4rem);
  }

  .section-subtitle {
    font-size: 0.95rem;
    max-width: 100%;
  }
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */

#about {
  background: var(--white);
}

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

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}

.about-image::before {
  content: '';
  position: absolute;
  top: -12px;
  left: -12px;
  right: 12px;
  bottom: 12px;
  border: 3px solid var(--teal);
  border-radius: var(--radius-lg);
  z-index: 1;
  opacity: 0.4;
  transition: all var(--transition);
}

.about-image:hover::before {
  top: -16px;
  left: -16px;
  opacity: 0.7;
}

.about-image::after {
  content: '';
  position: absolute;
  bottom: -12px;
  right: -12px;
  left: 12px;
  top: 12px;
  border: 3px solid var(--pink);
  border-radius: var(--radius-lg);
  z-index: 0;
  opacity: 0.3;
}

.about-text h3 {
  margin-bottom: 1rem;
  color: var(--purple);
}

.about-text p {
  color: var(--gray);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--white);
  transition: transform var(--transition);
}

.feature-item:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.feature-icon:nth-child(1) {
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
}

.feature-item:nth-child(1) .feature-icon {
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
}

.feature-item:nth-child(2) .feature-icon {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
}

.feature-item:nth-child(3) .feature-icon {
  background: linear-gradient(135deg, var(--orange), #e6a03f);
}

.feature-item:nth-child(4) .feature-icon {
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
}

.feature-item h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--dark);
}

.feature-item p {
  font-size: 0.875rem;
  color: var(--gray);
  margin-bottom: 0;
  line-height: 1.6;
}

/* Director Card */
.director-card {
  margin-top: 2.5rem;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(91, 95, 151, 0.04), rgba(255, 93, 143, 0.04));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(91, 95, 151, 0.1);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: all var(--transition);
}

.director-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.director-card img {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-circle);
  object-fit: cover;
  border: 3px solid var(--pink);
}

.director-info h4 {
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 0.15rem;
}

.director-info .title {
  font-size: 0.85rem;
  color: var(--pink);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.director-info .quote,
.director-info p {
  font-size: 0.9rem;
  color: var(--gray);
  font-style: italic;
  line-height: 1.6;
}

/* ============================================================
   PROGRAMS SECTION
   ============================================================ */

#programs {
  background: var(--light-gray);
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.program-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.program-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  transition: height var(--transition);
}

.program-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.program-card:hover::before {
  height: 5px;
}

.card-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  transition: height var(--transition);
}

.program-card:nth-child(1) .card-accent,
.program-card:nth-child(1)::before {
  background: linear-gradient(90deg, var(--pink), var(--pink-light));
}

.program-card:nth-child(2) .card-accent,
.program-card:nth-child(2)::before {
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
}

.program-card:nth-child(3) .card-accent,
.program-card:nth-child(3)::before {
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
}

.program-card:nth-child(4) .card-accent,
.program-card:nth-child(4)::before {
  background: linear-gradient(90deg, var(--purple), var(--purple-light));
}

.program-icon {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  transition: transform var(--transition-bounce);
}

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

.program-card:nth-child(1) .program-icon {
  background: linear-gradient(135deg, rgba(255, 93, 143, 0.12), rgba(255, 93, 143, 0.04));
  color: var(--pink);
}

.program-card:nth-child(2) .program-icon {
  background: linear-gradient(135deg, rgba(255, 181, 71, 0.15), rgba(255, 181, 71, 0.04));
  color: var(--orange);
}

.program-card:nth-child(3) .program-icon {
  background: linear-gradient(135deg, rgba(53, 208, 186, 0.12), rgba(53, 208, 186, 0.04));
  color: var(--teal);
}

.program-card:nth-child(4) .program-icon {
  background: linear-gradient(135deg, rgba(91, 95, 151, 0.12), rgba(91, 95, 151, 0.04));
  color: var(--purple);
}

.program-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--dark);
}

.program-card p {
  font-size: 0.925rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.program-card .card-features {
  margin-bottom: 2rem;
  flex-grow: 1;
}

.program-card .card-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 0;
  font-size: 0.875rem;
  color: var(--dark);
  font-weight: 400;
}

.program-card .card-features li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: var(--radius-circle);
  background: rgba(53, 208, 186, 0.12);
  color: var(--teal);
  font-size: 0.7rem;
  font-weight: 700;
}

.program-card .btn {
  width: 100%;
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  margin-top: auto;
}

/* ============================================================
   CAREERS SECTION
   ============================================================ */

#careers {
  background: var(--light-gray);
}

.careers-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

.career-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(91, 95, 151, 0.08);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.career-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.career-card-header {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.career-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(53, 208, 186, 0.12);
}

.career-card h3 {
  font-size: 1.5rem;
  color: var(--dark);
  margin: 0;
}

.career-card p {
  color: var(--gray);
  line-height: 1.85;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.career-features {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 1.75rem;
}

.career-features li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--dark);
  font-size: 0.95rem;
}

.career-features li::before {
  content: '•';
  color: var(--pink);
  font-size: 1rem;
  line-height: 1;
}

.career-cta {
  margin-top: 3rem;
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(53, 208, 186, 0.08), rgba(91, 95, 151, 0.08));
  border-radius: var(--radius-xl);
  border: 1px solid rgba(53, 208, 186, 0.12);
}

.career-cta h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--dark);
}

.career-cta p {
  color: var(--gray);
  line-height: 1.8;
  max-width: 720px;
  margin: 0 auto 1.75rem;
}

/* ============================================================
   MAKER SPACE SECTION
   ============================================================ */

#makerspace {
  background: var(--white);
}

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

.makerspace-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.gallery-main {
  grid-column: span 2;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.gallery-main img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-main:hover img {
  transform: scale(1.05);
}

.gallery-secondary {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.gallery-secondary img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-secondary:hover img {
  transform: scale(1.08);
}

.makerspace-info h3 {
  color: var(--purple);
  margin-bottom: 1rem;
}

.makerspace-info p {
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.equipment-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.equipment-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--light-gray);
  border-radius: var(--radius-md);
  transition: all var(--transition);
  font-size: 0.925rem;
  font-weight: 500;
  color: var(--dark);
}

.equipment-item:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.equipment-item i,
.equipment-item .icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(53, 208, 186, 0.12), rgba(53, 208, 186, 0.04));
  color: var(--teal);
  font-size: 1.1rem;
}

/* ============================================================
   SHOP SECTION
   ============================================================ */

#shop {
  background: var(--light-gray);
}

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

.kit-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.kit-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: var(--shadow-lg);
}

.kit-image {
  position: relative;
  overflow: hidden;
  height: 240px;
}

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

.kit-card:hover .kit-image img {
  transform: scale(1.08);
}

.kit-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: var(--white);
  z-index: 2;
  background-size: 200% auto;
  animation: shimmer 3s linear infinite;
}

.kit-info {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.kit-info h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.kit-info p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.kit-price {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.kit-price .original {
  font-size: 1rem;
  color: var(--gray);
  text-decoration: line-through;
  font-weight: 400;
}

.kit-price .current {
  font-size: 1.5rem;
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--pink);
}

.kit-info .btn {
  width: 100%;
  padding: 0.75rem 1.5rem;
}

/* ============================================================
   SCHEDULE SECTION
   ============================================================ */

#schedule {
  background: var(--white);
}

.schedule-container {
  max-width: 100%;
}

.schedule-tabs {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.schedule-tab {
  padding: 0.65rem 1.5rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition);
  background: var(--light-gray);
  color: var(--gray);
  border: 2px solid transparent;
}

.schedule-tab:hover {
  background: rgba(91, 95, 151, 0.08);
  color: var(--purple);
}

.schedule-tab.active {
  background: var(--purple);
  color: var(--white);
  border-color: var(--purple);
  box-shadow: var(--shadow-purple);
}

.schedule-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 3rem;
}

.schedule-table th {
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  color: var(--white);
  padding: 1.1rem 1.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  text-align: left;
  letter-spacing: 0.02em;
}

.schedule-table td {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(222, 226, 230, 0.5);
  font-size: 0.925rem;
  color: var(--dark);
  background: var(--white);
  transition: background var(--transition);
}

.schedule-table tr:last-child td {
  border-bottom: none;
}

.schedule-table tr:hover td {
  background: rgba(91, 95, 151, 0.03);
}

.schedule-table tr:nth-child(even) td {
  background: rgba(248, 249, 250, 0.5);
}

.schedule-table tr:nth-child(even):hover td {
  background: rgba(91, 95, 151, 0.05);
}

/* Booking Form */
.booking-form-section {
  margin-top: 3rem;
  padding: 3rem;
  background: linear-gradient(135deg, rgba(91, 95, 151, 0.03), rgba(255, 93, 143, 0.03));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(91, 95, 151, 0.08);
}

.booking-form-section h3 {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--purple);
}

.booking-form {
  max-width: 700px;
  margin: 0 auto;
}

.form-row {
  display: flex;
  gap: 1.5rem;
}

.form-row .form-group {
  flex: 1;
}

.form-group {
  margin-bottom: 1.5rem;
  position: relative;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1.25rem;
  border: 2px solid var(--gray-light);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--white);
  transition: all var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #adb5bd;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 4px rgba(91, 95, 151, 0.1);
}

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

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%235b5f97' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-submit {
  width: 100%;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  color: var(--white);
  border: none;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  margin-top: 0.5rem;
}

.form-submit:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-pink);
  background: linear-gradient(135deg, var(--pink-light), var(--pink));
}

/* ============================================================
   EVENTS SECTION
   ============================================================ */

#events {
  background: linear-gradient(180deg,
    rgba(255, 93, 143, 0.03) 0%,
    var(--white) 50%,
    rgba(53, 208, 186, 0.02) 100%
  );
}

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

.event-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.event-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.event-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

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

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

.event-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(26, 26, 46, 0.6) 100%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

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

.event-content {
  padding: 1.75rem;
}

.event-tag {
  display: inline-block;
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
}

.event-tag.pink {
  background: rgba(255, 93, 143, 0.1);
  color: var(--pink);
}

.event-tag.teal {
  background: rgba(53, 208, 186, 0.1);
  color: var(--teal-dark);
}

.event-tag.orange {
  background: rgba(255, 181, 71, 0.12);
  color: #d4930a;
}

.event-tag.purple {
  background: rgba(91, 95, 151, 0.1);
  color: var(--purple);
}

.event-content h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.event-content p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.event-content a {
  font-weight: 600;
  color: var(--pink);
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap var(--transition);
}

.event-content a:hover {
  gap: 0.75rem;
  color: var(--pink-dark);
}

/* ============================================================
   GALLERY SECTION
   ============================================================ */

#gallery {
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 1rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}

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

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item .gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(26, 26, 46, 0.75) 100%);
  opacity: 1;
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */

#testimonials {
  background: linear-gradient(135deg, var(--purple), var(--purple-dark), #3d4070);
  color: var(--white);
  overflow: hidden;
  position: relative;
}

#testimonials::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 93, 143, 0.1) 0%, transparent 70%);
  border-radius: var(--radius-circle);
  pointer-events: none;
}

#testimonials::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(53, 208, 186, 0.08) 0%, transparent 70%);
  border-radius: var(--radius-circle);
  pointer-events: none;
}

#testimonials .section-badge {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.15);
}

#testimonials .section-title {
  color: var(--white);
}

#testimonials .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.testimonial-carousel {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-xl);
}

.testimonial-card .quote-icon {
  font-size: 3.5rem;
  line-height: 1;
  color: var(--pink);
  opacity: 0.25;
  font-family: Georgia, serif;
  margin-bottom: 0.5rem;
  display: block;
}

.testimonial-text {
  font-size: 1.15rem;
  color: var(--dark);
  line-height: 1.9;
  margin-bottom: 2rem;
  font-style: italic;
  font-weight: 400;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.testimonial-author img {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-circle);
  object-fit: cover;
  margin-bottom: 0.5rem;
  border: 3px solid var(--pink);
}

.testimonial-author h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
}

.testimonial-author span,
.testimonial-author p {
  font-size: 0.85rem;
  color: var(--gray);
  font-weight: 400;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 2rem;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: var(--radius-circle);
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  padding: 0;
}

.carousel-dot:hover {
  background: rgba(255, 255, 255, 0.5);
  transform: scale(1.15);
}

.carousel-dot.active {
  background: var(--pink);
  width: 32px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(255, 93, 143, 0.4);
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */

#contact {
  background: var(--white);
}

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

.contact-info {
  padding: 2.5rem;
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  border-radius: var(--radius-lg);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.contact-info::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 93, 143, 0.15) 0%, transparent 70%);
  border-radius: var(--radius-circle);
  pointer-events: none;
}

.contact-info h3 {
  color: var(--white);
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.contact-info > p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.contact-info-item i,
.contact-info-item .icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 1.1rem;
  transition: background var(--transition);
}

.contact-info-item:hover i,
.contact-info-item:hover .icon {
  background: rgba(255, 255, 255, 0.2);
}

.contact-info-item h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.contact-info-item p,
.contact-info-item a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  line-height: 1.6;
}

.contact-info-item a:hover {
  color: var(--white);
}

.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.social-links a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-circle);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 1.1rem;
  transition: all var(--transition);
}

.social-links a:hover {
  background: var(--pink);
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(255, 93, 143, 0.3);
}

.contact-form {
  padding: 2.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(222, 226, 230, 0.5);
}

.contact-form h3 {
  color: var(--purple);
  margin-bottom: 0.5rem;
}

.contact-form > p {
  color: var(--gray);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.map-container {
  width: 100%;
  margin-top: 4rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 400px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: linear-gradient(180deg, var(--dark-light), #252742);
  color: var(--white);
  padding: 5rem 0 0;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--pink), var(--orange), var(--teal), var(--purple));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

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

.footer-logo span {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
}

.footer-col > p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 3px;
  background: var(--pink);
  border-radius: 2px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-col ul li a:hover {
  color: var(--pink);
  transform: translateX(4px);
}

.footer-col ul li a::before {
  content: '';
  width: 0;
  height: 2px;
  background: var(--pink);
  transition: width var(--transition);
  border-radius: 1px;
}

.footer-col ul li a:hover::before {
  width: 12px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.75rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.85rem;
}

.footer-bottom a {
  color: var(--pink);
  transition: color var(--transition);
}

.footer-bottom a:hover {
  color: var(--pink-light);
}

/* ============================================================
   REVEAL / SCROLL ANIMATIONS
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}

.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delays */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* ============================================================
   RESPONSIVE — TABLET (768px – 1024px)
   ============================================================ */

@media (max-width: 1024px) {
  section {
    padding: 4.5rem 0;
  }

  .container {
    padding: 0 1.5rem;
  }

  /* Nav */
  .nav-links {
    gap: 1.25rem;
  }

  .nav-links a {
    font-size: 0.875rem;
  }

  /* Hero */
  #hero > .container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image {
    order: -1;
  }

  .hero-image img {
    max-width: 450px;
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-features {
    grid-template-columns: 1fr 1fr;
  }

  /* Programs */
  .programs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Makerspace */
  .makerspace-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  /* Shop */
  .shop-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Events */
  .events-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 200px;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE (< 768px)
   ============================================================ */

@media (max-width: 768px) {
  section {
    padding: 3.5rem 0;
  }

  .container {
    padding: 0 1.25rem;
  }

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

  /* Nav — Hamburger */
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 6rem 2rem 2rem;
    gap: 1.5rem;
    box-shadow: -4px 0 30px rgba(0, 0, 0, 0.1);
    transition: right var(--transition);
    z-index: 999;
    overflow-y: auto;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    font-size: 1.1rem;
    width: 100%;
    padding: 0.5rem 0;
  }

  .nav-cta {
    margin-top: 1rem;
    text-align: center;
    width: 100%;
    justify-content: center;
  }

  /* Hero */
  #hero {
    min-height: auto;
    padding-top: 7rem;
    padding-bottom: 3rem;
  }

  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }

  .hero-image img {
    max-width: 100%;
  }

  .floating-shape {
    display: none;
  }

  /* About */
  .about-features {
    grid-template-columns: 1fr;
  }

  .about-image::before,
  .about-image::after {
    display: none;
  }

  .director-card {
    flex-direction: column;
    text-align: center;
  }

  /* Programs */
  .programs-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  /* Makerspace */
  .makerspace-gallery {
    grid-template-columns: 1fr;
  }

  .gallery-main {
    grid-column: span 1;
  }

  .equipment-list {
    grid-template-columns: 1fr;
  }

  /* Shop */
  .shop-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  /* Schedule */
  .schedule-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
  }

  .schedule-tab {
    white-space: nowrap;
    flex-shrink: 0;
  }

  .schedule-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .form-row {
    flex-direction: column;
    gap: 0;
  }

  .booking-form-section {
    padding: 2rem 1.5rem;
  }

  /* Events */
  .events-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }

  .gallery-item.tall {
    grid-row: span 1;
  }

  .gallery-item.wide {
    grid-column: span 1;
  }

  /* Testimonials */
  .testimonial-card {
    padding: 2rem 1.5rem;
  }

  .testimonial-text {
    font-size: 1rem;
  }

  /* Contact */
  .contact-info {
    padding: 2rem;
  }

  .contact-form {
    padding: 2rem 1.5rem;
  }

  .map-container {
    height: 300px;
    margin-top: 3rem;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

/* ============================================================
   RESPONSIVE — SMALL MOBILE (< 480px)
   ============================================================ */

@media (max-width: 480px) {
  section {
    padding: 3rem 0;
  }

  .container {
    padding: 0 1rem;
  }

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

  .hero-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }

  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }

  .schedule-table th,
  .schedule-table td {
    padding: 0.75rem;
    font-size: 0.85rem;
  }

  .testimonial-card .quote-icon {
    font-size: 2.5rem;
  }

  .contact-info {
    padding: 1.5rem;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .social-links a {
    width: 40px;
    height: 40px;
  }

  .nav-logo img {
    height: 45px;
  }

  .nav-logo span {
    font-size: 1.2rem;
  }
}

/* ============================================================
   UTILITY & EXTRAS
   ============================================================ */

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

/* Scroll down indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2.5s ease infinite;
  z-index: 10;
}

.scroll-indicator span {
  display: block;
  width: 28px;
  height: 44px;
  border: 2px solid var(--purple);
  border-radius: 14px;
  position: relative;
  opacity: 0.5;
}

.scroll-indicator span::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 8px;
  background: var(--pink);
  border-radius: 2px;
  transform: translateX(-50%);
  animation: pulse 1.5s ease infinite;
}

/* Loading state for images */
img[loading="lazy"] {
  background: linear-gradient(135deg, var(--light-gray), #eef0f2);
}

/* Focus visible for accessibility */
*:focus-visible {
  outline: 3px solid var(--pink);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-scale {
    opacity: 1;
    transform: none;
  }

  .floating-shape {
    animation: none;
  }
}

/* Print styles */
@media print {
  .navbar,
  .hamburger,
  .floating-shape,
  .scroll-indicator,
  .footer {
    display: none;
  }

  section {
    padding: 2rem 0;
    break-inside: avoid;
  }

  body {
    color: #000;
    background: #fff;
  }

  a {
    color: #000;
    text-decoration: underline;
  }
}

/* ============================================================
   ADDITIONAL STYLES – Missing Classes
   ============================================================ */

/* ---------- Hero Container ---------- */
.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: calc(100vh - 80px);
  padding-top: 100px;
}

@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
    padding-top: 120px;
  }
}

/* ---------- Typewriter Cursor ---------- */
.typewriter-cursor {
  display: inline-block;
  font-weight: 300;
  color: var(--pink);
  animation: blink-cursor 0.8s step-end infinite;
  margin-left: 2px;
}

@keyframes blink-cursor {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* ---------- Scroll Arrow ---------- */
.scroll-arrow {
  display: inline-block;
  animation: bounce 2s infinite;
  color: var(--purple);
  font-size: 0.8rem;
  margin-top: 0.25rem;
}

/* ---------- Hero Image Decoration ---------- */
.hero-image-decoration {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, var(--teal), var(--purple));
  border-radius: var(--radius-xl);
  z-index: -1;
  opacity: 0.3;
}

.hero-image {
  position: relative;
}

/* ---------- About Image Accent ---------- */
.about-image-accent {
  position: absolute;
  top: -15px;
  left: -15px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--teal);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.about-image {
  position: relative;
}

/* ---------- Kit Features Mini Tags ---------- */
.kit-features-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}

.kit-features-mini span {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--light-gray);
  color: var(--purple);
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
}

/* ---------- Schedule Table Wrapper ---------- */
.schedule-table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin-top: 1.5rem;
}

/* ---------- Level Badge ---------- */
.level-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.level-badge.beginner {
  background: #35d0ba20;
  color: var(--teal-dark);
}

.level-badge.intermediate {
  background: #ffb54720;
  color: #c78a00;
}

.level-badge.advanced {
  background: #5b5f9720;
  color: var(--purple);
}

/* ---------- Seats Available ---------- */
.seats-available {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  background: #ff5d8f15;
  color: var(--pink);
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
}

/* ---------- Weekly Banner ---------- */
.weekly-banner {
  margin-top: 4rem;
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  border-radius: var(--radius-xl);
  padding: 3rem;
  color: var(--white);
  overflow: hidden;
  position: relative;
}

.weekly-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.weekly-content {
  display: flex;
  align-items: center;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.weekly-icon {
  font-size: 3rem;
  flex-shrink: 0;
}

.weekly-text h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.weekly-text p {
  opacity: 0.9;
  font-size: 0.95rem;
}

.weekly-content .btn {
  flex-shrink: 0;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .weekly-content {
    flex-direction: column;
    text-align: center;
  }
}

/* ---------- Event Link ---------- */
.event-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--pink);
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 1rem;
  transition: var(--transition);
  text-decoration: none;
}

.event-link:hover {
  gap: 0.5rem;
  color: var(--pink-dark);
}

/* ---------- Event Tag ---------- */
.event-tag {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ---------- Testimonial Track ---------- */
.testimonial-track {
  overflow: hidden;
  position: relative;
}

.testimonial-card {
  display: none;
  animation: fadeInSlide 0.5s ease forwards;
}

.testimonial-card:first-child {
  display: block;
}

@keyframes fadeInSlide {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ---------- Author Avatar ---------- */
.author-avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--pink-light), var(--orange));
  border-radius: var(--radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

.testimonial-author strong {
  display: block;
  font-family: var(--font-heading);
  color: var(--dark);
}

.testimonial-author span {
  font-size: 0.85rem;
  color: var(--gray);
}

/* ---------- Quote Icon ---------- */
.quote-icon {
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: 1;
  color: var(--pink);
  opacity: 0.3;
  margin-bottom: -1rem;
}

.testimonial-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--dark);
  font-style: italic;
}

/* ---------- Contact Icon ---------- */
.contact-icon {
  font-size: 1.5rem;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--pink-light), var(--pink));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact-info-item h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: var(--dark);
}

.contact-info-item p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
}

/* ---------- Footer Tagline ---------- */
.footer-tagline {
  display: block;
  font-size: 0.85rem;
  color: var(--teal);
  font-weight: 500;
  margin-top: 0.25rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer-social {
  margin-top: 1.5rem;
}

.footer-social .social-link {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
}

.footer-social .social-link:hover {
  background: var(--pink);
  color: var(--white);
}

/* ---------- Lightbox (created by JS) ---------- */
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.lightbox-image {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 0 60px rgba(0,0,0,0.5);
  cursor: default;
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: var(--radius-circle);
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.lightbox-close:hover {
  background: var(--pink);
  transform: rotate(90deg);
}

body.lightbox-active {
  overflow: hidden;
}

/* ---------- Director Card Enhancement ---------- */
.director-card {
  margin-top: 2rem;
  background: linear-gradient(135deg, #5b5f9710, #ff5d8f08);
  border: 1px solid #5b5f9720;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.director-info {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.director-avatar {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--purple-light), var(--purple));
  border-radius: var(--radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.director-avatar svg {
  stroke: white;
}

.director-info h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--purple);
}

.director-info > div > span {
  font-size: 0.8rem;
  color: var(--pink);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.director-info p {
  margin-top: 0.5rem;
  font-style: italic;
  color: var(--gray);
  font-size: 0.9rem;
}

/* ---------- Map Container ---------- */
.map-container {
  margin-top: 4rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

/* ---------- Scroll Progress (created by JS) ---------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pink), var(--orange));
  z-index: 10001;
  transition: width 0.1s linear;
}

/* ---------- Back to Top (created by JS) ---------- */
#back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: var(--pink);
  color: var(--white);
  border: none;
  border-radius: var(--radius-circle);
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  box-shadow: var(--shadow-pink);
  display: flex;
  align-items: center;
  justify-content: center;
}

#back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#back-to-top:hover {
  background: var(--pink-dark);
  transform: translateY(-3px);
}

/* ---------- Particles Container (created by JS) ---------- */
.particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.particle {
  position: absolute;
  border-radius: var(--radius-circle);
  opacity: 0.4;
  animation: float 6s ease-in-out infinite;
}

/* ---------- Form Success Toast (created by JS) ---------- */
.form-success {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-family: var(--font-heading);
  box-shadow: var(--shadow-teal);
  z-index: 10000;
  animation: slideUpToast 0.5s ease forwards;
}

@keyframes slideUpToast {
  to {
    transform: translateX(-50%) translateY(0);
  }
}

/* ---------- Contact Section Text Color Fix ---------- */
.contact-info-item h4,
.contact-info-item p {
  color: #ffffff;
}
