/* --- Variables & Reset --- */
:root {
  --bg-dark: #05050a;
  --bg-card: #0e0e16;
  --text-main: #e0e0e0;
  --text-muted: #8a8a9b;

  /* Neon Colors */
  --neon-purple: #b026ff;
  --neon-cyan: #00f3ff;
  --neon-pink: #ff0055;

  --font-heading: "Orbitron", sans-serif;
  --font-body: "Rajdhani", sans-serif;

  --container-width: 1240px;
  --header-height: 80px;
  --border-radius: 4px; /* Slight rounded but mostly sharp for tech feel */
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  overflow-x: hidden;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

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

/* --- Utilities --- */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 30px;
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  border: none;
  position: relative;
  z-index: 1;
  transition: 0.3s;
  clip-path: polygon(
    10% 0,
    100% 0,
    100% 70%,
    90% 100%,
    0 100%,
    0 30%
  ); /* Cyberpunk shape */
}

.btn--neon {
  background: var(--neon-purple);
  color: #fff;
  box-shadow: 0 0 15px rgba(176, 38, 255, 0.4);
}

.btn--neon:hover {
  background: var(--neon-cyan);
  box-shadow: 0 0 20px rgba(0, 243, 255, 0.6);
  color: var(--bg-dark);
  transform: translateY(-2px);
}

/* --- Header --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: rgba(5, 5, 10, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1000;
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header__logo-img {
  height: 40px;
  width: auto;
}

.header__logo-text {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 0 5px var(--neon-cyan);
}

.header__nav {
  display: none;
}

@media (min-width: 992px) {
  .header__nav {
    display: block;
  }
}

.header__list {
  display: flex;
  gap: 30px;
}

.header__link {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
}

.header__link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--neon-cyan);
  transition: width 0.3s ease;
  box-shadow: 0 0 8px var(--neon-cyan);
}

.header__link:hover {
  color: #fff;
}

.header__link:hover::after {
  width: 100%;
}

.header__cta {
  display: none;
}

@media (min-width: 992px) {
  .header__cta {
    display: inline-flex;
  }
}

.header__burger {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  display: block;
}

@media (min-width: 992px) {
  .header__burger {
    display: none;
  }
}

/* --- Mobile Menu --- */
.mobile-menu {
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 100%;
  height: calc(100vh - var(--header-height));
  background: var(--bg-dark);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  z-index: 999;
  border-top: 1px solid var(--neon-purple);
}

.mobile-menu.is-active {
  transform: translateX(0);
}

.mobile-menu__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 20px;
}

.mobile-menu__link {
  font-family: var(--font-heading);
  font-size: 24px;
  color: #fff;
  text-transform: uppercase;
}

.mobile-menu__link--cta {
  color: var(--neon-cyan);
  margin-top: 20px;
  border: 1px solid var(--neon-cyan);
  padding: 10px 30px;
  border-radius: var(--border-radius);
}

/* --- Footer --- */
.footer {
  background: linear-gradient(180deg, var(--bg-dark) 0%, #000 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 80px 0 30px;
  margin-top: auto;
  position: relative;
  overflow: hidden;
}

/* Cyberpunk decorative line */
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--neon-purple),
    transparent
  );
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  }
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.footer__logo-img {
  height: 30px;
  width: auto;
}

.footer__brand-name {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1.5px;
}

.footer__tagline {
  color: var(--text-muted);
  font-size: 16px;
  max-width: 300px;
}

.footer__title {
  font-family: var(--font-heading);
  font-size: 18px;
  color: #fff;
  margin-bottom: 25px;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}

.footer__title::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--neon-purple);
}

.footer__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__link {
  color: var(--text-muted);
  font-size: 16px;
  transition: 0.3s;
}

.footer__link:hover {
  color: var(--neon-cyan);
  padding-left: 5px;
  text-shadow: 0 0 5px var(--neon-cyan);
}

.footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
}

.footer__icon {
  width: 20px;
  height: 20px;
  color: var(--neon-purple);
}

.footer__bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: #555;
  font-size: 14px;
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height); /* Offset for fixed header */
  overflow: hidden;
  background: var(--bg-dark);
}

/* Cyberpunk Grid Background */
.hero__bg-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
      rgba(176, 38, 255, 0.1) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(176, 38, 255, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  perspective: 500px;
  transform: scale(1.2);
  opacity: 0.3;
  z-index: 0;
}

.hero__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(0, 243, 255, 0.15) 0%,
    transparent 70%
  );
  transform: translate(-50%, -50%);
  z-index: 0;
  filter: blur(80px);
}

.hero__container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}

@media (min-width: 992px) {
  .hero__container {
    grid-template-columns: 1.2fr 1fr;
  }
}

/* Content Side */
.hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(176, 38, 255, 0.1);
  border: 1px solid var(--neon-purple);
  border-radius: 20px;
  color: var(--neon-purple);
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 25px;
  box-shadow: 0 0 10px rgba(176, 38, 255, 0.2);
}

.hero__badge-icon {
  width: 16px;
  height: 16px;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: 48px;
  line-height: 1.1;
  font-weight: 900;
  margin-bottom: 25px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -1px;
}

/* Glitch/Typewriter cursor effect style if needed later */
.hero__title span {
  color: var(--neon-cyan);
}

@media (min-width: 768px) {
  .hero__title {
    font-size: 72px;
  }
}

.hero__subtitle {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 500px;
  margin-bottom: 40px;
  border-left: 2px solid var(--neon-cyan);
  padding-left: 20px;
}

.hero__subtitle strong {
  color: #fff;
  font-weight: 500;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (min-width: 576px) {
  .hero__actions {
    flex-direction: row;
    align-items: center;
  }
}

.hero__btn i {
  margin-left: 8px;
  width: 20px;
}

.hero__note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
}

.hero__note i {
  width: 16px;
  color: var(--neon-cyan);
}

/* Visual Side - Asymmetric & Breaking Grid */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero__frame {
  position: relative;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 4/5;
  /* Cyberpunk shape clip-path */
  clip-path: polygon(20% 0, 100% 0, 100% 85%, 80% 100%, 0 100%, 0 15%);
  background: var(--bg-card);
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero__frame::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -1;
  background: linear-gradient(45deg, var(--neon-purple), var(--neon-cyan));
  clip-path: polygon(20% 0, 100% 0, 100% 85%, 80% 100%, 0 100%, 0 15%);
  opacity: 0.5;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: polygon(20% 0, 100% 0, 100% 85%, 80% 100%, 0 100%, 0 15%);
  filter: grayscale(40%) contrast(1.2);
  transition: filter 0.5s ease;
}

.hero__frame:hover .hero__img {
  filter: grayscale(0%) contrast(1);
}

/* Floating Cards - Breaking the layout */
.hero__card {
  position: absolute;
  background: rgba(14, 14, 22, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid var(--neon-cyan);
  padding: 15px 25px;
  z-index: 5;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  animation: float 4s ease-in-out infinite;
}

.hero__card--1 {
  top: 10%;
  left: -20px;
  border-left: 4px solid var(--neon-purple);
}

.hero__card--2 {
  bottom: 15%;
  right: -20px;
  border-right: 4px solid var(--neon-cyan);
  animation-delay: 2s;
}

.hero__card-label {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
}

.hero__card-value {
  display: block;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0);
  }
}

/* --- Courses / Grid Section --- */
.courses {
  padding: 100px 0;
  background-color: var(--bg-dark);
  position: relative;
}

/* Decorative background glow behind the grid */
.courses::before {
  content: "";
  position: absolute;
  top: 20%;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(176, 38, 255, 0.1) 0%,
    transparent 70%
  );
  filter: blur(80px);
  z-index: 0;
}

.courses__header {
  margin-bottom: 60px;
  max-width: 700px;
  position: relative;
  z-index: 2;
}

.courses__title {
  font-family: var(--font-heading);
  font-size: 36px;
  color: #fff;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.text-neon {
  color: transparent;
  -webkit-text-stroke: 1px var(--neon-cyan);
  text-shadow: 0 0 10px rgba(0, 243, 255, 0.3);
}

.courses__subtitle {
  font-size: 18px;
  color: var(--text-muted);
}

.courses__subtitle strong {
  color: var(--neon-cyan);
}

/* --- Asymmetric Grid Layout --- */
.grid-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .grid-layout {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-layout {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto; /* Two main rows */
  }

  /* Asymmetric Spans */
  .card--large {
    grid-column: span 2;
    grid-row: span 1;
  }

  .card--tall {
    grid-column: 3;
    grid-row: span 2;
  }

  .card--wide {
    grid-column: span 2;
  }

  .card--small {
    grid-column: span 1;
  }
}

/* --- Card Styles --- */
.card {
  background: rgba(14, 14, 22, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: var(--border-radius); /* Using sharp corners from variables */
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 250px;
}

/* Hover Effects */
.card:hover {
  transform: translateY(-5px);
  border-color: var(--neon-purple);
  box-shadow: 0 10px 40px rgba(176, 38, 255, 0.15);
}

.card:hover .card__icon-box {
  background: var(--neon-cyan);
  color: var(--bg-dark);
  transform: rotate(45deg);
}

.card:hover .card__icon-box i {
  transform: rotate(-45deg);
}

.card:hover .card__link {
  color: var(--neon-cyan);
  padding-left: 10px;
}

/* Content Styles */
.card__icon-box {
  width: 60px;
  height: 60px;
  border: 1px solid var(--neon-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon-cyan);
  margin-bottom: 25px;
  transition: 0.4s ease;
}

.card__title {
  font-family: var(--font-heading);
  font-size: 24px;
  color: #fff;
  margin-bottom: 15px;
}

.card__desc {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.5;
}

.card__desc strong {
  color: #fff;
}

.card__tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: auto;
}

.card__tags span {
  font-size: 12px;
  background: rgba(255, 255, 255, 0.05);
  padding: 5px 10px;
  border-radius: 2px;
  color: #fff;
}

.card__link {
  margin-top: 25px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  transition: 0.3s ease;
}

/* Tall Card Specifics */
.card--tall {
  background: linear-gradient(
    145deg,
    rgba(14, 14, 22, 0.8),
    rgba(20, 20, 30, 0.8)
  );
  border-color: rgba(176, 38, 255, 0.3);
}

.card--tall:hover {
  border-color: var(--neon-cyan);
  box-shadow: 0 10px 40px rgba(0, 243, 255, 0.15);
}

.card__bg-icon {
  position: absolute;
  top: -20px;
  right: -20px;
  color: rgba(255, 255, 255, 0.03);
  z-index: 0;
}

.card__bg-icon i {
  width: 200px;
  height: 200px;
}

.card__list {
  margin-top: 20px;
}

.card__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--text-main);
}

.card__list li i {
  width: 16px;
  color: var(--neon-purple);
}

/* Wide Card Specifics */
.card--wide .card__row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (min-width: 576px) {
  .card--wide .card__row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.card__stat {
  text-align: right;
}

.card__stat-val {
  display: block;
  font-family: var(--font-heading);
  font-size: 42px;
  color: var(--neon-cyan);
  font-weight: 900;
}

.card__stat-label {
  font-size: 14px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Small Cards */
.card--small {
  min-height: 180px;
  justify-content: center;
  text-align: center;
  align-items: center;
}

.card__icon--sm {
  width: 32px;
  height: 32px;
  color: var(--neon-purple);
  margin-bottom: 15px;
}

.card--highlight {
  background: rgba(176, 38, 255, 0.05);
  border: 1px solid rgba(176, 38, 255, 0.2);
}

.card--highlight:hover {
  background: rgba(176, 38, 255, 0.15);
}

/* --- Common Section Styles --- */
.section-title {
  font-family: var(--font-heading);
  font-size: 32px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 40px;
}

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

/* --- Process Section (Timeline) --- */
.process {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg-dark) 0%, #0a0a12 100%);
  overflow: hidden;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 0;
}

/* Central glowing line */
.timeline__line {
  position: absolute;
  top: 0;
  left: 20px; /* Mobile alignment */
  width: 2px;
  height: 100%;
  background: var(--neon-purple);
  box-shadow: 0 0 10px var(--neon-purple);
  z-index: 0;
}

@media (min-width: 768px) {
  .timeline__line {
    left: 50%;
    transform: translateX(-50%);
  }
}

.timeline__step {
  position: relative;
  display: flex;
  margin-bottom: 60px;
  z-index: 1;
}

.timeline__step:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .timeline__step {
    justify-content: flex-end;
    padding-left: 50%;
  }

  .timeline__step--reverse {
    justify-content: flex-start;
    padding-left: 0;
    padding-right: 50%;
    flex-direction: row-reverse;
    text-align: right;
  }
}

/* Marker (Circle) */
.timeline__marker {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--bg-dark);
  border: 2px solid var(--neon-cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--neon-cyan);
  box-shadow: 0 0 15px rgba(0, 243, 255, 0.4);
  margin-right: 20px;
  /* Adjust marker position for desktop center alignment */
}

@media (min-width: 768px) {
  .timeline__marker {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    margin: 0;
  }
}

.timeline__content {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: var(--border-radius);
  max-width: 100%;
  backdrop-filter: blur(5px);
  transition: 0.3s;
}

@media (min-width: 768px) {
  .timeline__content {
    width: 80%; /* Width of content block relative to half screen */
  }
}

.timeline__step:hover .timeline__content {
  border-color: var(--neon-purple);
  background: rgba(176, 38, 255, 0.05);
  transform: translateY(-5px);
}

.timeline__title {
  font-family: var(--font-heading);
  font-size: 20px;
  color: #fff;
  margin-bottom: 10px;
}

.timeline__desc {
  font-size: 16px;
  color: var(--text-muted);
}

.timeline__desc strong {
  color: var(--neon-cyan);
}

/* --- Mentors Section --- */
.mentors {
  padding: 100px 0;
  background: var(--bg-dark);
}

.mentors__header {
  margin-bottom: 60px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px;
}

.mentors__subtitle {
  color: var(--text-muted);
  font-size: 18px;
  max-width: 300px;
  border-bottom: 1px solid var(--neon-cyan);
  padding-bottom: 5px;
}

.mentors__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 768px) {
  .mentors__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .mentors__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mentor Card "Character Select" Style */
.mentor-card {
  background: #0a0a0f;
  border: 1px solid #1f1f2e;
  overflow: hidden;
  transition: 0.4s ease;
  clip-path: polygon(0 0, 100% 0, 100% 90%, 90% 100%, 0 100%);
}

.mentor-card:hover {
  border-color: var(--neon-cyan);
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.mentor-card__visual {
  height: 300px;
  position: relative;
  overflow: hidden;
}

.mentor-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: 0.5s ease;
}

.mentor-card:hover .mentor-card__img {
  filter: grayscale(0%);
  transform: scale(1.1);
}

.mentor-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
  opacity: 0;
  transform: translateY(20px);
  transition: 0.3s ease;
  display: flex;
  justify-content: center;
}

.mentor-card:hover .mentor-card__overlay {
  opacity: 1;
  transform: translateY(0);
}

.mentor-card__socials {
  display: flex;
  gap: 15px;
}

.mentor-card__socials a {
  color: #fff;
  transition: 0.2s;
}

.mentor-card__socials a:hover {
  color: var(--neon-cyan);
}

.mentor-card__info {
  padding: 25px;
  position: relative;
}

.mentor-card__info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 25px;
  width: 30px;
  height: 2px;
  background: var(--neon-purple);
}

.mentor-card__name {
  font-family: var(--font-heading);
  font-size: 22px;
  color: #fff;
  margin-bottom: 5px;
}

.mentor-card__role {
  display: block;
  font-size: 14px;
  color: var(--neon-cyan);
  text-transform: uppercase;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.mentor-card__bio {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* --- Reviews Section --- */
.reviews {
  padding: 100px 0;
  background-color: #080810;
}

.reviews__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 768px) {
  .reviews__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.review-card {
  background: #12121c;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: var(--border-radius);
  position: relative;
}

.review-card--highlight {
  border-color: var(--neon-purple);
  box-shadow: 0 0 20px rgba(176, 38, 255, 0.1);
}

.review-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.review-card__user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-card__avatar {
  width: 40px;
  height: 40px;
  background: linear-gradient(45deg, var(--neon-purple), #555);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
}

.review-card__name {
  font-size: 16px;
  color: #fff;
  line-height: 1.2;
}

.review-card__status {
  font-size: 12px;
  color: var(--text-muted);
}

.review-card__rating {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #ffc107;
  font-weight: 700;
}

.review-card__rating i {
  width: 16px;
  fill: #ffc107;
}

.review-card__text {
  color: #ccc;
  font-size: 15px;
  font-style: italic;
  line-height: 1.6;
}

.review-card__text strong {
  color: var(--neon-cyan);
  font-style: normal;
}

/* --- Contact Section --- */
.contact {
  padding: 100px 0;
  background: var(--bg-dark);
  position: relative;
}

.contact__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}

@media (min-width: 992px) {
  .contact__container {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.contact__desc {
  color: var(--text-muted);
  margin-bottom: 30px;
  font-size: 18px;
  max-width: 500px;
}

.contact__desc strong {
  color: #fff;
}

.contact__features {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 16px;
}

.contact__features li i {
  color: var(--neon-cyan);
}

/* Form Styles */
.contact__form-wrapper {
  background: #0e0e16;
  padding: 40px;
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}

/* Access Line Decoration */
.contact__form-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple));
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 15px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 16px;
  border-radius: 4px;
  transition: 0.3s;
}

.form-input:focus {
  outline: none;
  border-color: var(--neon-cyan);
  background: rgba(0, 243, 255, 0.05);
  box-shadow: 0 0 10px rgba(0, 243, 255, 0.2);
}

/* Custom Checkbox: I am not a robot */
.form-captcha {
  margin-bottom: 20px;
  background: rgba(0, 0, 0, 0.3);
  padding: 15px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: inline-block;
}

.captcha-input {
  display: none;
}

.captcha-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 15px;
}

.captcha-box {
  width: 24px;
  height: 24px;
  border: 2px solid var(--text-muted);
  border-radius: 4px;
  position: relative;
  transition: 0.3s;
}

.captcha-input:checked + .captcha-label .captcha-box {
  border-color: var(--neon-cyan);
  background: var(--neon-cyan);
}

/* Checkmark logic */
.captcha-input:checked + .captcha-label .captcha-box::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 6px;
  width: 6px;
  height: 12px;
  border: solid #000;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.captcha-text {
  font-size: 14px;
  color: var(--text-muted);
}

/* Consent Checkbox */
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 25px;
}

.consent-input {
  margin-top: 4px;
  accent-color: var(--neon-purple);
}

.consent-label {
  font-size: 12px;
  color: #777;
  line-height: 1.4;
}

.consent-label a {
  color: var(--text-muted);
  text-decoration: underline;
}

.consent-label a:hover {
  color: var(--neon-cyan);
}

.form-btn {
  width: 100%;
}

.btn-loader {
  display: none;
  width: 20px;
  height: 20px;
  border: 2px solid #fff;
  border-bottom-color: transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-left: 10px;
}

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

.form-message {
  margin-top: 15px;
  font-size: 14px;
  text-align: center;
  min-height: 20px;
}

.form-message.error {
  color: var(--neon-pink);
}

/* Success State */
.contact__success {
  display: none; /* Hidden by default */
  text-align: center;
  padding: 40px 20px;
}

.success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  color: var(--neon-cyan);
}

.success-icon svg {
  width: 100%;
  height: 100%;
}

/* --- Cookie Pop-up --- */
.cookie-popup {
  position: fixed;
  bottom: -100%; /* Hidden initially */
  left: 20px;
  right: 20px;
  background: rgba(14, 14, 22, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid var(--neon-purple);
  padding: 20px;
  border-radius: var(--border-radius);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 15px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
  transition: bottom 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cookie-popup.is-active {
  bottom: 20px;
}

@media (min-width: 768px) {
  .cookie-popup {
    left: auto;
    right: 30px;
    width: 400px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.cookie-content {
  display: flex;
  align-items: center;
  gap: 15px;
}

.cookie-icon {
  color: var(--neon-cyan);
}

.cookie-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.4;
}

.cookie-text a {
  color: #fff;
  text-decoration: underline;
}

.btn--sm {
  padding: 8px 20px;
  font-size: 14px;
  min-width: 100px;
}

/* --- Legal Pages Styles (Privacy, Terms etc.) --- */
.page-content {
  padding: 120px 0 80px; /* Top padding for fixed header */
  min-height: 80vh;
  background: var(--bg-dark);
}

.pages {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.02);
  padding: 40px;
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

@media (max-width: 768px) {
  .pages {
    padding: 20px;
  }
}

.pages h1 {
  font-family: var(--font-heading);
  font-size: 36px;
  color: #fff;
  margin-bottom: 30px;
  border-bottom: 2px solid var(--neon-purple);
  padding-bottom: 15px;
  text-transform: uppercase;
}

.pages h2 {
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--neon-cyan);
  margin: 40px 0 20px;
}

.pages p {
  color: var(--text-main);
  margin-bottom: 15px;
  line-height: 1.7;
}

.pages ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

.pages ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  color: var(--text-muted);
}

.pages ul li::before {
  content: ">";
  position: absolute;
  left: 0;
  color: var(--neon-purple);
  font-weight: 700;
}

.pages a {
  color: var(--neon-cyan);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.pages a:hover {
  border-bottom-color: var(--neon-cyan);
}

/* Validation Error State */
.form-input.is-invalid {
  border-color: var(--neon-pink);
  box-shadow: 0 0 10px rgba(255, 0, 85, 0.4);
  animation: shake 0.4s ease-in-out;
}

@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px);
  }
  75% {
    transform: translateX(5px);
  }
}
