/* ===========================
   Step2Job — style.css
   Font: Montserrat (Google Fonts)
   Primary: #0080FE
   =========================== */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #FFFFFF;
  color: #111827;
  overflow-x: hidden;
  line-height: 1.7;
}

/* ---- Navigation ---- */
.nav-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 72px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: all 0.3s ease;
}

.nav-fixed > div {
  height: 100%;
}

.nav-fixed.scrolled {
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.06);
}

/* ---- Logo ---- */
.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo img {
  display: block;
  height: 32px !important;
  width: auto !important;
  max-height: 32px;
  object-fit: contain;
}

/* ---- Hero Layout ---- */
.hero-content {
  max-width: 1200px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-subtext {
  max-width: 720px;
}

#hero h1 {
  letter-spacing: -0.02em;
  text-align: center;
}

#hero h1 br {
  display: block;
  content: "";
}

/* ---- Buttons ---- */
.btn-primary {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px;
  background: #0080FE;
  color: #FFFFFF;
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: 0.625rem;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9375rem;
  white-space: nowrap;
}

.btn-primary:hover {
  background: #0066CC;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 128, 254, 0.25);
}

.btn-primary svg,
.btn-outline svg {
  flex-shrink: 0 !important;
  min-width: 20px;
  width: 20px;
  height: 20px;
  display: block;
  pointer-events: none;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: transparent;
  color: #111827;
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: 0.625rem;
  border: 1px solid #E8ECF0;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9375rem;
}

.btn-outline:hover {
  border-color: #0080FE;
  color: #0080FE;
}

/* ---- Cards ---- */
.card {
  background: #FFFFFF;
  border: 1px solid #E8ECF0;
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s ease;
}

.card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 128, 254, 0.2);
}

/* ---- Accordion ---- */
.accordion-item {
  border-bottom: 1px solid #E8ECF0;
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
  text-align: left;
  line-height: 1.5;
}

.accordion-trigger:hover {
  color: #0080FE;
}

.accordion-icon {
  width: 20px;
  height: 20px;
  min-width: 20px;
  flex-shrink: 0;
  margin-left: 1rem;
  transition: transform 0.3s ease;
  color: #8896A6;
  display: block;
}

.accordion-trigger[aria-expanded="true"] .accordion-icon {
  transform: rotate(180deg);
  color: #0080FE;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.accordion-content.open {
  max-height: 600px;
}

.accordion-inner {
  padding-bottom: 1.5rem;
}

/* ---- Read More ---- */
.read-more-content {
  display: none;
}

.read-more-content.open {
  display: block;
}

.read-more-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: #0080FE;
  font-weight: 600;
  font-size: 0.875rem;
  font-family: 'Montserrat', sans-serif;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  transition: opacity 0.2s;
}

.read-more-btn svg {
  flex-shrink: 0;
  display: block;
  transition: transform 0.3s ease;
}

.read-more-btn:hover {
  opacity: 0.7;
}

/* ---- Section Label ---- */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0080FE;
  margin-bottom: 0.75rem;
}

/* ---- Mobile Menu ---- */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 80%;
  max-width: 320px;
  background: #FFFFFF;
  border-left: 1px solid #E8ECF0;
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  padding: 5rem 2rem 2rem;
}

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

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 150;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

/* ---- Fade In Animation ---- */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Stat Counter ---- */
.stat-value {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
  color: #0080FE;
}

/* ---- Footer ---- */
.footer-link {
  color: #5A6578;
  text-decoration: none;
  transition: color 0.2s;
  font-size: 0.875rem;
}

.footer-link:hover {
  color: #0080FE;
}

/* ---- Icon Circle ---- */
.icon-circle {
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  border-radius: 12px;
  background: #EFF6FF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-circle svg {
  display: block;
  flex-shrink: 0;
}

/* ---- Step Number ---- */
.step-num {
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  border-radius: 50%;
  background: #EFF6FF;
  border: 2px solid #0080FE;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #0080FE;
  font-size: 0.875rem;
  flex-shrink: 0;
  line-height: 1;
}
