/* MSVS College of Physiotherapy — professional healthcare education theme */

:root {
  --navy: #1e3a5f;
  --navy-dark: #0f2744;
  --teal: #0e7490;
  --teal-light: #06b6d4;
  --teal-soft: #ecfeff;
  --sky: #e0f2fe;
  --cream: #f8fafc;
  --white: #ffffff;
  --text: #0f172a;
  --text-muted: #64748b;
  --border: #e2e8f0;
  --gold: #d97706;
  --gold-soft: #fffbeb;
  --shadow-sm: 0 1px 3px rgba(15, 39, 68, 0.08);
  --shadow-md: 0 8px 24px rgba(15, 39, 68, 0.1);
  --shadow-lg: 0 20px 50px rgba(15, 39, 68, 0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --max-width: 1200px;
  --header-h: 76px;
  --topbar-h: 40px;
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --gradient-hero: linear-gradient(135deg, #0f2744 0%, #1e3a5f 45%, #0e7490 100%);
  --gradient-accent: linear-gradient(90deg, #0e7490, #06b6d4);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: min(100% - 2.5rem, var(--max-width));
  margin-inline: auto;
}

/* Typography */
h1, h2, h3, h4 {
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--navy-dark);
}

h1 { font-size: clamp(2.25rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.65rem, 3vw, 2.125rem); }
h3 { font-size: 1.2rem; }

.lead {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 42rem;
  line-height: 1.7;
}

.label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
}

.label::before {
  content: "";
  width: 24px;
  height: 3px;
  background: var(--gradient-accent);
  border-radius: 2px;
}

/* Top bar */
.top-bar {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8125rem;
  height: var(--topbar-h);
  display: flex;
  align-items: center;
}

.top-bar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
}

.top-bar a {
  color: var(--teal-light);
  font-weight: 600;
}

.top-bar a:hover { color: #fff; }

.top-bar-badges {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.65rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 999px;
  background: rgba(6, 182, 212, 0.2);
  color: #a5f3fc;
  border: 1px solid rgba(6, 182, 212, 0.35);
}

.pill-gold {
  background: rgba(217, 119, 6, 0.2);
  color: #fde68a;
  border-color: rgba(217, 119, 6, 0.35);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-mark {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 10px;
  box-shadow: var(--shadow-md);
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}

.logo-title {
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--navy-dark);
}

.logo-sub {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.nav-desktop {
  display: none;
  gap: 0.15rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-desktop a {
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.5rem 0.85rem;
  border-radius: 8px;
  color: var(--text-muted);
  transition: color 0.2s, background 0.2s;
}

.nav-desktop a:hover {
  color: var(--teal);
  background: var(--teal-soft);
}

.nav-desktop a.active {
  color: var(--white);
  background: var(--gradient-accent);
  box-shadow: 0 4px 12px rgba(14, 116, 144, 0.35);
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: var(--teal-soft);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: fixed;
  top: calc(var(--topbar-h) + var(--header-h));
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  padding: 1.5rem;
  overflow-y: auto;
  z-index: 99;
  box-shadow: var(--shadow-lg);
}

.nav-mobile.open { display: block; }

.nav-mobile a {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 1rem 0;
  color: var(--navy-dark);
  border-bottom: 1px solid var(--border);
}

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

@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
  .nav-toggle { display: none; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.9rem 1.6rem;
  border-radius: 10px;
  border: none;
  transition: transform 0.15s, box-shadow 0.2s;
  cursor: pointer;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--gradient-accent);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(14, 116, 144, 0.4);
}

.btn-primary:hover {
  box-shadow: 0 8px 24px rgba(14, 116, 144, 0.45);
}

.btn-outline {
  background: var(--white);
  color: var(--navy);
  border: 2px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.btn-outline:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.btn-light {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
}

.btn-light:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* Hero — home */
.hero {
  position: relative;
  padding: 0;
  overflow: hidden;
  background: var(--navy-dark);
  color: var(--white);
}

/* Full-width photo background hero */
.hero--photo {
  position: relative;
  isolation: isolate;
  min-height: clamp(480px, 78vh, 640px);
  padding: 4.5rem 0 2.5rem;
  display: flex;
  align-items: center;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% 22%;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    102deg,
    rgba(15, 39, 68, 0.92) 0%,
    rgba(15, 39, 68, 0.78) 42%,
    rgba(15, 39, 68, 0.35) 68%,
    rgba(14, 116, 144, 0.15) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100% - 2.5rem, var(--max-width));
  margin-inline: auto;
}

.hero-copy {
  max-width: 36rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
  margin-top: 2rem;
  max-width: 22rem;
}

@media (min-width: 640px) {
  .hero-stats {
    grid-template-columns: repeat(4, 1fr);
    max-width: 38rem;
  }
}

@media (min-width: 900px) {
  .hero--photo {
    padding: 5.5rem 0 3rem;
  }

  .hero-copy {
    max-width: 40rem;
  }
}

.hero .label { color: #7dd3fc; }
.hero .label::before { background: linear-gradient(90deg, #fbbf24, #f59e0b); }

.hero h1 {
  color: var(--white);
  margin-top: 0.75rem;
}

.hero .lead {
  color: rgba(255, 255, 255, 0.82);
  margin-top: 1rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.12);
  aspect-ratio: 4/3;
  background: rgba(0, 0, 0, 0.2);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(15, 39, 68, 0.25) 100%);
  pointer-events: none;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.hero-visual-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

.hero-stat-pill {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  padding: 0.75rem 1rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.hero-stat-pill strong {
  display: block;
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--navy-dark);
  line-height: 1.2;
}

.hero-stat-pill span {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Stats row (legacy + page use) */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.stat {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--teal);
}

.stat-value {
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 0.4rem;
}

/* Trust strip */
.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
}

.trust-strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem 3rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
}

.trust-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--teal-soft);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

/* Sections */
.section { padding: 4.5rem 0; }

.section-muted { background: var(--white); }

.section-alt { background: linear-gradient(180deg, var(--sky) 0%, var(--cream) 100%); }

.section-dark {
  background: var(--gradient-hero);
  color: var(--white);
}

.section-dark h2,
.section-dark h3 { color: var(--white); }

.section-dark .lead,
.section-dark .label { color: rgba(255, 255, 255, 0.75); }

.section-dark .label { color: #7dd3fc; }

.section-header {
  margin-bottom: 2.5rem;
  max-width: 40rem;
}

.section-header h2 { margin-top: 0.5rem; }

.section-header-center {
  text-align: center;
  margin-inline: auto;
}

.section-header-center .label { justify-content: center; }

/* Icon cards */
.card-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
  .card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
}

.card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(14, 116, 144, 0.3);
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--teal-soft), var(--sky));
  color: var(--teal);
  margin-bottom: 1.25rem;
}

.card h3 { margin-bottom: 0.5rem; }

.card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1.25rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--teal);
}

.card-link:hover { gap: 0.55rem; }

.card-featured {
  background: var(--gradient-hero);
  border: none;
  color: var(--white);
}

.card-featured h3,
.card-featured .card-link { color: var(--white); }

.card-featured p { color: rgba(255, 255, 255, 0.8); }

.card-featured .card-icon {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.card-teal .card-icon {
  color: #ffffff;
}

.card-teal {
  background: linear-gradient(145deg, #0e7490, #0891b2);
  border: none;
  color: var(--white);
}

.card-teal h3, .card-teal .card-link { color: var(--white); }
.card-teal p { color: rgba(255, 255, 255, 0.85); }
.card-teal .card-icon { background: rgba(255, 255, 255, 0.2); color: #fff; }

.card-featured ul {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}

.card-featured ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9375rem;
}

.card-featured ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2rem;
  width: 1rem;
  height: 1rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237dd3fc' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='m9 12 2 2 4-4'/%3E%3C/svg%3E") center / contain no-repeat;
}

/* Page hero (inner pages) */
.page-hero {
  position: relative;
  padding: 3.5rem 0;
  overflow: hidden;
  background: var(--gradient-hero);
  color: var(--white);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 90% 20%, rgba(6, 182, 212, 0.3), transparent 50%);
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero h1 {
  color: var(--white);
  margin-top: 0.5rem;
}

.page-hero .lead { color: rgba(255, 255, 255, 0.85); }

.page-hero .label { color: #7dd3fc; }

/* CTA band */
.cta-band {
  background: linear-gradient(90deg, var(--navy-dark), var(--teal));
  padding: 3rem 0;
  color: var(--white);
}

.cta-band-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.cta-band h2 {
  color: var(--white);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
}

.cta-band p {
  color: rgba(255, 255, 255, 0.85);
  margin-top: 0.35rem;
  font-size: 0.9375rem;
}

/* Tables */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin-top: 1.5rem;
  box-shadow: var(--shadow-sm);
  background: var(--white);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

th, td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

th {
  background: var(--gradient-hero);
  color: var(--white);
  font-weight: 700;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

tr:last-child td { border-bottom: none; }
tr:nth-child(even) td { background: var(--cream); }

.table-note {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  background: var(--gold-soft);
  border: 1px solid #fde68a;
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
}

.table-note ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin-top: 0.5rem;
}

.table-note li { margin-bottom: 0.35rem; }

/* Faculty */
.faculty-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .faculty-grid { grid-template-columns: repeat(2, 1fr); }
}

.faculty-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 1.25rem;
  transition: box-shadow 0.2s, transform 0.2s;
}

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

.faculty-avatar {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  border-radius: 16px;
  background: var(--gradient-accent);
  color: var(--white);
  font-weight: 800;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(14, 116, 144, 0.35);
}

.faculty-body { flex: 1; }

.faculty-card h3 { margin-bottom: 0.2rem; }

.faculty-role {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--teal);
  margin-bottom: 0.75rem;
}

.faculty-meta {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.faculty-meta strong { color: var(--navy-dark); }

/* Events */
.event-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.event-item {
  background: var(--white);
  padding: 1.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  border-left: 4px solid var(--teal);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s;
}

.event-item:hover { box-shadow: var(--shadow-md); }

.event-item p.event-date {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff;
  background: var(--teal);
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  margin-bottom: 0.6rem;
}

.card-featured p.event-date {
  background: rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

.event-item h3 { margin-bottom: 0.4rem; }

.event-item p:not(.event-date) {
  font-size: 0.9375rem;
  color: var(--text-muted);
}

/* Contact */
.contact-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .contact-grid { grid-template-columns: 1fr 1fr; }
}

.contact-block {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.contact-block h3 {
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 3px solid transparent;
  border-image: var(--gradient-accent) 1;
}

.contact-item { margin-bottom: 1.1rem; }

.contact-item strong {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal);
  margin-bottom: 0.25rem;
}

.contact-item a {
  color: var(--navy);
  font-weight: 600;
}

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

/* Content */
.content-split {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .content-split { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

.content-block {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.content-block h3 {
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--sky);
}

.content-block ul {
  list-style: none;
  padding: 0;
  color: var(--text-muted);
}

.content-block li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.6rem;
}

.content-block li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.15rem;
  width: 1rem;
  height: 1rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230e7490' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='m9 12 2 2 4-4'/%3E%3C/svg%3E") center / contain no-repeat;
}

/* Footer */
.site-footer {
  background: var(--navy-dark);
  color: var(--white);
  padding: 3.5rem 0 0;
  margin-top: 0;
}

.footer-accent {
  height: 4px;
  background: var(--gradient-accent);
}

.footer-grid {
  display: grid;
  gap: 2rem;
  padding: 3rem 0 2.5rem;
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
}

.footer-brand .logo-title { color: var(--white); }
.footer-brand .logo-sub { color: rgba(255, 255, 255, 0.5); }

.footer-brand p {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 28rem;
  line-height: 1.7;
}

.footer-col h4 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: var(--teal-light);
}

.footer-col a {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.4rem 0;
  color: rgba(255, 255, 255, 0.75);
}

.footer-col a:hover { color: var(--white); }

.footer-bottom {
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
}

/* Utilities */
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }
.flex-gap { display: flex; flex-wrap: wrap; gap: 1rem; }
.text-center { text-align: center; }

.fees-section-title {
  font-size: 1.25rem;
  color: var(--navy-dark);
  padding-bottom: 0.5rem;
  border-bottom: 3px solid var(--sky);
  display: inline-block;
}
