/* ============================================================
   MINA NASIF — Landing Page Styles
   Colors: Navy #102649  |  Gold #F7C100
   ============================================================ */

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

:root {
  --navy:        #102649;
  --navy-dark:   #0c1e3d;
  --navy-darker: #091629;
  --navy-mid:    #132e57;
  --navy-card:   #1a3560;
  --navy-section:#0c1d3a;
  --gold:        #F7C100;
  --gold-light:  #ffd233;
  --white:       #ffffff;
  --gray:        #94a3b8;
  --gray-light:  #9fb3cc;
  --border:      rgba(255, 255, 255, 0.08);
  --border-gold: rgba(247, 193, 0, 0.2);
  --gold-bg:     rgba(247, 193, 0, 0.1);
}

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

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--navy);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

button {
  cursor: pointer;
  font-family: inherit;
  -webkit-tap-highlight-color: transparent;
}

a {
  -webkit-tap-highlight-color: transparent;
}

input, select, textarea {
  font-family: inherit;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}

/* Prevent iOS zoom on input focus */
input, select {
  font-size: 16px;
}


/* ============================================================
   NAVBAR
   ============================================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  background: rgba(16, 38, 73, 0.96);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-gold);
  transition: box-shadow 0.3s ease;
}

.nav--scrolled {
  box-shadow: 0 2px 28px rgba(0, 0, 0, 0.5);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav__logo-img {
  height: 42px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav__links a {
  color: var(--gray);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav__links a:hover {
  color: var(--gold);
}

.nav__cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  font-weight: 700 !important;
  transition: background 0.2s, transform 0.15s !important;
}

.nav__cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}

.nav__hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* Mobile nav drawer */
.nav__drawer {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: rgba(16, 38, 73, 0.98);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  padding: 1.5rem 2rem;
  gap: 1.25rem;
  border-bottom: 1px solid var(--border-gold);
  z-index: 199;
  list-style: none;
}

.nav__drawer.is-open {
  display: flex;
}

.nav__drawer a {
  color: var(--gray);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.25rem 0;
  transition: color 0.2s;
}

.nav__drawer a:hover {
  color: var(--gold);
}

.nav__drawer .nav__cta {
  display: inline-block;
  text-align: center;
  padding: 0.7rem 1.25rem;
  border-radius: 8px;
}


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

.hero {
  min-height: 100vh;
  /* iOS Safari fix — svh units */
  min-height: 100svh;
  padding: 110px 2rem 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 60%, #0e2247 100%);
  position: relative;
  overflow: hidden;
}

.hero__glow-top {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247, 193, 0, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero__glow-bottom {
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(19, 46, 87, 0.6) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  max-width: 1100px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__content {}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-bg);
  border: 1px solid var(--border-gold);
  color: var(--gold);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.hero__badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

.hero__title {
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.hero__title-highlight {
  color: var(--gold);
}

.hero__subtitle {
  font-size: 1.05rem;
  color: var(--gray-light);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero__countdown {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.hero__countdown-block {
  text-align: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  min-width: 70px;
}

.hero__countdown-num {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.hero__countdown-label {
  font-size: 0.62rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

.hero__buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__avatars {
  display: flex;
}

.hero__avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--navy);
  background: var(--navy-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--gold);
  margin-left: -8px;
}

.hero__avatar:first-child {
  margin-left: 0;
}

.hero__trust-text {
  font-size: 0.85rem;
  color: var(--gray);
}

.hero__trust-text strong {
  color: var(--white);
}


/* ============================================================
   REGISTRATION CARD (Hero right column)
   ============================================================ */

.reg-card {
  background: var(--navy-card);
  border: 1px solid var(--border-gold);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.reg-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.reg-card__subtitle {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 1.5rem;
}

.reg-card__note {
  text-align: center;
  font-size: 0.78rem;
  color: #4d6080;
  margin-top: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}


/* ============================================================
   FORMS (shared)
   ============================================================ */

.form-group {
  margin-bottom: 0.9rem;
}

.form-group__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray);
  margin-bottom: 6px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-group__input,
.form-group__select {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 0.72rem 1rem;
  color: var(--white);
  font-size: 16px; /* Prevents iOS zoom */
  outline: none;
  transition: border-color 0.2s;
}

.form-group__input::placeholder {
  color: #4d6080;
}

.form-group__input:focus,
.form-group__select:focus {
  border-color: var(--gold);
}

.form-group__select option {
  background: var(--navy-mid);
  color: var(--white);
}

/* Custom select arrow */
.form-group__select-wrap {
  position: relative;
}

.form-group__select-wrap::after {
  content: '';
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid var(--gray);
  pointer-events: none;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}


/* ============================================================
   BUTTONS (shared)
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s, border-color 0.2s, color 0.2s;
  -webkit-tap-highlight-color: transparent;
  white-space: nowrap;
}

.btn--primary {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(247, 193, 0, 0.3);
}

.btn--primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(247, 193, 0, 0.4);
}

.btn--primary:active {
  transform: translateY(0);
}

.btn--secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn--secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn--full {
  width: 100%;
}

.btn--success {
  background: #22c55e !important;
  color: var(--white) !important;
  box-shadow: none !important;
  pointer-events: none;
}

.btn__icon {
  flex-shrink: 0;
  transition: transform 0.2s;
}

.btn--primary:hover .btn__icon,
.btn--secondary:hover .btn__icon {
  transform: translateX(3px);
}


/* ============================================================
   STATS STRIP
   ============================================================ */

.stats {
  background: var(--navy-card);
  border-top: 1px solid rgba(247, 193, 0, 0.1);
  border-bottom: 1px solid rgba(247, 193, 0, 0.1);
  padding: 2.5rem 2rem;
}

.stats__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stats__item {}

.stats__num {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.stats__label {
  font-size: 0.85rem;
  color: var(--gray);
  margin-top: 6px;
}


/* ============================================================
   SHARED SECTION STYLES
   ============================================================ */

.section {
  padding: 5rem 2rem;
}

.section--dark {
  background: var(--navy-section);
}

.section--cta {
  background: linear-gradient(135deg, #0e2247 0%, var(--navy-dark) 100%);
  border-top: 1px solid rgba(247, 193, 0, 0.1);
  border-bottom: 1px solid rgba(247, 193, 0, 0.1);
}

.section__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section__tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section__title {
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section__title-highlight {
  color: var(--gold);
}

.section__subtitle {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 600px;
  line-height: 1.7;
}

.section__header {
  margin-bottom: 3rem;
}


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

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

.about__photo-wrap {
  position: relative;
}

.about__photo {
  width: 100%;
  border-radius: 16px;
  background: linear-gradient(180deg, #1a3560 0%, #0e2247 55%, var(--gold) 100%);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  border: 1px solid var(--border-gold);
  position: relative;
}

.about__photo-img {
  width: 88%;
  object-fit: contain;
  object-position: bottom;
}

.about__photo-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(16, 38, 73, 0.92);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-gold);
  border-radius: 10px;
  padding: 1rem 1.25rem;
}

.about__photo-name {
  display: block;
  font-size: 1rem;
  font-weight: 700;
}

.about__photo-role {
  font-size: 0.8rem;
  color: var(--gold);
}

.about__ctp-tag {
  position: absolute;
  top: 1.5rem;
  right: -0.75rem;
  background: var(--gold);
  color: var(--navy);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-weight: 800;
  font-size: 0.82rem;
  box-shadow: 0 4px 16px rgba(247, 193, 0, 0.35);
  z-index: 2;
}

.about__content {}

.about__text {
  color: var(--gray-light);
  line-height: 1.8;
  margin-bottom: 1.25rem;
  font-size: 0.97rem;
}

.about__exp-list {
  list-style: none;
  margin-bottom: 1.75rem;
}

.about__exp-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

.about__exp-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 8px;
  background: var(--gold-bg);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.about__exp-company {
  display: block;
  font-weight: 600;
  color: var(--white);
  font-size: 0.92rem;
}

.about__exp-period {
  color: var(--gray);
  font-size: 0.82rem;
}


/* ============================================================
   PROGRAMS / COURSES
   ============================================================ */

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

.program-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.program-card:hover {
  border-color: rgba(247, 193, 0, 0.35);
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.program-card--featured {
  border-color: rgba(247, 193, 0, 0.35);
  background: linear-gradient(145deg, #1e3a70, #162040);
}

.program-card__badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.68rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.program-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--gold-bg);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}

.program-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.program-card__desc {
  color: var(--gray);
  font-size: 0.88rem;
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1.5rem;
}

.program-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.tag {
  background: rgba(255, 255, 255, 0.06);
  color: var(--gray-light);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 500;
}

.program-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: gap 0.2s;
}

.program-card__link:hover {
  gap: 10px;
}


/* ============================================================
   CTP PASS RATE CALLOUT
   ============================================================ */

.pass-rate {
  background: linear-gradient(135deg, #0e2247 0%, #102649 50%, #0c1d3a 100%);
  border-top: 1px solid rgba(247, 193, 0, 0.15);
  border-bottom: 1px solid rgba(247, 193, 0, 0.15);
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}

/* Subtle background glow */
.pass-rate::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247, 193, 0, 0.05) 0%, transparent 65%);
  pointer-events: none;
}

.pass-rate__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1px 1fr;
  gap: 4rem;
  align-items: center;
}

.pass-rate__stat {
  text-align: center;
  flex-shrink: 0;
}

.pass-rate__number {
  font-size: clamp(5rem, 12vw, 9rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.04em;
  /* Subtle text glow */
  text-shadow: 0 0 60px rgba(247, 193, 0, 0.25);
}

.pass-rate__percent {
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 900;
  color: var(--gold);
  vertical-align: top;
  margin-top: 0.3em;
  display: inline-block;
}

.pass-rate__stat-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 0.5rem;
}

.pass-rate__divider {
  width: 1px;
  height: 200px;
  background: linear-gradient(to bottom, transparent, rgba(247, 193, 0, 0.3), transparent);
  flex-shrink: 0;
}

.pass-rate__content {}

.pass-rate__title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.pass-rate__title-highlight {
  color: var(--gold);
}

.pass-rate__text {
  color: var(--gray-light);
  font-size: 0.97rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.pass-rate__text strong {
  color: var(--white);
  font-weight: 700;
}

.pass-rate__compare {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.75rem 0;
  flex-wrap: wrap;
}

.pass-rate__compare-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  text-align: center;
  flex: 1;
  min-width: 110px;
}

.pass-rate__compare-item--highlight {
  border-color: rgba(247, 193, 0, 0.2);
  background: rgba(247, 193, 0, 0.05);
}

.pass-rate__compare-item--gold {
  border-color: rgba(247, 193, 0, 0.45);
  background: rgba(247, 193, 0, 0.1);
  box-shadow: 0 0 24px rgba(247, 193, 0, 0.1);
}

.pass-rate__compare-num {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.pass-rate__compare-item--highlight .pass-rate__compare-num,
.pass-rate__compare-item--gold .pass-rate__compare-num {
  color: var(--gold);
}

.pass-rate__compare-label {
  font-size: 0.75rem;
  color: var(--gray);
  line-height: 1.4;
}

.pass-rate__compare-label strong {
  color: var(--white);
}

.pass-rate__compare-arrow {
  font-size: 1.25rem;
  color: rgba(247, 193, 0, 0.4);
  flex-shrink: 0;
}

.pass-rate__content .btn {
  margin-top: 0.5rem;
}

@media (max-width: 900px) {
  .pass-rate__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .pass-rate__divider {
    display: none;
  }

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

@media (max-width: 480px) {
  .pass-rate__compare {
    flex-direction: column;
    align-items: stretch;
  }

  .pass-rate__compare-arrow {
    text-align: center;
    transform: rotate(90deg);
    align-self: center;
  }

  .pass-rate__compare-item {
    min-width: unset;
  }
}


/* ============================================================
   WHY CHOOSE
   ============================================================ */

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

.why-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.75rem;
  transition: border-color 0.3s;
}

.why-card:hover {
  border-color: rgba(247, 193, 0, 0.3);
}

.why-card__num {
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(247, 193, 0, 0.14);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.why-card__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.why-card__desc {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.7;
}


/* ============================================================
   CERTIFICATIONS
   ============================================================ */

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

.cert-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem;
  text-align: center;
  transition: border-color 0.3s, transform 0.2s;
}

.cert-card:hover {
  border-color: rgba(247, 193, 0, 0.3);
  transform: translateY(-3px);
}

.cert-card__icon {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.cert-card__name {
  font-size: 0.84rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.cert-card__org {
  font-size: 0.74rem;
  color: var(--gray);
}


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

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

.test-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
}

.test-card__stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.test-card__quote {
  font-size: 0.9rem;
  color: var(--gray-light);
  line-height: 1.75;
  margin-bottom: 1.25rem;
  font-style: italic;
  flex: 1;
}

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

.test-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold-bg);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--gold);
  flex-shrink: 0;
}

.test-card__name {
  font-weight: 600;
  font-size: 0.88rem;
}

.test-card__role {
  font-size: 0.78rem;
  color: var(--gray);
}


/* ============================================================
   BOTTOM CTA SECTION
   ============================================================ */

.cta-section__inner {
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
}

.cta-section__desc {
  color: var(--gray);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.cta-form-card {
  background: var(--navy-card);
  border: 1px solid var(--border-gold);
  border-radius: 16px;
  padding: 2.5rem;
  text-align: left;
}


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

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

.contact__info {}

.contact__details {
  list-style: none;
  margin-top: 1.5rem;
}

.contact__details-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

.contact__form-wrap {}

.form-group__textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.6;
}

/* Form feedback messages */
.form-feedback {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  display: none;
}

.form-feedback.is-success {
  display: block;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #4ade80;
}

.form-feedback.is-error {
  display: block;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #f87171;
}

@media (max-width: 768px) {
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}


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

.footer {
  background: var(--navy-darker);
  padding: 3rem 2rem 2rem;
  border-top: 1px solid var(--border);
}

.footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}

.footer__brand-desc {
  color: var(--gray);
  font-size: 0.88rem;
  line-height: 1.75;
  margin: 1rem 0 1.25rem;
  max-width: 300px;
}

.footer__social {
  display: flex;
  gap: 0.75rem;
}

.footer__social-link {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  text-decoration: none;
  font-size: 0.82rem;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.footer__social-link:hover {
  background: var(--gold-bg);
  color: var(--gold);
  border-color: var(--border-gold);
}

.footer__col-title {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer__col-list {
  list-style: none;
}

.footer__col-list li {
  margin-bottom: 0.6rem;
}

.footer__col-list a {
  color: var(--gray);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}

.footer__col-list a:hover {
  color: var(--gold);
}

.footer__bottom {
  max-width: 1100px;
  margin: 2rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: #3d5470;
  flex-wrap: wrap;
  gap: 0.75rem;
}


/* ============================================================
   SCROLL REVEAL ANIMATION
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}


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

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


/* ============================================================
   RESPONSIVE — TABLET  (max 1024px)
   ============================================================ */

@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }

  .reg-card {
    display: none; /* Hidden on mobile — use bottom CTA form */
  }

  .hero__subtitle {
    max-width: 100%;
  }

  .programs__grid {
    grid-template-columns: 1fr 1fr;
  }

  .certs__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }
}


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

@media (max-width: 768px) {
  .nav__links {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .section {
    padding: 3.5rem 1.25rem;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about__ctp-tag {
    right: 0;
  }

  .programs__grid {
    grid-template-columns: 1fr;
  }

  .why__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .certs__grid {
    grid-template-columns: 1fr 1fr;
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
  }

  .stats__inner {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .cta-form-card {
    padding: 1.5rem;
  }
}


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

@media (max-width: 480px) {
  .hero {
    padding: 100px 1.25rem 60px;
  }

  .hero__countdown {
    gap: 0.5rem;
  }

  .hero__countdown-block {
    min-width: 60px;
    padding: 0.6rem 0.75rem;
  }

  .hero__countdown-num {
    font-size: 1.4rem;
  }

  .hero__buttons {
    flex-direction: column;
  }

  .hero__buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .why__grid {
    grid-template-columns: 1fr;
  }

  .nav {
    padding: 0 1.25rem;
  }

  .stats__num {
    font-size: 2rem;
  }
}
