/* ============================================================
   MMYRV — FACULTY OF PHARMACEUTICAL SCIENCES
   Design System & Styles
   ============================================================ */

:root {
  --primary:       #8b1e2d;
  --primary-dark:  #6a1522;
  --primary-light: #c43a4b;
  --gold:          #c8920a;
  --gold-light:    #f5c842;
  --bg:            #fffaf8;
  --surface:       #ffffff;
  --surface-2:     #fff5f3;
  --text:          #1a0a0d;
  --text-muted:    #6b5c60;
  --border:        #f0dde0;
  --shadow-sm:     0 2px 8px  rgba(139,30,45,0.06);
  --shadow-md:     0 8px 24px rgba(139,30,45,0.10);
  --shadow-lg:     0 20px 60px rgba(139,30,45,0.14);
  --radius:        12px;
  --radius-lg:     20px;
  --container:     1160px;
  --ease:          0.22s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  {
  font-family: Inter, system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4,h5 { font-family: Poppins, Inter, sans-serif; line-height: 1.2; }
a   { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ── UTILITIES ─────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section { padding: 5rem 0; }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}
.section-header h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--text);
  margin: 0.4rem 0 0.8rem;
}
.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.section-kicker {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(139,30,45,0.07);
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  border: 1px solid rgba(139,30,45,0.18);
}
.kicker-light {
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.25);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.9rem 1.8rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(139,30,45,0.28);
  transition: transform var(--ease), box-shadow var(--ease);
  font-family: inherit;
  letter-spacing: 0.2px;
}
.btn-primary:hover  { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(139,30,45,0.35); }
.btn-primary:active { transform: translateY(0); }

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.9rem 1.8rem;
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(4px);
  transition: background var(--ease), border-color var(--ease);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.8);
}

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

/* ── SCROLL REVEAL ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ── SITE HEADER ───────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0.6rem 0;
  background: linear-gradient(to bottom, rgba(10,4,6,0.72) 0%, rgba(10,4,6,0.0) 100%);
  transition: background var(--ease), box-shadow var(--ease), padding var(--ease);
}
.site-header.scrolled {
  background: rgba(255,250,248,0.97);
  backdrop-filter: blur(14px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.09);
  padding: 0.45rem 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.header-logo img {
  height: 72px;
  width: auto;
  object-fit: contain;
  transition: height var(--ease), opacity var(--ease);
}
.site-header.scrolled .header-logo img { height: 56px; }

/* Logo swap: white logo on dark hero, red logo on light scrolled header */
.logo-default  { display: block; }
.logo-scrolled { display: none; }
.site-header.scrolled .logo-default  { display: none; }
.site-header.scrolled .logo-scrolled { display: block; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-call {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.2px;
  transition: color var(--ease);
}
.site-header.scrolled .header-call { color: var(--text); }
.header-call:hover { color: var(--gold-light); }
.site-header.scrolled .header-call:hover { color: var(--primary); }
.call-icon { font-size: 1rem; }

.header-admit-btn {
  display: inline-block;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 0.55rem 1.3rem;
  border-radius: 8px;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(139,30,45,0.3);
  transition: transform var(--ease), box-shadow var(--ease);
}
.header-admit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(139,30,45,0.38);
}

@media (max-width: 520px) {
  .call-text { display: none; }
  .header-call { font-size: 1.2rem; }
  .header-admit-btn { font-size: 0.8rem; padding: 0.5rem 0.9rem; }
}

/* ── HERO ──────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: url('images/hero-bg.jpg') center / cover no-repeat;
  padding: 7rem 0 5rem;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,10,13,0.85)  0%,
    rgba(106,21,34,0.72) 50%,
    rgba(26,10,13,0.78) 100%
  );
}

.hero-inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 5rem;
  align-items: center;
}

.hero-content { color: #fff; }

.hero-badge-row {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.badge-pill {
  display: inline-block;
  font-size: 0.78rem; font-weight: 700;
  padding: 0.3rem 0.85rem;
  border-radius: 50px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.28);
  color: rgba(255,255,255,0.92);
  letter-spacing: 0.4px;
  backdrop-filter: blur(4px);
}
.badge-gold {
  background: rgba(200,146,10,0.22);
  border-color: rgba(245,200,66,0.45);
  color: var(--gold-light);
}

.hero-h1 {
  font-size: 3.4rem; font-weight: 800; line-height: 1.15;
  color: #fff; margin-bottom: 1rem;
}
.hero-sub {
  font-size: 1rem; color: rgba(255,255,255,0.72);
  margin-bottom: 2rem; letter-spacing: 0.2px;
}

.hero-benefits {
  list-style: none;
  display: flex; flex-direction: column; gap: 0.9rem;
  margin-bottom: 2.5rem;
}
.hero-benefits li {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 1.05rem; color: rgba(255,255,255,0.92); font-weight: 500;
}
.check-icon {
  display: flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(200,146,10,0.18);
  border: 1.5px solid rgba(245,200,66,0.6);
  color: var(--gold-light); font-weight: 700; font-size: 0.82rem;
  flex-shrink: 0;
}

.hero-cta-row { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }

/* Hero Form */
.hero-form-wrap { position: relative; z-index: 2; }

.lead-form-card {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,0.3);
}
.form-header {
  text-align: center;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1.2rem; margin-bottom: 1.6rem;
}
.form-header h3 { font-size: 1.25rem; font-weight: 700; color: var(--primary); margin-bottom: 0.25rem; }
.form-header p  { font-size: 0.86rem; color: var(--text-muted); }

.form-body { display: flex; flex-direction: column; gap: 0.85rem; }

.form-body input,
.form-body select,
.contact-lead-form input,
.contact-lead-form select {
  width: 100%;
  padding: 0.88rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  background: var(--bg);
  color: var(--text);
  font-family: inherit;
  transition: border-color var(--ease), box-shadow var(--ease);
  appearance: auto;
}
.form-body input::placeholder { color: #aaa; }
.form-body input:focus,
.form-body select:focus,
.contact-lead-form input:focus,
.contact-lead-form select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(139,30,45,0.08);
  background: #fff;
}

.form-submit-btn {
  width: 100%; padding: 1rem;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  color: #fff; font-size: 1rem; font-weight: 700;
  border: none; border-radius: var(--radius); cursor: pointer;
  box-shadow: 0 8px 24px rgba(139,30,45,0.28);
  transition: transform var(--ease), box-shadow var(--ease);
  font-family: inherit; letter-spacing: 0.3px;
}
.form-submit-btn:hover  { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(139,30,45,0.35); }
.form-submit-btn:active { transform: translateY(0); }
.form-submit-btn.full-width { margin-top: 0.4rem; }

.form-disclaimer {
  text-align: center; font-size: 0.8rem; color: #b0a0a4; margin-top: 0.8rem;
}
.form-success {
  background: rgba(76,175,80,0.1);
  border: 1px solid rgba(76,175,80,0.38);
  color: #2e7d32; text-align: center;
  padding: 0.7rem; border-radius: 8px;
  font-size: 0.9rem; font-weight: 600; margin-top: 0.5rem;
}

.scroll-hint {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 2; text-align: center;
  color: rgba(255,255,255,0.5); font-size: 0.78rem; letter-spacing: 1px;
}
.scroll-arrow { font-size: 1.2rem; margin-top: 0.3rem; animation: bounce 2s infinite; }
@keyframes bounce {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(6px); }
}

/* ── STATS BAR ─────────────────────────────────────────── */
.stats-bar {
  background: linear-gradient(90deg, var(--primary-dark), var(--primary), var(--primary-light));
  padding: 2.5rem 0;
}
.stats-inner {
  display: flex; align-items: center; justify-content: center;
}
.stat-item { text-align: center; flex: 1; padding: 0.5rem 1rem; }
.stat-num {
  display: block; font-size: 2.4rem; font-weight: 800;
  font-family: Poppins, sans-serif; color: #fff;
  line-height: 1; margin-bottom: 0.3rem;
}
.stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.72); font-weight: 500; letter-spacing: 0.4px; }
.stat-divider { width: 1px; height: 3rem; background: rgba(255,255,255,0.22); flex-shrink: 0; }

/* ── ABOUT ─────────────────────────────────────────────── */
.about-section { background: var(--surface); }
.about-inner {
  display: grid; grid-template-columns: 1fr 460px; gap: 5rem; align-items: center;
}
.about-text .section-kicker { margin-bottom: 1rem; display: block; }
.about-text h2 { font-size: 2.1rem; font-weight: 700; margin-bottom: 1.2rem; }
.about-text p  { color: var(--text-muted); font-size: 1rem; line-height: 1.75; margin-bottom: 1rem; }
.about-tags { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.5rem; }
.tag {
  font-size: 0.8rem; font-weight: 600; color: var(--primary);
  background: rgba(139,30,45,0.07);
  border: 1px solid rgba(139,30,45,0.18);
  padding: 0.3rem 0.85rem; border-radius: 50px;
}

.about-image { position: relative; }
.about-image img {
  width: 100%; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); object-fit: cover; aspect-ratio: 4/3;
}
.about-image-badge {
  position: absolute; bottom: -1.5rem; left: -1.5rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff; padding: 1rem 1.5rem; border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  display: flex; flex-direction: column; gap: 0.15rem;
}
.about-image-badge span  { font-size: 0.78rem; opacity: 0.8; font-weight: 500; }
.about-image-badge strong{ font-size: 1rem; }

/* ── PROGRAMS ──────────────────────────────────────────── */
.programs-section { background: var(--bg); }
.programs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }

.program-card {
  background: var(--surface);
  border-radius: var(--radius-lg); padding: 2.5rem 2rem;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--ease), box-shadow var(--ease);
  position: relative;
}
.program-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.featured-program {
  border-color: var(--primary);
  background: linear-gradient(160deg, var(--surface), rgba(139,30,45,0.025));
}
.featured-badge {
  position: absolute; top: -0.9rem; left: 50%; transform: translateX(-50%);
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  color: #6a4000; font-size: 0.76rem; font-weight: 700;
  padding: 0.28rem 1rem; border-radius: 50px;
  letter-spacing: 0.5px; white-space: nowrap;
  box-shadow: 0 4px 12px rgba(200,146,10,0.3);
}

.program-icon   { font-size: 2.4rem; margin-bottom: 1rem; }
.program-badge  {
  display: inline-block; font-size: 0.76rem; font-weight: 700;
  color: var(--primary); background: rgba(139,30,45,0.08);
  border: 1px solid rgba(139,30,45,0.2);
  padding: 0.2rem 0.7rem; border-radius: 50px;
  letter-spacing: 0.4px; margin-bottom: 0.8rem;
}
.program-card h3    { font-size: 2rem; font-weight: 800; color: var(--primary); margin-bottom: 0.15rem; }
.program-tagline    { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 1rem; font-weight: 500; }
.program-card > p   { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; margin-bottom: 1.5rem; }

.program-highlights { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.5rem; }
.program-highlights li {
  font-size: 0.88rem; color: var(--text-muted);
  padding-left: 1.4rem; position: relative;
}
.program-highlights li::before {
  content: '→'; position: absolute; left: 0; color: var(--primary); font-weight: 700;
}

.program-eligibility {
  font-size: 0.86rem; color: var(--text-muted);
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: 8px; padding: 0.6rem 0.9rem; margin-bottom: 1.5rem;
}

.program-apply-btn {
  display: inline-flex; align-items: center; gap: 0.3rem;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  color: #fff; font-weight: 700; font-size: 0.9rem;
  padding: 0.75rem 1.5rem; border-radius: var(--radius);
  box-shadow: 0 6px 18px rgba(139,30,45,0.22);
  transition: transform var(--ease), box-shadow var(--ease);
}
.program-apply-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(139,30,45,0.3); }

/* ── RECRUITERS MARQUEE ────────────────────────────────── */
.recruiters-section { background: var(--surface); padding: 4rem 0; overflow: hidden; }

.marquee-wrapper {
  overflow: hidden; position: relative; width: 100%; margin-top: 2rem;
}
.marquee-wrapper::before,
.marquee-wrapper::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 140px; z-index: 2; pointer-events: none;
}
.marquee-wrapper::before { left:  0; background: linear-gradient(to right, var(--surface), transparent); }
.marquee-wrapper::after  { right: 0; background: linear-gradient(to left,  var(--surface), transparent); }

.marquee-track {
  display: flex; align-items: center; gap: 2.5rem;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.marquee-track:hover { animation-play-state: paused; }

.marquee-track img {
  height: 56px; width: auto; max-width: 140px;
  object-fit: contain;
  filter: grayscale(35%); opacity: 0.82;
  background: #fff; padding: 8px 14px;
  border-radius: 10px; border: 1px solid var(--border);
  box-shadow: var(--shadow-sm); flex-shrink: 0;
  transition: filter var(--ease), opacity var(--ease), transform var(--ease);
}
.marquee-track img:hover { filter: grayscale(0%); opacity: 1; transform: scale(1.06); }

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── ADMISSION STEPS ───────────────────────────────────── */
.admission-section { background: var(--bg); }

.steps-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.5rem;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute; top: 2.7rem;
  left: calc(10% + 1rem); right: calc(10% + 1rem);
  height: 2px;
  background: linear-gradient(90deg, var(--primary-light), var(--primary));
  opacity: 0.2; z-index: 0;
}

.step-card {
  background: var(--surface); border-radius: var(--radius);
  padding: 1.8rem 1.2rem; text-align: center;
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  transition: transform var(--ease), box-shadow var(--ease);
  position: relative; z-index: 1;
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.step-number {
  width: 54px; height: 54px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff; font-family: Poppins, sans-serif; font-weight: 800; font-size: 1.05rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.1rem;
  box-shadow: 0 6px 18px rgba(139,30,45,0.22);
}
.step-card h4 { font-size: 0.95rem; font-weight: 700; color: var(--text); margin-bottom: 0.5rem; }
.step-card p  { font-size: 0.83rem; color: var(--text-muted); line-height: 1.6; }

.admission-cta { text-align: center; margin-top: 3rem; }

/* ── FACILITIES ────────────────────────────────────────── */
.facilities-section { background: var(--surface); }
.facilities-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }

.facility-card {
  background: var(--bg); border-radius: var(--radius);
  padding: 2rem 1.5rem; border: 1px solid var(--border);
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.facility-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(139,30,45,0.25);
}
.facility-icon { font-size: 2.2rem; margin-bottom: 1rem; display: block; }
.facility-card h4 { font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: 0.5rem; }
.facility-card p  { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }

/* ── GALLERY ───────────────────────────────────────────── */
.gallery-section { background: var(--bg); padding: 4rem 0; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 220px 220px;
  gap: 1rem;
}
.gallery-img {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
  transition: transform var(--ease), box-shadow var(--ease);
}
.gallery-img:hover { transform: scale(1.02); box-shadow: var(--shadow-md); }
.gallery-grid .gallery-img:first-child {
  grid-row: 1 / 3; border-radius: var(--radius-lg);
}

/* ── CONTACT / CTA SECTION ─────────────────────────────── */
.contact-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 55%, #a82d3e 100%);
  color: #fff;
}
.contact-inner {
  display: grid; grid-template-columns: 1fr 460px; gap: 5rem; align-items: center;
}

.contact-info-block h2 { font-size: 2.1rem; font-weight: 700; color: #fff; margin: 0.8rem 0 1rem; }
.contact-info-block > p { color: rgba(255,255,255,0.72); font-size: 1rem; line-height: 1.7; margin-bottom: 2rem; }

.contact-items { display: flex; flex-direction: column; gap: 1rem; }
.contact-item {
  display: flex; align-items: flex-start; gap: 1rem;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius); padding: 1rem 1.2rem; backdrop-filter: blur(4px);
}
.contact-icon { font-size: 1.4rem; flex-shrink: 0; }
.contact-item div { display: flex; flex-direction: column; gap: 0.15rem; }
.contact-item strong { font-size: 0.8rem; font-weight: 700; color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: 0.5px; }
.contact-item span   { font-size: 0.98rem; color: #fff; font-weight: 500; }

.contact-map {
  margin-top: 1.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
  border: 2px solid rgba(255,255,255,0.12);
  line-height: 0;
}
.contact-map iframe {
  width: 100%;
  height: 220px;
  border: 0;
  display: block;
}

.contact-form-wrap {
  background: rgba(255,255,255,0.97); backdrop-filter: blur(12px);
  border-radius: var(--radius-lg); padding: 2.2rem;
  box-shadow: 0 24px 64px rgba(0,0,0,0.18);
}
.contact-lead-form h3 {
  font-size: 1.2rem; font-weight: 700; color: var(--primary);
  margin-bottom: 1.4rem; text-align: center;
}
.contact-lead-form input,
.contact-lead-form select { margin-bottom: 0.85rem; }


/* ── FIXED BOTTOM BAR ──────────────────────────────────── */
.fixed-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1000;
  background: linear-gradient(90deg, var(--primary-dark) 0%, var(--primary) 40%, var(--primary-light) 100%);
  height: 46px;
  display: flex;
  align-items: center;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 -4px 20px rgba(139,30,45,0.35);
}
.fixed-bar:hover { filter: brightness(1.08); }

.fixed-bar-marquee {
  display: flex;
  white-space: nowrap;
  animation: barScroll 22s linear infinite;
}
.fixed-bar-marquee:hover { animation-play-state: paused; }

.fixed-bar-marquee span {
  display: inline-block;
  padding-right: 0;
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

@keyframes barScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

main { padding-bottom: 0; }

/* ── FOOTER ────────────────────────────────────────────── */
.site-footer { background: #111; color: rgba(255,255,255,0.75); }

.footer-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  height: 72px; width: auto; object-fit: contain; flex-shrink: 0;
  background: rgba(255,255,255,0.06);
  border-radius: 8px; padding: 6px 10px;
}

.footer-info {
  flex: 1;
  display: flex; flex-direction: column; gap: 0.2rem;
}
.footer-name {
  font-family: Poppins, sans-serif;
  font-size: 1rem; font-weight: 700;
  color: #fff;
}
.footer-address,
.footer-tel {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.58);
  line-height: 1.5;
}

.footer-apply-btn {
  display: inline-flex; align-items: center; gap: 0.55rem;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  color: #fff; font-size: 1rem; font-weight: 700;
  padding: 0.85rem 2rem;
  border-radius: 8px; flex-shrink: 0;
  box-shadow: 0 6px 22px rgba(139,30,45,0.35);
  transition: transform var(--ease), box-shadow var(--ease);
  white-space: nowrap;
}
.footer-apply-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(139,30,45,0.45);
}

.footer-bottom {
  padding: 0.85rem 0 calc(0.85rem + 46px);
  color: rgba(255,255,255,0.3);
  font-size: 0.8rem;
  text-align: center;
}

@media (max-width: 760px) {
  .footer-inner { flex-wrap: wrap; gap: 1.2rem; }
  .footer-apply-btn { width: 100%; justify-content: center; }
}
@media (max-width: 480px) {
  .footer-logo { height: 56px; }
  .footer-name { font-size: 0.9rem; }
}


/* ── RESPONSIVE ────────────────────────────────────────── */

@media (max-width: 1024px) {
  .hero-inner   { grid-template-columns: 1fr 400px; gap: 3rem; }
  .about-inner  { grid-template-columns: 1fr; gap: 3rem; }
  .about-image-badge { bottom: 1rem; left: 1rem; }
  .steps-grid   { grid-template-columns: repeat(3, 1fr); }
  .steps-grid::before { display: none; }
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 900px) {
  .hero-h1  { font-size: 2.6rem; }
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero { padding: 6rem 0 4rem; min-height: auto; }
  .programs-grid { grid-template-columns: 1fr; }
  .facilities-grid { grid-template-columns: repeat(2, 1fr); }

  .stats-inner  { flex-wrap: wrap; }
  .stat-item    { min-width: 48%; }
  .stat-divider { display: none; }
}

@media (max-width: 680px) {
  .hero-h1 { font-size: 2rem; }
  .section { padding: 3.5rem 0; }
  .section-header h2 { font-size: 1.8rem; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-grid .gallery-img:first-child { grid-row: auto; border-radius: var(--radius); }
  .gallery-img { height: 160px; }
  .facilities-grid { grid-template-columns: 1fr; }
  .strip-text { font-size: 0.8rem; }
}

@media (max-width: 480px) {
  .hero-h1 { font-size: 1.75rem; }
  .hero-cta-row { flex-direction: column; align-items: flex-start; }
  .badge-pill { font-size: 0.72rem; padding: 0.25rem 0.7rem; }
  .stat-num { font-size: 1.8rem; }
  .stat-item { min-width: 100%; }
  .steps-grid { grid-template-columns: 1fr; }
  .about-inner { gap: 2rem; }
  .about-image-badge { position: static; margin-top: 1rem; border-radius: var(--radius); }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-img { height: 200px; }
  .contact-inner { gap: 2rem; }
  .contact-form-wrap { padding: 1.5rem; }
}
