/* USAEOP Staging Site - Main Styles */
/* Color palette: gold/amber primary, dark navy secondary, white content */

:root {
  --gold: #f79000;
  --gold-hover: #e07f00;
  --gold-light: #fdb94a;
  --navy: #1a2340;
  --navy-dark: #0e1528;
  --navy-mid: #243052;
  --charcoal: #333;
  --gray: #666;
  --gray-light: #f5f5f5;
  --white: #ffffff;
  --red: #cc3300;
  --blue: #1a5fa0;
  --green: #2a7a3a;
  --orange: #f79000;
  --purple: #6a3d9a;
}

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

body {
  font-family: 'Source Sans Pro', 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  background: #fff;
}

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-hover); text-decoration: underline; }

.wrapper { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.clearit { clear: both; }

/* ===== HEADER ===== */
.site-header {
  background: var(--navy);
  position: relative;
  z-index: 100;
}
.site-header .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
}
.site-header .logo img {
  height: 55px;
  width: auto;
}
.site-header .logo { margin: 0; }

/* Nav */
.navigation ul { list-style: none; display: flex; gap: 0; margin: 0; padding: 0; }
.navigation ul li { position: relative; }
.navigation ul li a {
  display: block;
  color: #fff;
  padding: 10px 15px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  transition: color 0.2s, background 0.2s;
}
.navigation ul li a:hover { color: var(--gold); text-decoration: none; background: rgba(255,255,255,0.05); }
.navigation ul li.current > a { color: var(--gold); }

/* Dropdown */
.navigation ul li .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--navy-dark);
  min-width: 240px;
  z-index: 200;
  border-top: 3px solid var(--gold);
  flex-direction: column;
  gap: 0;
}
.navigation ul li:hover .sub-menu { display: flex; }
.navigation ul li .sub-menu li a {
  padding: 10px 18px;
  font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.navigation ul li .sub-menu li a:hover { background: rgba(247,144,0,0.15); color: var(--gold); }

/* Mobile nav */
.mobile-nav { display: none; }
.mobile-nav a.button {
  background: var(--gold);
  color: #fff;
  padding: 8px 18px;
  border-radius: 3px;
  font-weight: bold;
  font-size: 13px;
}

/* ===== HOMEPAGE HERO ===== */
.intro-page {
  position: relative;
  min-height: 600px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  background-image: url('https://usaeop.com/wp-content/uploads/2018/01/Home-crop-10.jpg');
  background-size: cover;
  background-position: left bottom;
  display: flex;
  align-items: center;
}
.intro-page .intro-content {
  width: 100%;
  padding: 80px 20px;
}
.intro-content .content-align {
  max-width: 1100px;
  margin: 0 auto;
}
.intro-content .blurb {
  max-width: 480px;
  background: rgba(10, 20, 50, 0.75);
  padding: 40px;
  border-left: 5px solid var(--gold);
}
.intro-content .logo img { height: 60px; margin-bottom: 20px; }
.intro-content h2 {
  font-size: 2.2rem;
  color: #fff;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 25px;
}
.intro-content h2 span { color: var(--gold); font-weight: 700; }

/* ===== BUTTONS ===== */
.button, a.button, input[type="submit"], button.submit {
  display: inline-block;
  background: var(--gold);
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 3px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
}
.button:hover, a.button:hover { background: var(--gold-hover); text-decoration: none; color: #fff !important; }
.button.small { padding: 7px 16px; font-size: 12px; }
.button.more { background: var(--navy); }
.button.more:hover { background: var(--navy-mid); }

/* ===== PAGE HERO ===== */
.page-title {
  background: var(--navy);
  background-size: cover;
  background-position: center top;
  position: relative;
}
.page-title .title, .page-title .hdr {
  background: rgba(15, 25, 60, 0.7);
}
.page-title .title .wrapper, .page-title .hdr .wrapper {
  padding: 60px 20px;
}
.page-title h2 {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.page-title p {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  max-width: 600px;
  margin-bottom: 15px;
}
.page-title.no-hero .title .wrapper { padding: 30px 20px; }
.page-title.no-hero h2 { font-size: 1.6rem; }

/* ===== MAIN CONTENT ===== */
.main-content { padding: 50px 0; }
.main-content.pattern { background: #fff; }

.main-content .wrapper { padding: 0 20px; }
.main-content .blurb-hdr {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--gray-light);
}

.main-content h3 {
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 20px;
  font-weight: 700;
}
.main-content h3.align-center { text-align: center; }
.main-content h3.uppercase { text-transform: uppercase; }
.main-content h4 {
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 12px;
  font-weight: 600;
}

.main-content p { margin-bottom: 15px; color: var(--charcoal); }

.column-l { float: left; width: 65%; padding-right: 30px; }
.column-r { float: right; width: 32%; }

/* ===== PROGRAM CARDS (result blocks) ===== */
.results { padding: 20px 0; }

.result {
  display: flex;
  margin-bottom: 25px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
  border-left: 5px solid var(--gold);
}
.result.red { border-left-color: var(--red); }
.result.blue { border-left-color: var(--blue); }
.result.green { border-left-color: var(--green); }
.result.orange { border-left-color: var(--orange); }
.result.purple { border-left-color: var(--purple); }

.result .img {
  width: 100px;
  min-width: 100px;
  background: var(--gray-light);
  background-size: cover;
  background-position: center;
}
.result .blurb { padding: 20px; flex: 1; }
.result .blurb h4 { margin-bottom: 8px; font-size: 1.05rem; }
.result .blurb h4 span a { color: var(--navy); font-weight: 700; }
.result .blurb h4 span a:hover { color: var(--gold); }
.result .blurb p { font-size: 0.9rem; margin-bottom: 8px; color: var(--gray); }
.result .blurb p a { color: var(--gold); }
.result .blurb h4 a.check {
  float: right;
  font-size: 11px;
  background: var(--gray-light);
  color: var(--gray);
  padding: 3px 10px;
  border-radius: 3px;
  font-weight: normal;
}
.result .eligibility { background: var(--gray-light); padding: 10px 15px; border-radius: 3px; margin-bottom: 10px; font-size: 0.85rem; }
.result .eligibility p { margin-bottom: 5px; }
.result .eligibility a { color: var(--gold); font-weight: bold; font-size: 0.8rem; }

/* Blog list */
.result .date { color: var(--gray); font-size: 0.85rem; font-style: italic; margin-bottom: 5px; }

/* ===== PROGRAM PATHWAY BULLETS ===== */
.alternative-bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 30px 0;
  justify-content: center;
}
.bullet-area {
  width: calc(14% - 20px);
  min-width: 120px;
  max-width: 160px;
}
.bullet {
  position: relative;
}
.bullet-int {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px 10px;
  background: var(--navy);
  border-radius: 8px;
  transition: background 0.2s;
  min-height: 100px;
  justify-content: center;
}
.bullet-int:hover { background: var(--navy-mid); text-decoration: none; }
.bullet-int span img {
  max-width: 80px;
  max-height: 60px;
  object-fit: contain;
}
.bullet-blurb {
  display: none;
  position: absolute;
  top: 0;
  left: 110%;
  width: 280px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 20px;
  z-index: 50;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.bullet:hover .bullet-blurb { display: block; }
.bullet-blurb h4 { font-size: 1rem; margin-bottom: 10px; color: var(--navy); }
.bullet-blurb p { font-size: 0.85rem; margin-bottom: 8px; }
.bullet-blurb ul { padding-left: 18px; font-size: 0.85rem; margin-bottom: 10px; }
.bullet-blurb ul li { margin-bottom: 3px; }
.bullet-blurb .buttons { display: flex; gap: 8px; flex-wrap: wrap; }
.bullet-blurb .buttons a { font-size: 11px; padding: 5px 12px; }
.bullet-blurb .buttons .close { background: var(--gray-light); color: var(--gray) !important; }

/* ===== EXPLORE PROGRAM TYPES (big sections) ===== */
.programs { }
.programs .program {
  display: flex;
  margin-bottom: 40px;
  align-items: stretch;
  border-radius: 4px;
  overflow: hidden;
  min-height: 200px;
}
.programs .program.right { flex-direction: row; }
.programs .program.left { flex-direction: row-reverse; }
.programs .program .img { flex: 0 0 50%; overflow: hidden; }
.programs .program .img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.programs .program .blurb { flex: 0 0 50%; padding: 40px; display: flex; flex-direction: column; justify-content: center; }
.programs .program.red .blurb { background: var(--red); }
.programs .program.green .blurb { background: var(--green); }
.programs .program.blue .blurb { background: var(--blue); }
.programs .program.orange .blurb { background: var(--orange); }
.programs .program .blurb h4.bar { color: #fff; font-size: 1.4rem; margin-bottom: 15px; }
.programs .program .blurb h4.bar a { color: #fff; }
.programs .program .blurb h4.bar a:hover { color: rgba(255,255,255,0.8); }
.programs .program .blurb p { color: rgba(255,255,255,0.9); font-size: 0.95rem; }
.programs .program .blurb a.more { color: #fff; font-weight: bold; text-transform: uppercase; font-size: 0.85rem; }
.programs .program .blurb .indent { padding-left: 0; }

/* ===== STUDENT GALLERY ===== */
.students { padding: 30px 0; }
.students h3 { margin-bottom: 10px; }
.students > p { color: var(--gray); margin-bottom: 25px; }
.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.gallery .square {
  width: calc(25% - 12px);
  min-width: 150px;
  aspect-ratio: 1;
}
.gallery .pic {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--navy);
  border-radius: 4px;
}
.gallery .pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s;
}
.gallery .pic:hover img { opacity: 0.3; }
.gallery .pic-over {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  opacity: 0;
  transition: opacity 0.3s;
  text-align: center;
}
.gallery .pic:hover .pic-over { opacity: 1; }
.gallery .pic-over p { color: #fff; font-size: 0.8rem; margin-bottom: 5px; }
.gallery .pic-over .name { font-weight: bold; font-size: 0.95rem; }
.gallery .square.text { }
.gallery .square.text .pic {
  background: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery .square.text .pic .table-cell { padding: 15px; text-align: center; }
.gallery .square.text .pic .table-cell p { color: #fff; font-size: 0.9rem; margin-bottom: 10px; }
.table { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; }
.table-cell { text-align: center; padding: 10px; }

/* ===== BLOG SLIDER / LATEST ===== */
.latest-posts {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 20px 0;
}
.latest-posts .box {
  flex: 0 0 calc(33.33% - 14px);
  display: flex;
  gap: 15px;
  padding: 15px;
  border: 1px solid #eee;
  border-radius: 4px;
}
.latest-posts .box img { width: 80px; height: 80px; object-fit: cover; flex-shrink: 0; border-radius: 3px; }
.latest-posts .box .ind { flex: 1; }
.latest-posts .box .date { font-size: 0.8rem; color: var(--gray); margin-bottom: 5px; }
.latest-posts .box p { font-size: 0.85rem; color: var(--charcoal); }
.latest-posts .box a { color: var(--navy); font-weight: 600; }
.latest-posts .box a:hover { color: var(--gold); }

/* ===== SOCIAL ===== */
.social { padding: 30px 20px; display: flex; justify-content: center; gap: 20px; background: var(--gray-light); }
.social ul { list-style: none; display: flex; gap: 20px; }
.social ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: var(--navy);
  color: #fff;
  border-radius: 50%;
  font-size: 18px;
  transition: background 0.2s;
}
.social ul li a:hover { background: var(--gold); text-decoration: none; }
.social ul li.facebook a:hover { background: #3b5998; }
.social ul li.twitter a:hover { background: #1da1f2; }
.social ul li.youtube a:hover { background: #ff0000; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--navy);
  padding: 40px 20px;
  display: flex;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}
.footer-logo img { height: 50px; }
.footer-logo p { margin-bottom: 10px; }
.footer-logo p a { color: rgba(255,255,255,0.7); font-size: 13px; margin-right: 15px; }
.footer-logo p a:hover { color: var(--gold); }
.newsletter p { color: #fff; margin-bottom: 10px; font-size: 14px; }
.newsletter { flex: 1; }
.newsletter-form { display: flex; gap: 10px; }
.newsletter-form input[type="email"] {
  padding: 10px 15px;
  border: none;
  border-radius: 3px;
  font-size: 14px;
  flex: 1;
}
.newsletter-form button {
  background: var(--gold);
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 3px;
  font-weight: bold;
  cursor: pointer;
  font-size: 14px;
}
.newsletter-form button:hover { background: var(--gold-hover); }

/* ===== PROGRAM DETAIL PAGE ===== */
.program-detail { padding: 40px 0; }
.program-detail .program-hdr {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.program-detail .program-logo { max-width: 250px; }
.program-detail .program-logo img { max-width: 100%; }
.program-detail .program-logo .short-name {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--navy);
}

.tabs { display: flex; gap: 0; border-bottom: 3px solid var(--gold); margin-bottom: 25px; }
.tab-btn {
  padding: 10px 25px;
  background: var(--gray-light);
  border: 1px solid #ddd;
  border-bottom: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  color: var(--charcoal);
  transition: background 0.2s;
}
.tab-btn.active { background: var(--gold); color: #fff; border-color: var(--gold); }
.tab-btn:hover { background: var(--navy); color: #fff; }
.tab-content { display: none; }
.tab-content.active { display: block; }

.highlight-box {
  background: var(--gray-light);
  border-left: 4px solid var(--gold);
  padding: 20px;
  margin: 20px 0;
  border-radius: 0 4px 4px 0;
}
.highlight-box h4 { margin-bottom: 10px; color: var(--navy); }
.highlight-box p, .highlight-box li { font-size: 0.9rem; color: var(--charcoal); }

.sidebar { background: var(--gray-light); padding: 25px; border-radius: 4px; }
.sidebar h4 { color: var(--navy); margin-bottom: 12px; border-bottom: 2px solid var(--gold); padding-bottom: 8px; }
.sidebar p, .sidebar li { font-size: 0.9rem; }

/* ===== ABOUT PAGE ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin: 30px 0;
}
.about-section h4 { color: var(--navy); margin-bottom: 10px; border-bottom: 2px solid var(--gold); padding-bottom: 8px; }

/* ===== CONTACT FORM ===== */
.contact-form { max-width: 600px; }
.contact-form .form-group { margin-bottom: 20px; }
.contact-form label { display: block; font-weight: 600; margin-bottom: 5px; color: var(--navy); }
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #ccc;
  border-radius: 3px;
  font-size: 14px;
  font-family: inherit;
}
.contact-form textarea { height: 130px; resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(247,144,0,0.2);
}
.success-msg {
  background: #e8f5e9;
  border: 1px solid #4caf50;
  color: #2e7d32;
  padding: 15px 20px;
  border-radius: 4px;
  margin-bottom: 20px;
}

/* ===== LEADERS PAGE ===== */
.leaders-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 20px 0;
}
.leader-card {
  flex: 0 0 calc(50% - 10px);
  border: 1px solid #eee;
  border-radius: 4px;
  overflow: hidden;
}
.leader-card .leader-img { height: 200px; background: var(--navy); overflow: hidden; }
.leader-card .leader-img img { width: 100%; height: 100%; object-fit: cover; }
.leader-card .leader-info { padding: 15px; }
.leader-card .leader-info h4 { color: var(--navy); margin-bottom: 5px; }
.leader-card .leader-info p { font-size: 0.85rem; color: var(--gray); }

/* Partners logo grid */
.partners-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
  margin: 20px 0;
}
.partners-grid img { max-height: 80px; max-width: 180px; object-fit: contain; filter: grayscale(0.3); }

/* Map placeholder */
.map-placeholder {
  background: linear-gradient(135deg, #1a2340, #243052);
  border: 2px dashed rgba(247,144,0,0.5);
  border-radius: 6px;
  padding: 60px 40px;
  text-align: center;
  margin: 30px 0;
  color: rgba(255,255,255,0.7);
}
.map-placeholder h3 { color: var(--gold); margin-bottom: 10px; }
.map-placeholder p { font-size: 0.9rem; }

/* Section white/pattern helpers */
.section.white { background: #fff; padding: 40px 0; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .navigation { display: none; }
  .mobile-nav { display: block; }
  .intro-page { min-height: 400px; }
  .intro-content .blurb { max-width: 100%; }
  .programs .program { flex-direction: column !important; }
  .programs .program .img { height: 200px; }
  .programs .program .blurb { padding: 25px; }
  .gallery .square { width: calc(50% - 8px); }
  .about-grid { grid-template-columns: 1fr; }
  .leader-card { flex: 0 0 100%; }
  .latest-posts .box { flex: 0 0 100%; }
  .bullet-area { width: calc(33% - 15px); }
  .column-l, .column-r { float: none; width: 100%; padding-right: 0; }
}

@media (max-width: 600px) {
  .intro-content h2 { font-size: 1.5rem; }
  .gallery .square { width: calc(50% - 8px); }
  .bullet-area { width: calc(50% - 10px); }
  .bullet-blurb { left: auto; right: 0; top: 110%; }
  .latest-posts .box { flex-direction: column; }
  .latest-posts .box img { width: 100%; height: 150px; }
}

/* Program hero logo inline */
.hdr-logo { text-align: center; }
.hdr-logo p { margin-bottom: 10px; }
.hdr-logo .short-name {
  font-size: 3rem;
  font-weight: 900;
  color: var(--gold);
}

/* indent helper */
.indent { padding-left: 20px; }
.align-center { text-align: center; }
.center { text-align: center; }
.uppercase { text-transform: uppercase; }

ul li, ol li { margin-bottom: 4px; }
ul { padding-left: 20px; }

/* ============================================================
   REDESIGN 2025 — USAEOP HOMEPAGE STYLES
   ============================================================ */

/* Override: purple brand colors for new design */
:root {
  --brand-purple: #5c2d91;
  --brand-gold: #f0a500;
  --brand-gold-hover: #d4920a;
  --brand-red: #e74c3c;
  --brand-green: #27ae60;
  --brand-teal: #1abc9c;
  --brand-orange: #e67e22;
}

/* ===== NEW STICKY HEADER ===== */
.site-header {
  background: #fff !important;
  position: sticky !important;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 72px;
}
.site-logo { margin: 0; line-height: 0; }
.site-logo img { height: 56px; width: auto; }

/* Main nav — white header style */
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 0;
  margin: 0;
  padding: 0;
  align-items: center;
}
.main-nav ul li { position: relative; }
.main-nav ul li a {
  display: block;
  color: #333 !important;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  white-space: nowrap;
  transition: color 0.2s;
  text-decoration: none;
  border-bottom: 3px solid transparent;
}
.main-nav ul li a:hover,
.main-nav ul li.current > a {
  color: var(--brand-purple) !important;
  border-bottom-color: var(--brand-purple);
  text-decoration: none;
}
.main-nav .nav-search a { border-bottom: none !important; }
.main-nav .nav-search a:hover { color: var(--brand-purple) !important; }

/* Dropdowns */
.main-nav .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 260px;
  z-index: 500;
  border-top: 3px solid var(--brand-purple);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  flex-direction: column;
  gap: 0;
}
.main-nav li.has-dropdown:hover .dropdown { display: flex; }
.main-nav .dropdown li a {
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  text-transform: none;
  border-bottom: 1px solid #f0f0f0;
  letter-spacing: 0;
  color: #333 !important;
}
.main-nav .dropdown li a:hover { color: var(--brand-purple) !important; background: #f9f5ff; border-bottom-color: #f0f0f0; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: #333;
  border-radius: 2px;
  transition: all 0.2s;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

@media (max-width: 960px) {
  .main-nav { display: none; }
  .main-nav.open {
    display: block;
    position: absolute;
    top: 72px;
    left: 0; right: 0;
    background: #fff;
    z-index: 900;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 10px 0 20px;
  }
  .main-nav.open ul { flex-direction: column; }
  .main-nav.open ul li a { padding: 12px 20px; border-bottom: 1px solid #f0f0f0; }
  .main-nav.open .dropdown { display: flex; position: static; box-shadow: none; border-top: none; background: #f9f5ff; }
  .main-nav.open .dropdown li a { padding-left: 36px; font-size: 12px; }
  .hamburger { display: flex; }
}

/* ===== HERO SECTION ===== */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  background-image: url('/images/theme/home-hero.jpg');
  background-size: cover;
  background-position: center left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 35%, rgba(92,45,145,0.88) 60%, rgba(92,45,145,0.95) 100%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  padding: 0 60px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.hero-blurb {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  max-width: 520px;
}
.hero-bar {
  width: 4px;
  height: 80px;
  background: var(--brand-gold);
  flex-shrink: 0;
  margin-top: 8px;
}
.hero-text { flex: 1; }
.hero-logo img { height: 56px; margin-bottom: 20px; filter: brightness(0) invert(1); }
.hero-headline { margin-bottom: 24px; line-height: 1.15; }
.hero-sub {
  display: block;
  color: #fff;
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hero-main {
  display: block;
  color: var(--brand-gold);
  font-size: clamp(32px, 4.5vw, 64px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.hero-cta {
  display: inline-block;
  background: var(--brand-gold);
  color: var(--brand-purple) !important;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  text-decoration: none !important;
  transition: background 0.2s, transform 0.1s;
}
.hero-cta:hover { background: var(--brand-gold-hover); transform: translateY(-1px); text-decoration: none !important; }

.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.scroll-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--brand-gold);
  color: #fff !important;
  font-size: 18px;
  text-decoration: none !important;
  transition: background 0.2s;
}
.scroll-btn:hover { background: var(--brand-gold-hover); }

@media (max-width: 768px) {
  .hero-content { justify-content: center; padding: 0 24px; }
  .hero-overlay { background: rgba(92,45,145,0.75); }
  .hero-blurb { max-width: 100%; }
}

/* ===== SECTION SHARED STYLES ===== */
.section-title {
  text-align: center;
  color: var(--brand-purple);
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 700;
  margin-bottom: 40px;
}
.section-title.uppercase-title { text-transform: uppercase; }
.section-subtitle {
  text-align: center;
  color: #666;
  margin-top: -30px;
  margin-bottom: 30px;
}

/* Pattern background helper */
.patterned-bg {
  background-color: #f5f5f5;
  background-image: url('/images/theme/pattern-bg.png');
  background-repeat: repeat;
}

/* ===== PATHWAY SECTION ===== */
.pathway-section {
  background-color: #f5f5f5;
  background-image: url('/images/theme/pattern-bg.png');
  background-repeat: repeat;
  padding: 70px 0;
}
.pathway-items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
  position: relative;
}
.pathway-items::before {
  content: '';
  position: absolute;
  top: 75px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: rgba(92,45,145,0.15);
  z-index: 0;
}
.pathway-item {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 160px;
  text-align: center;
}
.pathway-ring {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 8px solid #ccc;
  background: #fff;
  margin-bottom: 14px;
  transition: box-shadow 0.2s, transform 0.2s;
  text-decoration: none !important;
  overflow: hidden;
}
.pathway-ring:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.18); transform: translateY(-4px); }
.pathway-ring img { max-width: 100px; max-height: 90px; object-fit: contain; }
.pathway-item h4 { font-size: 13px; font-weight: 700; color: var(--brand-purple); margin-bottom: 8px; line-height: 1.3; }
.pathway-item h4 a { color: var(--brand-purple); text-decoration: none; }
.pathway-item h4 a:hover { text-decoration: underline; }
.pathway-item p { font-size: 12px; color: #555; margin-bottom: 8px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.pathway-item ul { list-style: none; padding: 0; font-size: 11px; color: #666; text-align: left; }
.pathway-item ul li { padding-left: 12px; position: relative; margin-bottom: 2px; }
.pathway-item ul li::before { content: '•'; position: absolute; left: 0; color: var(--brand-purple); }

@media (max-width: 768px) {
  .pathway-items::before { display: none; }
  .pathway-item { width: 140px; }
  .pathway-ring { width: 120px; height: 120px; }
}

/* ===== EXPLORE PROGRAM TYPES ===== */
.program-types-section {
  background-color: #f5f5f5;
  background-image: url('/images/theme/pattern-bg.png');
  background-repeat: repeat;
  padding: 70px 0;
}
.prog-type-block {
  display: flex;
  align-items: stretch;
  margin-bottom: 60px;
  min-height: 320px;
  gap: 50px;
}
.prog-type-block.left { flex-direction: row-reverse; }
.prog-type-img {
  flex: 0 0 45%;
  position: relative;
}
.prog-type-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: rotate(-2deg);
  box-shadow: 8px 8px 0 rgba(0,0,0,0.10);
  border-radius: 2px;
  position: relative;
  z-index: 1;
}
.prog-type-img.flip img { transform: rotate(2deg); }
.prog-type-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.prog-ribbon {
  display: inline-block;
  padding: 12px 20px;
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% 80%, 90% 100%, 0 80%);
  margin-bottom: 8px;
  max-width: fit-content;
}
.prog-ribbon a {
  color: #fff !important;
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none !important;
}
.prog-type-content > p {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}
.prog-explore {
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none !important;
}
.prog-explore:hover { text-decoration: underline !important; }

@media (max-width: 768px) {
  .prog-type-block,
  .prog-type-block.left { flex-direction: column !important; }
  .prog-type-img { flex: none; height: 220px; }
  .prog-type-img img { transform: none; }
}

/* ===== STUDENTS SECTION ===== */
.students-section {
  background: #fff;
  padding: 70px 0;
}
.students-mosaic {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
}
.mosaic-cell {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
  background: #ddd;
}
.mosaic-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.mosaic-cell:hover img { transform: scale(1.05); }
.mosaic-cell.mosaic-cta {
  background: var(--brand-purple);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
  gap: 14px;
}
.mosaic-cell.mosaic-cta p {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}
.mosaic-story-btn {
  display: inline-block;
  border: 2px solid var(--brand-gold);
  color: var(--brand-gold) !important;
  padding: 8px 14px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none !important;
  transition: background 0.2s, color 0.2s;
}
.mosaic-story-btn:hover { background: var(--brand-gold); color: var(--brand-purple) !important; }

@media (max-width: 960px) {
  .students-mosaic { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 600px) {
  .students-mosaic { grid-template-columns: repeat(3, 1fr); }
}

/* ===== BLOG SECTION ===== */
.blog-section {
  background-color: #f5f5f5;
  background-image: url('/images/theme/pattern-bg.png');
  background-repeat: repeat;
  padding: 70px 0;
}
.blog-nav {
  display: flex;
  justify-content: flex-end;
  gap: 0;
  margin-bottom: 24px;
}
.blog-arrow {
  width: 40px;
  height: 40px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #aaa;
  color: #fff;
}
.blog-arrow.gold-arrow { background: var(--brand-gold); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  background: #fff;
  border-radius: 4px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.blog-thumb {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
  flex-shrink: 0;
}
.blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.blog-date {
  font-size: 11px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
  margin: 0;
}
.blog-card h4 {
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  margin: 0;
  line-height: 1.4;
}
.blog-card h4 a { color: var(--brand-purple); text-decoration: none; }
.blog-card h4 a:hover { text-decoration: underline; }
.blog-excerpt {
  font-size: 13px;
  color: #555;
  text-align: center;
  margin: 0;
  line-height: 1.5;
}

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

/* ===== SOCIAL ROW ===== */
.social-row {
  background: #fff;
  padding: 30px 20px;
  border-top: 1px solid #eee;
}
.social-row-inner {
  display: flex;
  justify-content: center;
  gap: 18px;
}
.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--brand-purple);
  color: #fff !important;
  font-size: 18px;
  text-decoration: none !important;
  transition: background 0.2s, transform 0.15s;
}
.social-icon:hover { background: var(--brand-gold); transform: scale(1.1); }

/* ===== FOOTER NEW ===== */
.site-footer-new {
  background: var(--brand-purple);
  color: #fff;
}
.footer-inner {
  display: flex;
  gap: 60px;
  padding: 50px 20px 30px;
  flex-wrap: wrap;
  align-items: flex-start;
}
.footer-newsletter { flex: 1; min-width: 280px; }
.footer-newsletter h4 {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
}
.footer-newsletter .newsletter-form { display: flex; }
.footer-newsletter .newsletter-form input[type="email"] {
  padding: 12px 16px;
  border: none;
  font-size: 14px;
  flex: 1;
  border-radius: 0;
  outline: none;
}
.footer-newsletter .newsletter-form button {
  background: var(--brand-gold);
  color: #fff;
  border: none;
  padding: 12px 20px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  border-radius: 0;
  text-transform: uppercase;
  transition: background 0.2s;
}
.footer-newsletter .newsletter-form button:hover { background: var(--brand-gold-hover); }
.footer-right {
  min-width: 200px;
  text-align: right;
}
.footer-logo-wrap img { height: 48px; filter: brightness(0) invert(1); margin-bottom: 14px; }
.footer-links a {
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  text-decoration: none;
  margin-left: 16px;
  transition: color 0.2s;
}
.footer-links a:hover { color: #fff; text-decoration: underline; }
.footer-bar {
  background: rgba(0,0,0,0.2);
  text-align: center;
  padding: 14px 20px;
}
.footer-bar p {
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  margin: 0;
}

@media (max-width: 600px) {
  .footer-inner { flex-direction: column; gap: 30px; }
  .footer-right { text-align: left; }
  .footer-links a { margin-left: 0; margin-right: 12px; }
}

/* ===== OVERRIDE old footer/social for pages that still use old partials ===== */
.social { display: none; }
.site-footer { display: none; }
