/* ============================================================
   SC Technological Institute - Production Stylesheet
   Brand: Dark navy + teal accent + gold highlights
   Fonts: Inter (body), Playfair Display (headings)
   ============================================================ */

/* --- CSS Custom Properties --------------------------------- */
:root {
  --color-navy:        #0d1b2a;
  --color-navy-light:  #1b2d44;
  --color-navy-dark:   #060f1a;
  --color-teal:        #0097a7;
  --color-teal-dark:   #00838f;
  --color-teal-light:  #26c6da;
  --color-gold:        #d4a843;
  --color-gold-dark:   #b8922e;
  --color-gold-light:  #e4c36a;
  --color-green:       #2e7d32;
  --color-green-light: #4caf50;
  --color-white:       #ffffff;
  --color-off-white:   #f5f7fa;
  --color-light-gray:  #e8ecf1;
  --color-mid-gray:    #8a94a6;
  --color-dark-gray:   #3d4f5f;
  --color-text:        #2c3e50;
  --color-text-light:  #5a6c7d;
  --color-danger:      #c0392b;
  --color-success:     #27ae60;

  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;

  --shadow-sm:  0 1px 3px rgba(0,0,0,.08);
  --shadow-md:  0 4px 12px rgba(0,0,0,.1);
  --shadow-lg:  0 8px 30px rgba(0,0,0,.15);
  --shadow-xl:  0 16px 48px rgba(0,0,0,.2);

  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  12px;
  --radius-xl:  20px;
  --radius-full: 9999px;

  --transition-fast:   .2s ease;
  --transition-base:   .3s ease;
  --transition-slow:   .5s ease;

  --nav-height:  72px;
  --container-max: 1200px;
  --container-wide: 1400px;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--color-teal);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-teal-dark);
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-navy);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1rem;
}

::selection {
  background: var(--color-teal);
  color: var(--color-white);
}

/* --- Utility Classes --------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-wide {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding {
  padding: 5rem 0;
}

.section-padding-sm {
  padding: 3rem 0;
}

.section-padding-lg {
  padding: 7rem 0;
}

.bg-navy    { background-color: var(--color-navy); color: var(--color-white); }
.bg-white   { background-color: var(--color-white); }
.bg-off-white { background-color: var(--color-off-white); }
.bg-teal    { background-color: var(--color-teal); color: var(--color-white); }
.bg-gold    { background-color: var(--color-gold); color: var(--color-navy); }

.text-center  { text-align: center; }
.text-left    { text-align: left; }
.text-right   { text-align: right; }
.text-white   { color: var(--color-white); }
.text-navy    { color: var(--color-navy); }
.text-teal    { color: var(--color-teal); }
.text-gold    { color: var(--color-gold); }
.text-muted   { color: var(--color-text-light); }

.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: .5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.gap-4 { gap: 2rem; }

.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: .5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.hidden { display: none !important; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* --- Section Headers --------------------------------------- */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  position: relative;
  display: inline-block;
  padding-bottom: .75rem;
  margin-bottom: .75rem;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-teal), var(--color-gold));
  border-radius: 2px;
}

.section-header p {
  max-width: 640px;
  margin: 0 auto;
  color: var(--color-text-light);
  font-size: 1.1rem;
}

/* --- Buttons ----------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  line-height: 1.4;
  white-space: nowrap;
}

.btn:focus-visible {
  outline: 3px solid var(--color-teal-light);
  outline-offset: 2px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-teal), var(--color-teal-dark));
  color: var(--color-white);
  border-color: var(--color-teal);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--color-teal-dark), #006064);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,151,167,.35);
  color: var(--color-white);
}

.btn-secondary {
  background: transparent;
  color: var(--color-teal);
  border-color: var(--color-teal);
}

.btn-secondary:hover {
  background: var(--color-teal);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
  color: var(--color-navy);
  border-color: var(--color-gold);
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212,168,67,.35);
  color: var(--color-navy);
}

.btn-white {
  background: var(--color-white);
  color: var(--color-navy);
  border-color: var(--color-white);
}

.btn-white:hover {
  background: var(--color-off-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--color-navy);
}

.btn-sm {
  padding: .5rem 1.25rem;
  font-size: .85rem;
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1.05rem;
}

.btn-block {
  display: flex;
  width: 100%;
}

/* --- Badges ------------------------------------------------ */
.badge {
  display: inline-block;
  padding: .25rem .75rem;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  border-radius: var(--radius-full);
  line-height: 1.4;
}

.badge-teal {
  background: rgba(0,151,167,.12);
  color: var(--color-teal-dark);
}

.badge-gold {
  background: rgba(212,168,67,.15);
  color: var(--color-gold-dark);
}

.badge-green {
  background: rgba(46,125,50,.12);
  color: var(--color-green);
}

.badge-navy {
  background: rgba(13,27,42,.1);
  color: var(--color-navy);
}

/* --- Navigation -------------------------------------------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  padding: 0 2rem;
  background: transparent;
  transition: background var(--transition-base), box-shadow var(--transition-base);
}

.navbar.scrolled {
  background: var(--color-navy);
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container-wide);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  text-decoration: none;
}

.navbar-brand img {
  height: 42px;
  width: auto;
}

.navbar-brand:hover {
  color: var(--color-gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
}

.nav-links a {
  color: rgba(255,255,255,.85);
  padding: .5rem 1rem;
  font-size: .9rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast), background var(--transition-fast);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-white);
  background: rgba(255,255,255,.1);
}

.nav-links .btn {
  margin-left: .5rem;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-fast);
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* --- Hero Section ------------------------------------------ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-white);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,27,42,.92) 0%,
    rgba(0,131,143,.75) 50%,
    rgba(13,27,42,.88) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 2rem 1.5rem;
}

.hero-content .badge {
  margin-bottom: 1.5rem;
  background: rgba(212,168,67,.2);
  color: var(--color-gold-light);
  font-size: .8rem;
  padding: .35rem 1rem;
}

.hero-content h1 {
  font-size: 3.5rem;
  color: var(--color-white);
  margin-bottom: 1.25rem;
  line-height: 1.15;
}

.hero-content h1 span {
  color: var(--color-gold);
}

.hero-content p {
  font-size: 1.2rem;
  color: rgba(255,255,255,.85);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: heroFloat 2s ease-in-out infinite;
}

.hero-scroll-indicator a {
  color: rgba(255,255,255,.6);
  font-size: 1.5rem;
  transition: color var(--transition-fast);
}

.hero-scroll-indicator a:hover {
  color: var(--color-white);
}

@keyframes heroFloat {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(10px); }
}

/* --- Breadcrumbs ------------------------------------------- */
.breadcrumbs {
  padding: .75rem 0;
  background: var(--color-off-white);
  border-bottom: 1px solid var(--color-light-gray);
}

.breadcrumbs ol {
  display: flex;
  align-items: center;
  gap: .25rem;
  font-size: .85rem;
}

.breadcrumbs li + li::before {
  content: '\203A';
  margin-right: .35rem;
  color: var(--color-mid-gray);
}

.breadcrumbs a {
  color: var(--color-text-light);
}

.breadcrumbs a:hover {
  color: var(--color-teal);
}

.breadcrumbs .current {
  color: var(--color-navy);
  font-weight: 600;
}

/* --- Program / Course Cards -------------------------------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
}

.program-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-light-gray);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.program-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.program-card-header {
  position: relative;
  padding: 1.75rem 1.5rem;
  background: linear-gradient(135deg, var(--color-navy), var(--color-navy-light));
  color: var(--color-white);
}

.program-card-header .badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.program-card-header h3 {
  color: var(--color-white);
  font-size: 1.35rem;
  margin-bottom: .35rem;
}

.program-card-header p {
  color: rgba(255,255,255,.7);
  font-size: .9rem;
  margin-bottom: 0;
}

.program-card-body {
  padding: 1.5rem;
}

.program-card-body p {
  font-size: .95rem;
  color: var(--color-text-light);
}

.program-card-meta {
  display: flex;
  gap: 1.5rem;
  margin: 1rem 0;
  padding: 1rem 0;
  border-top: 1px solid var(--color-light-gray);
  border-bottom: 1px solid var(--color-light-gray);
}

.program-card-meta span {
  font-size: .85rem;
  color: var(--color-text-light);
  display: flex;
  align-items: center;
  gap: .35rem;
}

.program-card-meta strong {
  color: var(--color-navy);
}

/* Course breakdown table inside cards */
.course-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  font-size: .88rem;
}

.course-table thead {
  background: var(--color-off-white);
}

.course-table th {
  padding: .65rem .75rem;
  text-align: left;
  font-weight: 600;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--color-text-light);
  border-bottom: 2px solid var(--color-light-gray);
}

.course-table td {
  padding: .6rem .75rem;
  border-bottom: 1px solid var(--color-light-gray);
  color: var(--color-text);
}

.course-table tbody tr:hover {
  background: rgba(0,151,167,.04);
}

.course-table .credits {
  text-align: center;
  font-weight: 600;
  color: var(--color-teal);
}

.program-card-footer {
  padding: 0 1.5rem 1.5rem;
}

/* --- Faculty Cards ----------------------------------------- */
.faculty-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem;
}

.faculty-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-light-gray);
  text-align: center;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.faculty-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.faculty-card-photo {
  width: 100%;
  height: 260px;
  background: linear-gradient(135deg, var(--color-navy-light), var(--color-teal-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.faculty-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.faculty-card-photo .placeholder-icon {
  font-size: 4rem;
  color: rgba(255,255,255,.3);
}

.faculty-card-info {
  padding: 1.25rem 1rem 1.5rem;
}

.faculty-card-info h4 {
  font-family: var(--font-heading);
  color: var(--color-navy);
  margin-bottom: .25rem;
}

.faculty-card-info .title {
  font-size: .85rem;
  color: var(--color-teal);
  font-weight: 600;
  margin-bottom: .5rem;
}

.faculty-card-info p {
  font-size: .88rem;
  color: var(--color-text-light);
  margin-bottom: 0;
}

.faculty-card-socials {
  display: flex;
  justify-content: center;
  gap: .75rem;
  padding: 0 1rem 1.25rem;
}

.faculty-card-socials a {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-off-white);
  color: var(--color-text-light);
  font-size: .85rem;
  transition: all var(--transition-fast);
}

.faculty-card-socials a:hover {
  background: var(--color-teal);
  color: var(--color-white);
}

/* --- Statistics / Counter Section -------------------------- */
.stats-section {
  position: relative;
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
  color: var(--color-white);
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(0,151,167,.08);
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 1.5rem 1rem;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: .5rem;
}

.stat-label {
  font-size: .95rem;
  color: rgba(255,255,255,.7);
  font-weight: 500;
}

.stat-item .stat-icon {
  font-size: 2rem;
  color: var(--color-teal-light);
  margin-bottom: .75rem;
}

/* --- Tuition / Fees Tables --------------------------------- */
.tuition-table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-light-gray);
}

.tuition-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .95rem;
}

.tuition-table thead {
  background: linear-gradient(135deg, var(--color-navy), var(--color-navy-light));
  color: var(--color-white);
}

.tuition-table thead th {
  padding: 1rem 1.25rem;
  font-weight: 600;
  text-align: left;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.tuition-table tbody td {
  padding: .85rem 1.25rem;
  border-bottom: 1px solid var(--color-light-gray);
  color: var(--color-text);
}

.tuition-table tbody tr:nth-child(even) {
  background: var(--color-off-white);
}

.tuition-table tbody tr:hover {
  background: rgba(0,151,167,.06);
}

.tuition-table .amount {
  font-weight: 700;
  color: var(--color-navy);
  font-size: 1.05rem;
}

.tuition-table .highlight-row {
  background: rgba(0,151,167,.08);
}

.tuition-table .highlight-row td {
  font-weight: 700;
  color: var(--color-navy);
}

.tuition-table tfoot {
  background: var(--color-off-white);
  font-weight: 700;
}

.tuition-table tfoot td {
  padding: 1rem 1.25rem;
  border-top: 2px solid var(--color-teal);
  color: var(--color-navy);
  font-size: 1.05rem;
}

/* --- Academic Calendar Timeline ----------------------------- */
.timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, var(--color-teal), var(--color-gold));
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 1.5rem 2.5rem;
}

.timeline-item:nth-child(odd) {
  left: 0;
  padding-right: 3rem;
  text-align: right;
}

.timeline-item:nth-child(even) {
  left: 50%;
  padding-left: 3rem;
}

.timeline-dot {
  position: absolute;
  top: 2rem;
  width: 16px;
  height: 16px;
  background: var(--color-teal);
  border: 3px solid var(--color-white);
  border-radius: 50%;
  box-shadow: 0 0 0 3px var(--color-teal);
  z-index: 1;
}

.timeline-item:nth-child(odd) .timeline-dot {
  right: -8px;
}

.timeline-item:nth-child(even) .timeline-dot {
  left: -8px;
}

.timeline-content {
  background: var(--color-white);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-light-gray);
  transition: box-shadow var(--transition-base);
}

.timeline-content:hover {
  box-shadow: var(--shadow-md);
}

.timeline-content .date {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  color: var(--color-teal);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: .35rem;
}

.timeline-content h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: .25rem;
}

.timeline-content p {
  font-size: .88rem;
  color: var(--color-text-light);
  margin-bottom: 0;
}

/* --- Enrollment Form --------------------------------------- */
.enrollment-form {
  background: var(--color-white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-light-gray);
  max-width: 720px;
  margin: 0 auto;
}

.enrollment-form h3 {
  text-align: center;
  margin-bottom: 2rem;
}

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

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

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

.form-group label {
  display: block;
  font-size: .88rem;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: .4rem;
}

.form-group label .required {
  color: var(--color-danger);
}

.form-control {
  width: 100%;
  padding: .7rem 1rem;
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--color-text);
  background: var(--color-white);
  border: 1.5px solid var(--color-light-gray);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  appearance: none;
}

.form-control:focus {
  outline: none;
  border-color: var(--color-teal);
  box-shadow: 0 0 0 3px rgba(0,151,167,.15);
}

.form-control::placeholder {
  color: var(--color-mid-gray);
}

select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8.5L1 3.5h10z' fill='%238a94a6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  margin-bottom: 1rem;
}

.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: .15rem;
  accent-color: var(--color-teal);
  cursor: pointer;
}

.form-check label {
  font-size: .88rem;
  color: var(--color-text);
  cursor: pointer;
}

.form-message {
  padding: .75rem 1rem;
  border-radius: var(--radius-md);
  font-size: .9rem;
  margin-bottom: 1rem;
}

.form-message.success {
  background: rgba(39,174,96,.1);
  color: var(--color-success);
  border: 1px solid rgba(39,174,96,.2);
}

.form-message.error {
  background: rgba(192,57,43,.1);
  color: var(--color-danger);
  border: 1px solid rgba(192,57,43,.2);
}

/* --- Accordion (details/summary) --------------------------- */
.accordion {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.accordion details {
  background: var(--color-white);
  border: 1px solid var(--color-light-gray);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow var(--transition-fast);
}

.accordion details:hover {
  box-shadow: var(--shadow-sm);
}

.accordion details[open] {
  border-color: var(--color-teal);
  box-shadow: 0 0 0 1px var(--color-teal);
}

.accordion summary {
  padding: 1rem 1.25rem;
  font-weight: 600;
  color: var(--color-navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  transition: background var(--transition-fast);
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--color-teal);
  transition: transform var(--transition-fast);
}

.accordion details[open] summary::after {
  content: '\2212';
}

.accordion summary:hover {
  background: var(--color-off-white);
}

.accordion .accordion-body {
  padding: 0 1.25rem 1.25rem;
  font-size: .95rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* --- Footer ------------------------------------------------ */
.site-footer {
  background: var(--color-navy);
  color: rgba(255,255,255,.75);
  padding-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-brand h3 {
  color: var(--color-white);
  font-size: 1.5rem;
  margin-bottom: .75rem;
}

.footer-brand p {
  font-size: .9rem;
  line-height: 1.7;
  color: rgba(255,255,255,.6);
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: .75rem;
  margin-top: 1.25rem;
}

.footer-social a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.6);
  transition: all var(--transition-fast);
  font-size: .9rem;
}

.footer-social a:hover {
  background: var(--color-teal);
  color: var(--color-white);
  transform: translateY(-2px);
}

.footer-col h4 {
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 1.25rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.footer-col a {
  color: rgba(255,255,255,.55);
  font-size: .9rem;
  transition: color var(--transition-fast), padding-left var(--transition-fast);
}

.footer-col a:hover {
  color: var(--color-gold);
  padding-left: 4px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  font-size: .9rem;
  color: rgba(255,255,255,.55);
  margin-bottom: .75rem;
}

.footer-contact li strong {
  color: rgba(255,255,255,.8);
}

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .82rem;
  color: rgba(255,255,255,.4);
}

.footer-bottom a {
  color: rgba(255,255,255,.4);
}

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

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

/* --- Coming Soon Overlay ----------------------------------- */
.coming-soon-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(13,27,42,.97), rgba(0,131,143,.92));
  backdrop-filter: blur(8px);
  opacity: 1;
  visibility: visible;
  transition: opacity var(--transition-slow), visibility var(--transition-slow);
}

.coming-soon-overlay.dismissed {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.coming-soon-content {
  text-align: center;
  color: var(--color-white);
  padding: 2rem;
  max-width: 600px;
}

.coming-soon-content h1 {
  font-size: 3rem;
  color: var(--color-white);
  margin-bottom: .75rem;
}

.coming-soon-content h1 span {
  color: var(--color-gold);
}

.coming-soon-content p {
  font-size: 1.15rem;
  color: rgba(255,255,255,.75);
  margin-bottom: 2rem;
}

.coming-soon-dismiss {
  background: transparent;
  border: 2px solid rgba(255,255,255,.3);
  color: var(--color-white);
  padding: .6rem 1.5rem;
  font-size: .9rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-fast);
  font-family: var(--font-body);
}

.coming-soon-dismiss:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.5);
}

.coming-soon-countdown {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.countdown-block {
  text-align: center;
}

.countdown-block .number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1;
}

.countdown-block .label {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.5);
  margin-top: .35rem;
}

/* --- Back to Top Button ------------------------------------ */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-teal);
  color: var(--color-white);
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-base);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--color-teal-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* --- Scroll Animations ------------------------------------- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease-out, transform .7s ease-out;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll.delay-1 { transition-delay: .1s; }
.animate-on-scroll.delay-2 { transition-delay: .2s; }
.animate-on-scroll.delay-3 { transition-delay: .3s; }
.animate-on-scroll.delay-4 { transition-delay: .4s; }

.animate-fade-in {
  animation: fadeIn .8s ease-out forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.animate-slide-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity .7s ease-out, transform .7s ease-out;
}

.animate-slide-left.animated {
  opacity: 1;
  transform: translateX(0);
}

.animate-slide-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity .7s ease-out, transform .7s ease-out;
}

.animate-slide-right.animated {
  opacity: 1;
  transform: translateX(0);
}

/* --- Feature / Info Cards (generic) ------------------------ */
.info-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-light-gray);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.info-card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(0,151,167,.1), rgba(0,131,143,.05));
  color: var(--color-teal);
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.info-card h4 {
  margin-bottom: .5rem;
}

.info-card p {
  font-size: .93rem;
  color: var(--color-text-light);
  margin-bottom: 0;
}

/* --- Tabs (for program details) ---------------------------- */
.tabs {
  display: flex;
  border-bottom: 2px solid var(--color-light-gray);
  gap: 0;
  margin-bottom: 2rem;
  overflow-x: auto;
}

.tab-btn {
  padding: .75rem 1.5rem;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  color: var(--color-text-light);
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  transition: color var(--transition-fast), border-color var(--transition-fast);
  white-space: nowrap;
}

.tab-btn:hover {
  color: var(--color-navy);
}

.tab-btn.active {
  color: var(--color-teal);
  border-bottom-color: var(--color-teal);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
  animation: fadeIn .4s ease-out;
}

/* --- Pricing Cards (Tuition) ------------------------------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: stretch;
}

.pricing-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-light-gray);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
  border-color: var(--color-gold);
  position: relative;
}

.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: 12px;
  right: -30px;
  background: var(--color-gold);
  color: var(--color-navy);
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: .3rem 2.5rem;
  transform: rotate(45deg);
  letter-spacing: .04em;
}

.pricing-card-header {
  text-align: center;
  padding: 2rem 1.5rem 1.5rem;
  background: linear-gradient(135deg, var(--color-navy), var(--color-navy-light));
  color: var(--color-white);
}

.pricing-card-header h3 {
  color: var(--color-white);
  font-size: 1.25rem;
  margin-bottom: .75rem;
}

.pricing-card-header .price {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-gold);
}

.pricing-card-header .price span {
  font-size: .9rem;
  font-weight: 400;
  color: rgba(255,255,255,.6);
}

.pricing-card-body {
  padding: 1.5rem;
  flex: 1;
}

.pricing-card-body ul {
  display: flex;
  flex-direction: column;
  gap: .65rem;
}

.pricing-card-body li {
  font-size: .9rem;
  color: var(--color-text);
  padding-left: 1.5rem;
  position: relative;
}

.pricing-card-body li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--color-green);
  font-weight: 700;
}

.pricing-card-footer {
  padding: 0 1.5rem 1.5rem;
}

/* --- CTA Section ------------------------------------------- */
.cta-section {
  position: relative;
  background: linear-gradient(135deg, var(--color-teal-dark), var(--color-teal));
  color: var(--color-white);
  text-align: center;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  pointer-events: none;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  pointer-events: none;
}

.cta-section h2 {
  color: var(--color-white);
  margin-bottom: .75rem;
}

.cta-section p {
  color: rgba(255,255,255,.85);
  max-width: 560px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
}

/* --- Testimonials ------------------------------------------ */
.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-light-gray);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--color-teal);
  opacity: .15;
  position: absolute;
  top: .5rem;
  left: 1.25rem;
  line-height: 1;
}

.testimonial-card blockquote {
  font-size: .95rem;
  font-style: italic;
  color: var(--color-text);
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.testimonial-author img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author .author-info strong {
  display: block;
  font-size: .9rem;
  color: var(--color-navy);
}

.testimonial-author .author-info span {
  font-size: .8rem;
  color: var(--color-text-light);
}

/* --- Page Header (interior pages) -------------------------- */
.page-header {
  background: linear-gradient(135deg, var(--color-navy), var(--color-navy-light));
  padding: calc(var(--nav-height) + 3rem) 0 3rem;
  color: var(--color-white);
  text-align: center;
}

.page-header h1 {
  color: var(--color-white);
  font-size: 2.5rem;
  margin-bottom: .5rem;
}

.page-header p {
  color: rgba(255,255,255,.7);
  font-size: 1.1rem;
  max-width: 580px;
  margin: 0 auto;
}

/* --- Loading Spinner --------------------------------------- */
.spinner {
  width: 36px;
  height: 36px;
  border: 3px solid var(--color-light-gray);
  border-top-color: var(--color-teal);
  border-radius: 50%;
  animation: spin .7s linear infinite;
}

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

/* --- Alert / Notification Bars ----------------------------- */
.alert-bar {
  padding: .75rem 1.25rem;
  font-size: .9rem;
  font-weight: 500;
  text-align: center;
}

.alert-bar-teal {
  background: var(--color-teal);
  color: var(--color-white);
}

.alert-bar-gold {
  background: var(--color-gold);
  color: var(--color-navy);
}

.alert-bar a {
  color: inherit;
  text-decoration: underline;
  font-weight: 700;
}

/* --- Responsive: Tablet (max 1024px) ----------------------- */
@media (max-width: 1024px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 1.85rem; }

  .hero-content h1 {
    font-size: 2.75rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .timeline::before {
    left: 24px;
  }

  .timeline-item {
    width: 100%;
    left: 0 !important;
    padding-left: 3.5rem !important;
    padding-right: 0 !important;
    text-align: left !important;
  }

  .timeline-dot {
    left: 16px !important;
    right: auto !important;
  }

  .card-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }

  .pricing-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }
}

/* --- Responsive: Mobile (max 768px) ------------------------ */
@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
  }

  html {
    font-size: 15px;
  }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  h3 { font-size: 1.25rem; }

  .section-padding {
    padding: 3.5rem 0;
  }

  .section-padding-lg {
    padding: 4.5rem 0;
  }

  /* Mobile navigation */
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: var(--color-navy);
    flex-direction: column;
    align-items: flex-start;
    padding: calc(var(--nav-height) + 1rem) 1.5rem 2rem;
    gap: .5rem;
    transform: translateX(100%);
    transition: transform var(--transition-base);
    box-shadow: -4px 0 20px rgba(0,0,0,.3);
    overflow-y: auto;
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links a {
    width: 100%;
    padding: .7rem .75rem;
    font-size: .95rem;
  }

  .nav-links .btn {
    margin-left: 0;
    margin-top: .5rem;
    width: 100%;
  }

  .mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-base), visibility var(--transition-base);
  }

  .mobile-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  /* Hero */
  .hero {
    min-height: 90vh;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
  }

  /* Cards */
  .card-grid {
    grid-template-columns: 1fr;
  }

  .faculty-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  }

  /* Stats */
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .stat-number {
    font-size: 2.25rem;
  }

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

  .enrollment-form {
    padding: 1.5rem;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .footer-legal {
    justify-content: center;
  }

  /* Timeline */
  .timeline::before {
    left: 16px;
  }

  .timeline-item {
    padding-left: 3rem !important;
  }

  .timeline-dot {
    left: 8px !important;
    width: 14px;
    height: 14px;
  }

  /* Tables */
  .tuition-table-wrapper {
    border-radius: var(--radius-md);
  }

  .tuition-table thead th,
  .tuition-table tbody td {
    padding: .65rem .75rem;
    font-size: .85rem;
  }

  /* Coming Soon */
  .coming-soon-content h1 {
    font-size: 2rem;
  }

  .coming-soon-countdown {
    gap: 1rem;
  }

  .countdown-block .number {
    font-size: 2rem;
  }

  /* Back to top */
  .back-to-top {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  /* Pricing cards */
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Page header */
  .page-header {
    padding: calc(var(--nav-height) + 2rem) 0 2rem;
  }

  .page-header h1 {
    font-size: 1.85rem;
  }

  /* Breadcrumbs */
  .breadcrumbs ol {
    font-size: .8rem;
    flex-wrap: wrap;
  }
}

/* --- Responsive: Small Mobile (max 480px) ------------------ */
@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .hero-content h1 {
    font-size: 1.75rem;
  }

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

  .stat-number {
    font-size: 2rem;
  }

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

  .coming-soon-countdown {
    flex-wrap: wrap;
  }

  .countdown-block .number {
    font-size: 1.75rem;
  }
}

/* --- Print Styles ------------------------------------------ */
@media print {
  .navbar,
  .back-to-top,
  .coming-soon-overlay,
  .nav-toggle,
  .mobile-overlay,
  .hero-scroll-indicator {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
    font-size: 12pt;
  }

  a {
    color: #000;
    text-decoration: underline;
  }

  .hero {
    min-height: auto;
    padding: 2rem 0;
    background: none;
    color: #000;
  }

  .hero-content h1,
  .section-header h2 {
    color: #000;
  }

  .program-card,
  .info-card,
  .faculty-card,
  .testimonial-card,
  .pricing-card {
    box-shadow: none;
    border: 1px solid #ccc;
    break-inside: avoid;
  }

  .section-padding {
    padding: 1.5rem 0;
  }
}

/* --- Accessibility: Reduced Motion ------------------------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .animate-on-scroll {
    opacity: 1;
    transform: none;
  }

  .animate-slide-left,
  .animate-slide-right {
    opacity: 1;
    transform: none;
  }
}

/* --- Focus Visible for keyboard nav ------------------------ */
*:focus-visible {
  outline: 3px solid var(--color-teal);
  outline-offset: 2px;
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: none;
  border-color: var(--color-teal);
  box-shadow: 0 0 0 3px rgba(0,151,167,.15);
}

/* --- Misc Patterns ----------------------------------------- */
.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-teal), var(--color-gold));
  border-radius: 2px;
  margin: 1.5rem auto;
}

.highlight-text {
  background: linear-gradient(120deg, rgba(0,151,167,.15), rgba(0,151,167,.05));
  padding: .15em .35em;
  border-radius: 3px;
}

.list-check li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: .5rem;
}

.list-check li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--color-green);
  font-weight: 700;
}

.overlay-dark {
  position: relative;
}

.overlay-dark::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(13,27,42,.7);
  pointer-events: none;
}

.overlay-dark > * {
  position: relative;
  z-index: 1;
}

/* Gradient text (decorative headings) */
.gradient-text {
  background: linear-gradient(135deg, var(--color-teal), var(--color-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Separator wave */
.wave-separator {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.wave-separator svg {
  display: block;
  width: 100%;
  height: auto;
}

/* ============================================================
   HOMEPAGE & INNER PAGE SECTION OVERRIDES
   (Bridge between HTML class names and base CSS)
   ============================================================ */

/* --- Base Section ----------------------------------------- */
.section {
  padding: 5rem 0;
  position: relative;
}

/* --- Section Tags & Titles -------------------------------- */
.section-tag {
  display: inline-block;
  color: var(--color-teal);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--color-navy);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.section-subtitle {
  color: var(--color-text-light);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-alt {
  background: var(--color-off-white);
}

/* --- Programs Section ------------------------------------- */
.programs { color: var(--color-text); }
.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}
.program-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.program-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.program-card-badge {
  display: inline-block;
  background: var(--color-teal);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
}
.program-card-header {
  padding: 2rem 2rem 0;
}
.program-card-header h3 {
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.program-card-body {
  padding: 1rem 2rem 2rem;
}
.program-card-body p {
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.program-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.program-meta-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--color-off-white);
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  font-size: 0.85rem;
  color: var(--color-text);
  font-weight: 500;
}
.program-meta-item svg { color: var(--color-teal); flex-shrink: 0; }
.programs-note {
  text-align: center;
  margin-top: 2rem;
  color: var(--color-text-light);
  font-size: 0.9rem;
}

/* --- Why SCTI Section ------------------------------------- */
.why-scti { color: var(--color-text); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.feature-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-teal), var(--color-teal-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: white;
}
.feature-card h3 {
  color: var(--color-navy);
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}
.feature-card p {
  color: var(--color-text-light);
  line-height: 1.7;
}

/* --- Stats Section ---------------------------------------- */
.stats {
  background: linear-gradient(135deg, var(--color-navy), var(--color-navy-light));
  color: white;
  position: relative;
  overflow: hidden;
}
.stats-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(0,151,167,0.15), transparent 60%);
  pointer-events: none;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
}
.stat-item {
  text-align: center;
}
.stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
}
.stat-suffix {
  font-size: 2rem;
}
.stat-label {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  font-weight: 400;
}

/* --- President Section ------------------------------------ */
.president { color: var(--color-text); }
.president-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3rem;
  align-items: start;
}
.president-image-placeholder {
  width: 250px;
  height: 300px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--color-navy), var(--color-teal));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.president-name-card {
  margin-top: 1rem;
  text-align: center;
}
.president-name-card h3 {
  color: var(--color-navy);
  font-size: 1.2rem;
}
.president-name-card p {
  color: var(--color-teal);
  font-size: 0.9rem;
}
.president-content h2 {
  color: var(--color-navy);
  font-family: var(--font-heading);
  margin-bottom: 0.5rem;
}
.president-content h3 {
  color: var(--color-teal);
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}
.president-content p {
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.president-signature {
  margin-top: 1.5rem;
  font-style: italic;
  color: var(--color-navy);
}

/* --- Calendar Section ------------------------------------- */
.calendar { color: var(--color-text); }
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}
.calendar-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--color-teal);
}
.calendar-card.active {
  border-left-color: var(--color-gold);
  box-shadow: var(--shadow-md);
}
.calendar-card h3 {
  color: var(--color-navy);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.calendar-detail {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--color-light-gray);
}
.calendar-detail:last-child { border: none; }
.calendar-detail span:first-child { color: var(--color-text-light); }
.calendar-detail span:last-child { color: var(--color-navy); font-weight: 600; }
.calendar-status {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}
.calendar-status.accepting {
  background: rgba(39,174,96,0.1);
  color: var(--color-success);
}
.calendar-status.upcoming {
  background: rgba(212,168,67,0.1);
  color: var(--color-gold-dark);
}

/* --- CTA Section ------------------------------------------ */
.cta-section {
  background: linear-gradient(135deg, var(--color-teal), var(--color-teal-dark));
  color: white;
  text-align: center;
}
.cta-section h2 {
  color: white;
  font-family: var(--font-heading);
  font-size: 2.25rem;
  margin-bottom: 1rem;
}
.cta-section p {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}
.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Inner Page Sections ---------------------------------- */
.info-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.5rem;
}
.info-card h3 {
  color: var(--color-navy);
  margin-bottom: 0.75rem;
}
.info-card p, .info-card li {
  color: var(--color-text-light);
  line-height: 1.7;
}

/* Course table styling */
.course-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}
.course-table thead {
  background: var(--color-navy);
  color: white;
}
.course-table th {
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 600;
}
.course-table td {
  padding: 0.65rem 1rem;
  border-bottom: 1px solid var(--color-light-gray);
  color: var(--color-text);
}
.course-table tbody tr:hover {
  background: var(--color-off-white);
}
.course-table tfoot {
  font-weight: 700;
  background: var(--color-off-white);
}

/* Steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}
.step-card {
  text-align: center;
  padding: 1.5rem;
}
.step-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--color-teal);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  margin: 0 auto 1rem;
}
.step-card h3 { color: var(--color-navy); font-size: 1rem; margin-bottom: 0.5rem; }
.step-card p { color: var(--color-text-light); font-size: 0.9rem; }

/* Contact grid */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

/* --- Responsive Overrides --------------------------------- */
@media (max-width: 768px) {
  .programs-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .president-grid { grid-template-columns: 1fr; }
  .calendar-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 1.8rem; }
  .stat-number { font-size: 2.25rem; }
}

/* ============================================================
   HOMEPAGE-SPECIFIC OVERRIDES
   ============================================================ */

/* Hero background gradient */
.hero {
  background: linear-gradient(135deg, #0d1b2a 0%, #00838f 50%, #0d1b2a 100%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,27,42,0.88) 0%, rgba(0,131,143,0.65) 50%, rgba(13,27,42,0.85) 100%);
  z-index: 1;
}

/* Hero Title */
.hero-title {
  font-family: var(--font-heading, 'Playfair Display', serif);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.hero-title .text-accent {
  color: var(--color-gold, #d4a843);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.88);
  max-width: 640px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.2rem;
  background: rgba(212,168,67,0.2);
  color: var(--color-gold-light, #e4c36a);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(212,168,67,0.3);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero-highlights {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.hero-highlight-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
}
.hero-highlight-item svg {
  color: var(--color-gold, #d4a843);
}

/* Button fixes */
.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s;
  display: inline-block;
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
}

.btn-accent {
  background: var(--color-teal, #0097a7);
  color: #fff;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s;
  display: inline-block;
}
.btn-accent:hover {
  background: var(--color-teal-dark, #00838f);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0,151,167,0.4);
}

/* Section tag */
.section-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-teal, #0097a7);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
}

/* Section alt background */
.section-alt {
  background: var(--color-off-white, #f5f7fa);
}

/* Program cards */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}
.program-card {
  background: #fff;
  border-radius: 16px;
  padding: 2.5rem;
  border: 1px solid var(--color-light-gray, #e8ecf1);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}
.program-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}
.program-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.program-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(0,151,167,0.1), rgba(0,151,167,0.05));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-teal, #0097a7);
}
.program-type {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-teal, #0097a7);
  background: rgba(0,151,167,0.08);
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
}
.program-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-navy, #0d1b2a);
  margin-bottom: 0.75rem;
}
.program-description {
  color: var(--color-text-light, #5a6c7d);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.program-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.program-detail-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--color-text, #2c3e50);
}
.program-detail-item svg {
  color: var(--color-teal, #0097a7);
  flex-shrink: 0;
}
.btn-block {
  display: block;
  width: 100%;
  text-align: center;
}
.programs-note {
  background: linear-gradient(90deg, var(--color-teal, #0097a7), transparent);
  border-left: 4px solid var(--color-teal, #0097a7);
  padding: 1.25rem 1.5rem;
  border-radius: 0 8px 8px 0;
  color: var(--color-text, #2c3e50);
  font-size: 0.95rem;
}

/* Features grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.feature-card {
  background: #fff;
  border-radius: 14px;
  padding: 2rem;
  border: 1px solid var(--color-light-gray, #e8ecf1);
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}
.feature-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.25rem;
  background: linear-gradient(135deg, rgba(0,151,167,0.12), rgba(0,151,167,0.04));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-teal, #0097a7);
}
.feature-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-navy, #0d1b2a);
  margin-bottom: 0.75rem;
}
.feature-card p {
  color: var(--color-text-light, #5a6c7d);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Stats section */
.stats {
  background: linear-gradient(135deg, var(--color-navy, #0d1b2a), var(--color-navy-light, #1b2d44));
  color: #fff;
  position: relative;
}
.stats-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(0,151,167,0.15), transparent 60%);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 2;
}
.stat-number {
  font-family: var(--font-heading, 'Playfair Display', serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-gold, #d4a843);
}
.stat-label, .stat-label-suffix {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
  margin-top: 0.5rem;
}

/* President section */
.president-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: center;
}
.president-image-placeholder {
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--color-navy, #0d1b2a), var(--color-teal-dark, #00838f));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.president-name-card {
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  text-align: center;
  white-space: nowrap;
}
.president-name-card strong {
  display: block;
  color: var(--color-navy, #0d1b2a);
  font-size: 1rem;
}
.president-name-card span {
  font-size: 0.8rem;
  color: var(--color-text-light, #5a6c7d);
}
.president-content .section-title {
  text-align: left;
}
.president-content p {
  color: var(--color-text-light, #5a6c7d);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.president-signature {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 2px solid var(--color-light-gray, #e8ecf1);
}
.president-signature strong {
  display: block;
  color: var(--color-navy, #0d1b2a);
}
.president-signature span {
  color: var(--color-text-light, #5a6c7d);
  font-size: 0.9rem;
}

/* Calendar grid */
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.calendar-card {
  background: #fff;
  border-radius: 14px;
  padding: 2rem;
  border: 1px solid var(--color-light-gray, #e8ecf1);
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.calendar-term {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-navy, #0d1b2a);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--color-teal, #0097a7);
}
.calendar-date-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  font-size: 0.9rem;
}
.calendar-label {
  color: var(--color-text-light, #5a6c7d);
}
.calendar-value {
  font-weight: 600;
  color: var(--color-navy, #0d1b2a);
}
.calendar-status {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}
.calendar-status-open {
  background: rgba(46,125,50,0.1);
  color: var(--color-green, #2e7d32);
}
.calendar-status-upcoming {
  background: rgba(0,151,167,0.1);
  color: var(--color-teal, #0097a7);
}

/* CTA section */
.cta {
  background: linear-gradient(135deg, var(--color-navy, #0d1b2a), var(--color-teal-dark, #00838f));
  color: #fff;
  text-align: center;
  position: relative;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(212,168,67,0.1), transparent 60%);
}
.cta-content {
  position: relative;
  z-index: 2;
}
.cta-title {
  font-family: var(--font-heading, 'Playfair Display', serif);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}
.cta-subtitle {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}
.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Navigation (homepage) */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.3s, box-shadow 0.3s;
  padding: 1rem 0;
}
.main-nav.scrolled {
  background: var(--color-navy, #0d1b2a);
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
  padding: 0.5rem 0;
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav-logo-img {
  height: 40px;
  width: auto;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.nav-logo-name {
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
}
.nav-logo-sub {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--color-teal-light, #26c6da);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}
.nav-menu a {
  color: rgba(255,255,255,0.85);
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 6px;
  transition: color 0.3s, background 0.3s;
}
.nav-menu a:hover, .nav-menu a.active {
  color: #fff;
  background: rgba(255,255,255,0.1);
}
.nav-cta {
  color: #fff !important;
}
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  transition: transform 0.3s;
}

/* Coming Soon Overlay (homepage) */
.coming-soon-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: linear-gradient(135deg, rgba(13,27,42,0.96) 0%, rgba(0,131,143,0.92) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}
.coming-soon-overlay.hidden { display: none; }
.coming-soon-content {
  text-align: center;
  color: #fff;
  max-width: 500px;
  padding: 2rem;
}
.coming-soon-content img {
  max-width: 120px;
  margin: 0 auto 1.5rem;
}
.coming-soon-content h1 {
  font-family: var(--font-heading, 'Playfair Display', serif);
  font-size: 2rem;
  margin-bottom: 1rem;
}
.coming-soon-badge {
  display: inline-block;
  background: var(--color-gold, #d4a843);
  color: var(--color-navy, #0d1b2a);
  padding: 0.4rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}
.coming-soon-message {
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.coming-soon-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.coming-soon-contact a {
  color: var(--color-gold-light, #e4c36a);
}

/* Section padding */
.section {
  padding: 5rem 0;
}

/* Footer */
.site-footer {
  background: var(--color-navy, #0d1b2a);
  color: rgba(255,255,255,0.75);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.footer-logo-img {
  height: 36px;
}
.footer-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  color: #fff;
  font-weight: 600;
}
.footer-about {
  font-size: 0.9rem;
  line-height: 1.7;
}
.footer-heading {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.footer-links li {
  margin-bottom: 0.6rem;
  font-size: 0.9rem;
}
.footer-links a:hover {
  color: var(--color-teal-light, #26c6da);
}
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}
.footer-contact svg {
  color: var(--color-teal, #0097a7);
  flex-shrink: 0;
  margin-top: 3px;
}
.footer-contact a:hover {
  color: var(--color-teal-light, #26c6da);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0;
}
.footer-licensure {
  font-size: 0.8rem;
  opacity: 0.6;
  text-align: center;
  margin-bottom: 0.5rem;
}
.footer-copyright {
  font-size: 0.85rem;
  text-align: center;
}

/* Logo fallback */
.logo-text-fallback {
  align-items: center;
  justify-content: center;
}
.logo-mark {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-teal, #0097a7);
  letter-spacing: -1px;
}
.logo-mark-sm {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--color-teal, #0097a7);
  letter-spacing: -0.5px;
}

/* ================================================================
   CAREER OUTCOMES SECTION
   ================================================================ */
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.outcome-card {
  background: #fff;
  border: 1px solid #e8ecf0;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.outcome-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,151,167,0.12);
}
.outcome-icon {
  width: 64px;
  height: 64px;
  background: rgba(0,151,167,0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: #0097a7;
}
.outcome-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0d1b2a;
  margin-bottom: 0.75rem;
}
.outcome-salary {
  font-size: 1.75rem;
  font-weight: 800;
  color: #0097a7;
  margin-bottom: 0.75rem;
  line-height: 1;
}
.outcome-salary span {
  font-size: 0.85rem;
  font-weight: 500;
  color: #64748b;
  margin-left: 2px;
}
.outcome-card p {
  font-size: 0.92rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.outcome-growth {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: #16a34a;
  background: #f0fdf4;
  border-radius: 6px;
  padding: 0.4rem 0.7rem;
}
.outcome-growth svg {
  flex-shrink: 0;
  stroke: #16a34a;
}
.outcomes-source {
  text-align: center;
  font-size: 0.8rem;
  color: #94a3b8;
  margin-top: 2rem;
}

/* ================================================================
   WHO THIS IS FOR SECTION
   ================================================================ */
.who-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.who-card {
  border-radius: 16px;
  padding: 2rem;
}
.who-card-yes {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
}
.who-card-prereq {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}
.who-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.who-card-yes .who-card-header svg { stroke: #16a34a; }
.who-card-prereq .who-card-header svg { stroke: #0097a7; }
.who-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0d1b2a;
  margin: 0;
}
.who-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.who-list li {
  font-size: 0.95rem;
  color: #374151;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.5;
}
.who-card-yes .who-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #16a34a;
  font-weight: 700;
}
.who-card-prereq .who-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #0097a7;
  font-weight: 700;
}

/* ================================================================
   FEATURES GRID — 4 COLUMNS
   ================================================================ */
.features-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* ================================================================
   STATS — SOURCE LINE
   ================================================================ */
.stat-source {
  font-size: 0.72rem;
  opacity: 0.55;
  margin-top: 0.25rem;
  letter-spacing: 0.03em;
}
.stat-number {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.4rem;
}

/* ================================================================
   FOUNDING CLASS SECTION
   ================================================================ */
.founding {
  background: linear-gradient(135deg, #0d1b2a 0%, #0d2940 100%);
}
.founding-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 3rem 0;
}
.founding-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212,168,67,0.15);
  border: 1px solid rgba(212,168,67,0.4);
  color: #d4a843;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}
.founding-badge svg { stroke: #d4a843; }
.founding-title {
  font-size: 2.75rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
}
.founding-text {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  margin-bottom: 2rem;
}
.founding-highlights {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
}
.founding-highlight {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.8);
}
.founding-highlight svg { stroke: #d4a843; flex-shrink: 0; }
.founding-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-outline-dark {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.85);
}
.btn-outline-dark:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.5);
}

/* CTA fine print */
.cta-fine {
  margin-top: 1.5rem;
  font-size: 0.82rem;
  opacity: 0.6;
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-menu { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: block; }
  .programs-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .president-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .calendar-grid { grid-template-columns: 1fr; }
  .program-details { grid-template-columns: 1fr; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .who-grid { grid-template-columns: 1fr; }
  .features-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .founding-title { font-size: 2rem; }
}
