/* ============================================
   VEDERE UNIVERSITY — LANDING PAGE STYLES
   Brand: #055046 teal, #A9945B gold, #924F58 rose
   Fonts: Raleway (headings), Inter (body)
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', 'Barlow', sans-serif;
  color: #212121;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* --- Utility --- */
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.gold { color: #A9945B; }
.light { color: #fff; }
.dot { margin: 0 8px; opacity: 0.5; }
.req { color: #924F58; }

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 6px;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  text-align: center;
}
.btn-gold { background: #A9945B; color: #fff; border-color: #A9945B; }
.btn-gold:hover { background: #917e4c; border-color: #917e4c; }
.btn-teal { background: #055046; color: #fff; border-color: #055046; }
.btn-teal:hover { background: #044038; border-color: #044038; }
.btn-outline { border-color: #A9945B; color: #A9945B; background: transparent; }
.btn-outline:hover { background: #A9945B; color: #fff; }
.btn-outline-light { border-color: rgba(255,255,255,0.5); color: #fff; background: transparent; }
.btn-outline-light:hover { border-color: #fff; background: rgba(255,255,255,0.1); }
.btn-nav { padding: 10px 24px; font-size: 0.9rem; }
.btn-lg { padding: 18px 40px; font-size: 1.1rem; }
.btn-block { width: 100%; }

/* --- Header --- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(5, 80, 70, 0.95);
  backdrop-filter: blur(8px);
  padding: 12px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo { height: 42px; width: auto; }
.header-nav { display: flex; align-items: center; gap: 28px; }
.header-nav a { color: rgba(255,255,255,0.85); font-size: 0.95rem; font-weight: 500; transition: color 0.2s; }
.header-nav a:hover { color: #A9945B; }
.mobile-menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.mobile-menu-toggle span {
  display: block; width: 24px; height: 2px; background: #fff;
  margin: 5px 0; transition: 0.3s;
}

/* --- Hero --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 120px 24px 80px;
  text-align: center;
  color: #fff;
}
.hero-content { max-width: 800px; }
.hero-badge {
  display: inline-block;
  background: rgba(169,148,91,0.2);
  border: 1px solid #A9945B;
  color: #A9945B;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}
.hero h1 {
  font-family: 'Raleway', sans-serif;
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 1.2rem;
  line-height: 1.7;
  opacity: 0.92;
  margin-bottom: 32px;
}
.hero-cta { margin-bottom: 32px; }
.hero-deadline {
  display: block;
  margin-top: 16px;
  font-size: 1rem;
  color: #A9945B;
  font-weight: 600;
}
.hero-trust {
  font-size: 0.9rem;
  opacity: 0.75;
}

/* --- Urgency Bar --- */
.urgency-bar {
  background: #212121;
  color: #fff;
  text-align: center;
  padding: 14px 0;
  font-size: 0.95rem;
}

/* --- Sections --- */
.section { padding: 80px 0; }
.section-white { background: #fff; }
.section-dark { background: #055046; }
.section-light { background: #f5f6f5; }
.section-teal { background: #055046; }
.section-gold { background: #A9945B; color: #fff; text-align: center; }
.section-title {
  font-family: 'Raleway', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
}
.section-intro {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
  font-size: 1.1rem;
  opacity: 0.85;
}

/* --- Value Cards --- */
.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.value-card {
  background: #f5f6f5;
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
}
.value-icon { font-size: 2.5rem; margin-bottom: 16px; }
.value-card h3 {
  font-family: 'Raleway', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #055046;
}
.value-card p { font-size: 0.95rem; opacity: 0.8; }

/* --- Program Cards --- */
.programs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.program-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
}
.program-img {
  height: 200px;
  background-size: cover;
  background-position: center;
}
.program-body { padding: 28px; }
.program-body h3 {
  font-family: 'Raleway', sans-serif;
  font-size: 1.25rem;
  color: #055046;
  margin-bottom: 12px;
}
.program-body p { font-size: 0.95rem; margin-bottom: 16px; opacity: 0.8; }
.program-highlights { margin-bottom: 20px; }
.program-highlights li {
  padding: 6px 0 6px 20px;
  position: relative;
  font-size: 0.9rem;
}
.program-highlights li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: #A9945B;
  font-weight: 700;
}

/* --- Curriculum --- */
.curriculum-stages { max-width: 700px; margin: 0 auto; }
.stage { margin-bottom: 32px; }
.stage-label {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: #055046;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid #A9945B;
}
.stage-courses { display: flex; flex-direction: column; gap: 8px; }
.course {
  background: #f5f6f5;
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 0.95rem;
  border-left: 3px solid #055046;
}
.course.highlight-genai { border-left-color: #A9945B; background: #faf6ee; }
.course.highlight-ml { border-left-color: #924F58; background: #faf0f1; }

/* --- Faculty --- */
.faculty-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}
.faculty-card { padding: 24px; }
.faculty-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  border: 3px solid #A9945B;
}
.faculty-card h4 {
  font-family: 'Raleway', sans-serif;
  font-size: 1.05rem;
  margin-bottom: 4px;
}
.faculty-role {
  color: #A9945B;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.faculty-card p:last-child { font-size: 0.9rem; opacity: 0.75; }

/* --- Form --- */
.form-container { max-width: 620px; margin: 0 auto; }
.form-wrapper {
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  color: #212121;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

/* Progress indicator */
.form-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
}
.progress-step {
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.4;
  transition: opacity 0.3s;
}
.progress-step.active { opacity: 1; }
.step-number {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: #055046;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}
.progress-step.active .step-number { background: #A9945B; }
.step-label { font-weight: 600; font-size: 0.9rem; }
.progress-line {
  width: 60px; height: 2px;
  background: #ddd;
  margin: 0 16px;
}

/* Form elements */
.form-step { display: none; }
.form-step.active { display: block; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: #333;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #ddd;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  transition: border-color 0.2s;
  background: #fafafa;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #A9945B;
  background: #fff;
}
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #924F58;
}
.form-error {
  color: #924F58;
  font-size: 0.8rem;
  margin-top: 4px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-actions {
  display: flex;
  gap: 12px;
  justify-content: space-between;
}
.form-actions .btn { flex: 1; }

/* Honeypot (invisible to humans) */
.form-field-hp {
  position: absolute;
  left: -9999px;
  top: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

/* Success */
.success-msg { text-align: center; padding: 32px 0; }
.success-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: #055046;
  color: #fff;
  font-size: 2rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.success-msg h3 {
  font-family: 'Raleway', sans-serif;
  font-size: 1.5rem;
  color: #055046;
  margin-bottom: 12px;
}
.success-small { font-size: 0.85rem; opacity: 0.6; margin-top: 12px; }

/* --- Final CTA --- */
.cta-final h2 {
  font-family: 'Raleway', sans-serif;
  font-size: 2rem;
  margin-bottom: 16px;
}
.cta-final p { max-width: 600px; margin: 0 auto 28px; font-size: 1.1rem; opacity: 0.9; }

/* --- Footer --- */
.site-footer {
  background: #1a1a1a;
  color: rgba(255,255,255,0.7);
  padding: 60px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-logo { height: 36px; margin-bottom: 12px; filter: brightness(10); }
.footer-tagline { font-size: 0.9rem; }
.footer-links h4 {
  color: #A9945B;
  font-family: 'Raleway', sans-serif;
  margin-bottom: 12px;
  font-size: 0.95rem;
}
.footer-links a {
  display: block;
  font-size: 0.9rem;
  padding: 4px 0;
  transition: color 0.2s;
}
.footer-links a:hover { color: #A9945B; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  font-size: 0.8rem;
  text-align: center;
  opacity: 0.5;
}
.footer-bottom p { margin-bottom: 4px; }

/* --- Responsive --- */
@media (max-width: 900px) {
  .hero h1 { font-size: 2.4rem; }
  .value-grid { grid-template-columns: 1fr 1fr; }
  .programs-grid { grid-template-columns: 1fr; }
  .faculty-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 640px) {
  .hero h1 { font-size: 1.9rem; }
  .hero-sub { font-size: 1rem; }
  .section-title { font-size: 1.7rem; }
  .value-grid { grid-template-columns: 1fr; }
  .form-wrapper { padding: 24px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .header-nav { display: none; }
  .header-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(5, 80, 70, 0.98);
    padding: 20px;
    gap: 16px;
  }
  .mobile-menu-toggle { display: block; }
  .hero-trust { display: flex; flex-direction: column; gap: 4px; }
  .hero-trust .dot { display: none; }
}
