/* ============================================================
   VEASY — Global Stylesheet
   ============================================================ */

/* RESET */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  border: none;
  outline: none;
}

ul, li { list-style: none; }

/* BASE */
html, body {
  background-color: #0a0a0a;
  color: #e0e0e0;
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.navbar__container {
  display: flex;
  height: 80px;
  justify-content: space-between;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 50px;
  align-items: center;
  position: relative;
}

#navbar__logo {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.navbar__logo-img {
  height: 110px;
  width: auto;
  display: block;
}

.navbar__item { margin-bottom: 0; }

.navbar__links {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.92rem;
  letter-spacing: 0.3px;
  display: block;
  transition: color 0.2s ease;
}

.navbar__links:hover { color: #ffffff; }

.navbar__toggle {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.bar {
  display: block;
  width: 26px;
  height: 2px;
  margin: 5px auto;
  background: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease-in-out;
}
/* Desktop menu */
.navbar__menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Overlay hidden on desktop */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(20, 20, 20, 0.65);
    z-index: 100;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
  }
  .menu-close {
  display: none;
}
/* ============================================================
   MOBILE
   ============================================================ */
@media screen and (max-width: 960px) {

  .navbar__container {
    padding: 0 20px;
  }

  .navbar__logo-img {
    height: 90px;
  }

  /* Hamburger */
  .navbar__toggle {
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 3000;
    transition: opacity 0.2s ease;
  }

  /* Hide hamburger when menu opens */
  #mobile-menu.is-active {
    opacity: 0;
    pointer-events: none;
  }

  .bar {
    width: 26px;
    height: 2px;
    margin: 5px auto;
    background: rgba(255,255,255,0.8);
  }

  /* Mobile Menu */
  .navbar__menu {
    position: fixed;

    top: 0;
    right: 0;

    width: 100%;
    height: 100vh;
    height: 100dvh;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;

    gap: 0;

    padding: 120px 30px 40px 30px;

    background: #c00500;

    z-index: 2000;

    overflow-y: auto;

    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);

    pointer-events: none;
  }

  .navbar__menu.active {
    transform: translateX(0);
    pointer-events: all;
  }

  /* Menu Items */
  .navbar__item {
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    padding: 26px 0;
  }

  .navbar__links {
    font-size: 1.9rem;
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    display: block;
    width: 100%;
  }

  .navbar__links:hover {
    color: #ffffff;
  }

  /* Dark Overlay */
  .nav-overlay {
    display: block;
  }

  .nav-overlay.active {
    opacity: 1;
    pointer-events: all;
  }

  /* Close Button */
  .menu-close {
    display: block;
    position: absolute;

    top: 24px;
    right: 22px;

    background: none;
    border: none;

    color: white;
    font-size: 1.5rem;
    font-weight: 300;

    cursor: pointer;

    opacity: 0;
    transform: translateX(40px);

    transition:
      opacity 0.3s ease,
      transform 0.3s ease;
  }

  /* X slides in after panel starts moving */
  .navbar__menu.active .menu-close {
    opacity: 1;
    transform: translateX(0);
  }
}


/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-block;
  background: #e10600;
  color: #ffffff;
  padding: 14px 32px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  transition: background 0.2s ease, transform 0.15s ease;
}

.btn-primary:hover {
  background: #c00500;
  transform: translateY(-1px);
}

.btn-ghost {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
  padding: 14px 32px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: #ffffff;
}

/* ============================================================
   SECTION EYEBROW LABEL
   ============================================================ */
.section-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #e10600;
  margin-bottom: 16px;
  font-family: 'Inter', sans-serif;
}

/* ============================================================
   HOME PAGE — HERO
   ============================================================ */
.hero-section {
  background: #0a0a0a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.page-container {
  display: flex;
  align-items: center;
  gap: 60px;
  min-height: 92vh;
  max-width: 1300px;
  margin: 0 auto;
  padding: 60px 50px;
}

.home-left { flex: 1; }
.home-right { flex: 1; display: flex; justify-content: center; align-items: center; }

.hero-tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #e10600;
  border: 1px solid rgba(225, 6, 0, 0.35);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
  font-family: 'Inter', sans-serif;
}

.welcome-text {
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.08;
  color: #ffffff;
  margin-bottom: 24px;
}

.welcome-text em {
  font-style: normal;
  color: #e10600;
}

.student-text {
  font-size: 1.05rem;
  line-height: 1.78;
  color: rgba(255, 255, 255, 0.5);
  max-width: 460px;
  margin-bottom: 40px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* HERO STATS CARD */
.hero-stats-card {
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 36px;
  width: 100%;
  max-width: 440px;
}

.hero-card-label {
  font-size: 0.7rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 24px;
  font-family: 'Inter', sans-serif;
}

.stat-row {
  display: flex;
  gap: 14px;
  margin-bottom: 14px;
}

.stat-box {
  flex: 1;
  background: #161616;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 18px 16px;
}

.stat-box.accent { border-left: 3px solid #e10600; }

.stat-num {
  font-size: 1.9rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.4;
}

.hero-card-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin: 18px 0;
}

.hero-card-footer {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.33);
  display: flex;
  align-items: center;
  gap: 9px;
}

.status-dot {
  width: 7px;
  height: 7px;
  background: #22c55e;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .page-container {
    flex-direction: column;
    padding: 60px 24px;
    min-height: auto;
    gap: 48px;
  }
  .home-left, .home-right { width: 100%; }
  .hero-stats-card { max-width: 100%; }
  .welcome-text { font-size: 2.6rem; }
}

@media (max-width: 480px) {
  .welcome-text { font-size: 2.1rem; }
  .student-text { font-size: 0.95rem; }
}

/* ============================================================
   HOME PAGE — STEPS SECTION
   ============================================================ */
.steps-section {
  padding: 100px 0;
  background: #0a0a0a;
}

.steps-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 50px;
}

.steps-header {
  margin-bottom: 56px;
}

.steps-header h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.15;
}

.steps-header p {
  color: rgba(255, 255, 255, 0.42);
  font-size: 1rem;
  max-width: 400px;
}

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

.step-item {
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 32px 26px;
  position: relative;
  transition: background 0.2s ease;
  overflow: hidden;
}

.step-item:hover { background: #141414; }

.step-accent-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #e10600;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.step-item:hover .step-accent-bar { transform: scaleX(1); }

.step-num {
  font-size: 0.68rem;
  letter-spacing: 2.5px;
  color: rgba(255, 255, 255, 0.2);
  margin-bottom: 18px;
  font-family: 'Inter', sans-serif;
}

.step-item h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 10px;
  font-family: 'Inter', sans-serif;
}

.step-item p {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.72;
}

@media (max-width: 768px) {
  .steps-inner { padding: 0 24px; }
  .steps-section { padding: 72px 0; }
}

/* ============================================================
   HOME PAGE — WHY CHOOSE US
   ============================================================ */
.why-choose-us {
  background: #0d0d0d;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 100px 50px;
}

.why-inner {
  max-width: 1300px;
  margin: 0 auto;
}

.why-header {
  text-align: center;
  margin-bottom: 64px;
}

.why-header h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: #ffffff;
}

.benefits-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.benefit-card {
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 36px 28px;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.benefit-card:hover {
  border-color: rgba(225, 6, 0, 0.3);
  transform: translateY(-5px);
}

.benefit-icon {
  width: 46px;
  height: 46px;
  background: rgba(225, 6, 0, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.benefit-icon i {
  font-size: 1.15rem;
  color: #e10600;
}

.benefit-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 10px;
  font-family: 'Inter', sans-serif;
}

.benefit-card p {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.75;
}

@media (max-width: 768px) {
  .why-choose-us { padding: 72px 24px; }
  .benefits-container { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
}

/* ============================================================
   HOME PAGE — CTA BANNER
   ============================================================ */
.hireus-container {
  background: #0a0a0a;
  padding: 120px 50px;
  text-align: center;
}

.hireus-content {
  max-width: 760px;
  margin: 0 auto;
}

.hireus-content h2 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  color: #ffffff;
  line-height: 1.12;
  margin-bottom: 20px;
}

.hireus-content h2 em {
  font-style: normal;
  color: #e10600;
}

.hireus-content p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.45);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hireus-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* legacy aliases */
.hire-btn.primary { display: inline-block; background: #e10600; color: #fff; padding: 14px 32px; border-radius: 6px; font-size: 0.9rem; font-weight: 600; letter-spacing: 0.4px; transition: background 0.2s, transform 0.15s; }
.hire-btn.primary:hover { background: #c00500; transform: translateY(-1px); }
.hire-btn.secondary { display: inline-block; border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.7); padding: 14px 32px; border-radius: 6px; font-size: 0.9rem; font-weight: 500; transition: border-color 0.2s, color 0.2s; }
.hire-btn.secondary:hover { border-color: rgba(255,255,255,0.5); color: #fff; }

@media (max-width: 768px) {
  .hireus-container { padding: 80px 24px; }
  .hireus-buttons { flex-direction: column; align-items: center; }
  .hire-btn.primary, .hire-btn.secondary { width: 100%; max-width: 320px; text-align: center; }
}

/* ============================================================
   HIRE US PAGE — EXPERIENCE SECTION
   ============================================================ */
.experience-section {
  background: #0a0a0a;
  padding: 100px 50px 120px;
  max-width: 1300px;
  margin: 0 auto;
}

.experience-header {
  text-align: center;
  margin-bottom: 72px;
}

.experience-header h1 {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  color: #ffffff;
  margin-bottom: 14px;
}

.experience-header h1 em {
  font-style: normal;
  color: #e10600;
}

.experience-header p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.42);
  max-width: 440px;
  margin: 0 auto;
  line-height: 1.7;
}

.experience-steps {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 72px;
}

.experience-step {
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 28px 30px;
  position: relative;
  overflow: hidden;
  transition: background 0.2s;
}

.experience-step:hover { background: #141414; }

.experience-step .step-accent-bar {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: #e10600;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.experience-step:hover .step-accent-bar { transform: scaleX(1); }

.step-inner {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.step-index {
  font-size: 0.68rem;
  letter-spacing: 2.5px;
  color: rgba(255, 255, 255, 0.2);
  padding-top: 2px;
  min-width: 24px;
  font-family: 'Inter', sans-serif;
}

.step-body h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
  font-family: 'Inter', sans-serif;
}

.step-body p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.7;
}

.experience-cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .experience-section { padding: 72px 24px 100px; }
  .experience-cta { flex-direction: column; align-items: center; }
  .experience-cta .btn-primary,
  .experience-cta .btn-ghost { width: 100%; max-width: 320px; text-align: center; }
}

/* ============================================================
   ABOUT US PAGE
   ============================================================ */
.about {
  background: #0a0a0a;
  min-height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 100px 50px;
}

.about__container {
  max-width: 900px;
  width: 100%;
}

.about__title {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  color: #ffffff;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.about__title em {
  font-style: normal;
  color: #e10600;
}

.about__intro {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
  line-height: 1.65;
  max-width: 700px;
}

.about__text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.85;
  margin-bottom: 16px;
  max-width: 680px;
}

.about__highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 60px;
}

.highlight {
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: 28px 24px;
  transition: border-color 0.25s, transform 0.25s;
}

.highlight:hover {
  border-color: rgba(225, 6, 0, 0.3);
  transform: translateY(-4px);
}

.highlight h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 10px;
  font-family: 'Inter', sans-serif;
}

.highlight p {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.72;
}

@media (max-width: 768px) {
  .about { padding: 72px 24px; }
  .about__highlights { grid-template-columns: 1fr; }
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact {
  background: #0a0a0a;
  padding: 100px 50px;
  min-height: 90vh;
}

.contact__container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 64px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.contact__left {
  flex: 1 1 400px;
  min-width: 300px;
}

.contact__left h1 {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.15;
}

.contact__left p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 36px;
  line-height: 1.75;
  max-width: 440px;
}

.contact__info .info-item {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact__right {
  flex: 1 1 400px;
  min-width: 320px;
  background: #f4f4f4;
  padding: 36px 32px;
  border-radius: 14px;
  border-top: 3px solid #e10600;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.contact__right form {
  display: flex;
  flex-direction: column;
}

.contact__right label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #333333;
  margin-bottom: 6px;
  letter-spacing: 0.2px;
}

.contact__right input,
.contact__right textarea {
  margin-bottom: 20px;
  padding: 12px 14px;
  border: 1px solid #e0e0e0;
  font-size: 0.93rem;
  border-radius: 7px;
  outline: none;
  background: #ffffff;
  color: #222;
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: 'Inter', sans-serif;
}

.contact__right input:focus,
.contact__right textarea:focus {
  border-color: #e10600;
  box-shadow: 0 0 0 3px rgba(225, 6, 0, 0.1);
}

.contact__right textarea {
  height: 130px;
  resize: none;
}

.contact__right button {
  background: #e10600;
  color: #ffffff;
  padding: 14px;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 7px;
  transition: background 0.2s, transform 0.15s;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.3px;
}

.contact__right button:hover {
  background: #c00500;
  transform: translateY(-1px);
}

.contact-note {
  font-size: 0.8rem;
  color: #888888;
  margin-bottom: 20px;
  margin-top: -10px;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .contact { padding: 72px 24px; }
  .contact__container { flex-direction: column; align-items: center; gap: 40px; }
  .contact__left, .contact__right { width: 100%; max-width: 520px; min-width: unset; }
  .contact__left h1 { font-size: 2rem; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer__container {
  background: #0a0a0a;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  min-height: 90px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  width: 100%;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 28px;
}

.contact-link,
.aboutus-link,
.resource-link {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.85rem;
  transition: color 0.2s;
}

.contact-link:hover,
.aboutus-link:hover,
.resource-link:hover { color: #ffffff; }

.footer-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
}

.social-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.85rem;
  transition: all 0.2s ease;
}

.social-icon:hover {
  border-color: rgba(255, 255, 255, 0.4);
  color: #ffffff;
  transform: translateY(-2px);
}

.footer-text {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.2);
  text-align: center;
  width: 100%;
  padding-top: 4px;
}

@media (max-width: 600px) {
  .footer__container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 20px;
  }
  .footer-right { gap: 10px; }
}


