/* ==========================================================================
   Professional Degree Council — Landing Page Styles
   Palette sampled from crest logo: navy #0B2249, gold #C6A04E
   ========================================================================== */

:root {
  --navy: #0B2249;
  --navy-dark: #071733;
  --navy-light: #16305e;
  --gold: #C6A04E;
  --gold-light: #E3C989;
  --gold-dark: #A9822F;
  --white: #FFFFFF;
  --off-white: #F7F8FA;
  --grey-100: #EEF0F3;
  --grey-300: #D7DCE3;
  --grey-600: #5B6472;
  --text-dark: #1B2430;
  --success: #1E8E5A;
  --error: #C0392B;

  --radius: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 2px 8px rgba(11, 34, 73, 0.08);
  --shadow-md: 0 8px 24px rgba(11, 34, 73, 0.14);
  --shadow-lg: 0 16px 48px rgba(11, 34, 73, 0.20);
  --transition: 0.25s ease;
  --max-width: 1180px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }

button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 64px 0;
}

.section-title {
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 800;
  color: var(--navy);
  text-align: center;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  text-align: center;
  color: var(--grey-600);
  font-size: 16px;
  max-width: 620px;
  margin: 0 auto 40px;
}

.eyebrow {
  display: inline-block;
  color: var(--gold-dark);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

/* ---------- Reveal-on-scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--navy);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  gap: 12px;
}

.brand {
  display: flex;
  align-items: center;
  min-width: 0;
}

/* The logo artwork is transparent and coloured (gold/white) for use directly
   on the navy header/footer — no background chip needed behind it. */
.brand-logo {
  display: block;
  height: 68px;
  width: auto;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.header-nav a {
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  opacity: 0.82;
  white-space: nowrap;
  transition: opacity var(--transition), color var(--transition);
}
.header-nav a:hover {
  opacity: 1;
  color: var(--gold-light);
}

.btn.header-cta-btn {
  width: auto;
  padding: 10px 20px;
  font-size: 14px;
  white-space: nowrap;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .header-nav { display: none; }
}

@media (max-width: 640px) {
  .brand-logo { height: 48px; }
  .header-cta-btn { padding: 8px 14px; font-size: 13px; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background-image:
    linear-gradient(135deg, rgba(7,23,51,0.86) 0%, rgba(11,34,73,0.82) 45%, rgba(11,34,73,0.68) 100%),
    url("assets/hero-campus.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white);
  padding: 64px 0 80px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 80% 20%, rgba(198,160,78,0.18), transparent 55%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-copy .eyebrow { color: var(--gold-light); }

.hero h1,
.hero p.lead {
  text-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

.hero h1 {
  font-size: clamp(28px, 4.2vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.hero h1 .highlight {
  color: var(--gold-light);
}

.hero p.lead {
  font-size: clamp(15px, 2vw, 18px);
  color: #C9D3E4;
  max-width: 520px;
  margin-bottom: 20px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-bottom: 8px;
}

.hero-points li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--white);
}

.hero-points svg { color: var(--gold); flex-shrink: 0; width: 16px; height: 16px; }

/* ---------- Lead Form Card ---------- */
.form-card {
  background: var(--white);
  color: var(--text-dark);
  border-radius: var(--radius-lg);
  padding: 20px 20px 18px;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.form-card-header { margin-bottom: 12px; }

.form-card-header h2 {
  color: var(--navy);
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 3px;
}

.form-card-header p {
  color: var(--grey-600);
  font-size: 13px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}

.form-grid .full { grid-column: 1 / -1; }

.field {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.field label {
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
}

.field input,
.field select {
  width: 100%;
  border: 1.5px solid var(--grey-300);
  border-radius: 7px;
  padding: 8px 12px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text-dark);
  background: var(--off-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}

.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235B6472' stroke-width='1.6' fill='none' fill-rule='evenodd'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 30px;
}

.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--gold-dark);
  box-shadow: 0 0 0 3px rgba(198, 160, 78, 0.18);
  background: var(--white);
}

.field.has-error input,
.field.has-error select {
  border-color: var(--error);
}

.field-error {
  font-size: 11px;
  color: var(--error);
  min-height: 12px;
  line-height: 1.3;
}

.phone-field {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 8px;
}

/* ---------- Searchable country combobox (Nationality field) ---------- */
/* The visible text input inherits the standard .field input styling
   automatically (descendant selector) — only positioning/listbox styles
   are needed here. */
.combobox { position: relative; }

.combobox-list {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  max-height: 220px;
  overflow-y: auto;
  background: var(--white);
  border: 1px solid var(--grey-300);
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  z-index: 30;
  list-style: none;
  padding: 4px;
  margin: 0;
}

.combobox-option {
  padding: 8px 10px;
  border-radius: 6px;
  font-size: 13.5px;
  color: var(--text-dark);
  cursor: pointer;
}
.combobox-option.is-active,
.combobox-option:hover {
  background: var(--gold-light);
}

/* honeypot: hidden from real users, present in DOM for bots */
.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  pointer-events: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 15px;
  border-radius: 8px;
  padding: 12px 20px;
  transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 60%, var(--gold-dark));
  color: var(--navy-dark);
  width: 100%;
  box-shadow: 0 6px 18px rgba(198, 160, 78, 0.35);
}

.btn-gold:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(198, 160, 78, 0.45);
}

.btn-gold:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.btn-outline-white {
  border: 1.5px solid rgba(255,255,255,0.6);
  color: var(--white);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); }

.spinner {
  width: 16px;
  height: 16px;
  border: 2.5px solid rgba(11,34,73,0.25);
  border-top-color: var(--navy-dark);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: none;
}
.btn.is-loading .spinner { display: inline-block; }
.btn.is-loading .btn-label { display: none; }

@keyframes spin { to { transform: rotate(360deg); } }

.secure-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12px;
  color: var(--grey-600);
  margin-top: 8px;
}

.form-status {
  margin-top: 10px;
  font-size: 13.5px;
  border-radius: 8px;
  padding: 10px 12px;
  display: none;
}
.form-status.error {
  display: block;
  background: #FBEAE8;
  color: var(--error);
}

/* ---------- Trust bar ---------- */
.trust-bar {
  background: var(--off-white);
  border-bottom: 1px solid var(--grey-100);
  padding: 22px 0;
}
.trust-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 32px;
  list-style: none;
}
.trust-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy);
}
.trust-list svg { color: var(--gold-dark); width: 18px; height: 18px; flex-shrink: 0; }

/* ---------- Benefit cards ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.card {
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius);
  padding: 26px 20px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.card-icon svg { width: 24px; height: 24px; }

.card h3 {
  font-size: 16.5px;
  color: var(--navy);
  margin-bottom: 8px;
  font-weight: 700;
}
.card p { font-size: 14px; color: var(--grey-600); }

/* ---------- Programs ---------- */
.programs-section { background: var(--off-white); }

.program-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey-100);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.program-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.program-card .badge {
  position: absolute;
  top: -10px;
  right: 14px;
  background: var(--gold);
  color: var(--navy-dark);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.program-card .level {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 8px;
}
.program-card h3 { color: var(--navy); font-size: 18px; margin-bottom: 8px; font-weight: 800; }
.program-card p { font-size: 13.5px; color: var(--grey-600); }

/* ---------- How it works ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
}

.step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-light);
  font-weight: 800;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: var(--shadow-md);
}

.step h3 { color: var(--navy); font-size: 17px; margin-bottom: 6px; font-weight: 700; }
.step p { font-size: 14px; color: var(--grey-600); }

/* ---------- Testimonials ---------- */
.testimonials-section { background: var(--off-white); }

/* ---------- Testimonial slider (shows 3 cards at a time, slides 1 at a time) ---------- */
.testimonial-slider {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
}

.testimonial-viewport {
  overflow: hidden;
  border-radius: var(--radius);
}

.testimonial-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
}

.testimonial-slide {
  flex: 0 0 calc((100% - 40px) / 3); /* 3 cards per view, 2 gaps of 20px */
  min-width: 0;
}

.testimonial-slide .testimonial-card { height: 100%; }

@media (max-width: 900px) {
  .testimonial-slide { flex: 0 0 calc((100% - 20px) / 2); } /* 2 cards per view */
}

@media (max-width: 600px) {
  .testimonial-slide { flex: 0 0 100%; } /* 1 card per view */
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  color: var(--navy);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background var(--transition), transform var(--transition);
}
.slider-arrow:hover { background: var(--gold-light); }
.slider-arrow-prev { left: -14px; }
.slider-arrow-next { right: -14px; }

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--grey-300);
  transition: background var(--transition), transform var(--transition);
}
.dot.is-active { background: var(--gold-dark); transform: scale(1.25); }

.testimonial-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey-100);
}

.testimonial-card .quote { flex: 1; }

.stars { color: var(--gold-dark); margin-bottom: 10px; font-size: 14px; letter-spacing: 2px; }

.testimonial-card p.quote {
  font-size: 14px;
  color: var(--text-dark);
  margin-bottom: 14px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.testimonial-name { font-size: 13.5px; font-weight: 700; color: var(--navy); }
.testimonial-role { font-size: 12px; color: var(--grey-600); }

.testimonial-note {
  text-align: center;
  font-size: 12px;
  color: var(--grey-600);
  margin-top: 18px;
  opacity: 0.8;
}

/* ---------- Final CTA ---------- */
.final-cta {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  color: var(--white);
  text-align: center;
  padding: 64px 0;
}

.final-cta h2 {
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 800;
  margin-bottom: 12px;
}

.final-cta p {
  color: #C9D3E4;
  max-width: 520px;
  margin: 0 auto 26px;
}

.final-cta .btn-gold {
  width: auto;
  padding: 16px 34px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-dark);
  color: #B9C2D4;
  /* extra bottom padding keeps the fixed bottom-cta button from covering the copyright line */
  padding: 48px 0 132px;
  font-size: 13.5px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 24px;
}

.footer-col-brand { max-width: 280px; }
.footer-col-brand .brand-logo { height: 46px; }

.footer-tagline {
  font-size: 13px;
  color: #B9C2D4;
  line-height: 1.6;
  margin-top: 16px;
}

.footer-heading {
  color: var(--gold-light);
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-links li { font-size: 13.5px; }
.footer-links a { color: #B9C2D4; }
.footer-links a:hover { color: var(--gold-light); }

.footer-disclaimer {
  font-size: 12px;
  color: #8895AC;
  max-width: 720px;
  margin: 0 auto 14px;
  text-align: center;
  line-height: 1.6;
}

.footer-bottom {
  text-align: center;
  font-size: 12px;
  color: #7C89A3;
}

@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-col-brand { grid-column: 1 / -1; max-width: none; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .site-footer { padding-bottom: 120px; }
}

/* ---------- Lead form popup (modal) ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(7, 23, 51, 0.62);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 2000;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.modal-overlay[hidden] { display: none; }
.modal-overlay.is-open { opacity: 1; }

.modal-dialog {
  position: relative;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: var(--radius-lg);
  transform: translateY(16px) scale(0.98);
  transition: transform 0.25s ease;
}
.modal-overlay.is-open .modal-dialog { transform: translateY(0) scale(1); }

.modal-form-card { box-shadow: var(--shadow-lg); }

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--grey-100);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: background var(--transition);
}
.modal-close:hover { background: var(--grey-300); }

body.modal-open { overflow: hidden; }

/* ---------- Right-side fixed tab button ---------- */
.side-tab {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 60%, var(--gold-dark));
  color: var(--navy-dark);
  padding: 16px 10px;
  border-radius: 12px 0 0 12px;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
}
.side-tab:hover {
  transform: translateY(-50%) translateX(-4px);
  box-shadow: var(--shadow-lg);
}
.side-tab-label {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

/* ---------- Bottom fixed animated CTA button ---------- */
.bottom-cta {
  position: fixed;
  bottom: max(18px, env(safe-area-inset-bottom));
  left: 50%;
  transform: translateX(-50%);
  z-index: 950;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 55%, var(--gold-dark));
  color: var(--navy-dark);
  font-weight: 800;
  font-size: 14.5px;
  padding: 14px 22px;
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(198, 160, 78, 0.45);
  animation: bottom-cta-pulse 2.6s ease-in-out infinite;
  white-space: nowrap;
}
.bottom-cta:hover {
  transform: translateX(-50%) translateY(-3px);
}

@keyframes bottom-cta-pulse {
  0%, 100% { box-shadow: 0 10px 28px rgba(198,160,78,0.45), 0 0 0 0 rgba(198,160,78,0.45); }
  50% { box-shadow: 0 10px 28px rgba(198,160,78,0.45), 0 0 0 10px rgba(198,160,78,0); }
}

@media (prefers-reduced-motion: reduce) {
  .bottom-cta { animation: none; }
}

/* ---------- Trust marquee ---------- */
.marquee-section {
  background: var(--off-white);
  border-top: 1px solid var(--grey-100);
  border-bottom: 1px solid var(--grey-100);
  padding: 18px 0;
  overflow: hidden;
}
.marquee { width: 100%; overflow: hidden; }
.marquee-track {
  display: flex;
  align-items: center;
  gap: 48px;
  width: max-content;
  animation: marquee-scroll 26s linear infinite;
}
.marquee-section:hover .marquee-track { animation-play-state: paused; }

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
  opacity: 0.85;
}
.marquee-item svg { color: var(--gold-dark); flex-shrink: 0; }

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 640px) {
  .side-tab { padding: 12px 7px; }
  .side-tab-label { font-size: 12px; }
  .side-tab svg { width: 15px; height: 15px; }
  .bottom-cta { font-size: 13.5px; padding: 12px 18px; }
  .slider-arrow-prev { left: 2px; }
  .slider-arrow-next { right: 2px; }
}

@media (max-width: 700px) {
  .form-grid { grid-template-columns: 1fr; }
  .phone-field { grid-template-columns: 100px 1fr; }
  .section { padding: 44px 0; }
}

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

/* ---------- Thank-you page (thank-you.html) ---------- */
.ty-hero {
  background:
    linear-gradient(135deg, rgba(7,23,51,0.92) 0%, rgba(11,34,73,0.9) 60%, rgba(11,34,73,0.85) 100%),
    url("assets/hero-campus.jpg");
  background-size: cover;
  background-position: center;
  color: var(--white);
  text-align: center;
  padding: 76px 0 96px;
}

.ty-icon {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: rgba(198, 160, 78, 0.15);
  border: 2px solid var(--gold);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  animation: ty-pop 0.5s ease;
}

@keyframes ty-pop {
  0% { transform: scale(0.6); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.ty-hero .eyebrow { color: var(--gold-light); }

.ty-hero h1 {
  font-size: clamp(26px, 4.4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 8px 0 16px;
}

.ty-lead {
  color: #C9D3E4;
  max-width: 560px;
  margin: 0 auto;
  font-size: 16px;
}

.ty-next-steps { background: var(--off-white); }

.ty-contact-card {
  max-width: 420px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 30px 26px;
  text-align: center;
}

.ty-contact-card p {
  color: var(--grey-600);
  font-size: 14px;
  margin-bottom: 16px;
}

.ty-contact-card .btn-gold {
  width: auto;
  padding: 13px 28px;
  margin-bottom: 14px;
}

.ty-contact-card .ty-email {
  display: block;
  font-size: 13.5px;
  color: var(--navy);
  font-weight: 600;
}
.ty-contact-card .ty-email:hover { color: var(--gold-dark); }

.ty-back-link {
  display: inline-block;
  margin-top: 32px;
  color: var(--navy);
  font-weight: 600;
  font-size: 14px;
}
.ty-back-link:hover { color: var(--gold-dark); }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal { transition: none; opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
  .ty-icon { animation: none; }
}
