/* ============================================================
   NOVENA UNIVERSITY — Shared Stylesheet
   Modern & Bold Design | Brand Green: #45ab48 | Gold: #d0ae5e
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --primary: #45ab48;
  --primary-dark: #2d7a30;
  --primary-light: #e8f5e9;
  --primary-glow: rgba(69,171,72,0.25);
  --gold: #d0ae5e;
  --gold-dark: #a8882a;
  --gold-light: rgba(208,174,94,0.15);
  --dark: #0f1923;
  --dark-2: #1a2b3c;
  --dark-3: #2d3748;
  --gray: #64748b;
  --light: #f8fafc;
  --light-2: #edf2f7;
  --border: #e2e8f0;
  --white: #ffffff;
  --text: #1e293b;
  --text-light: #64748b;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  --shadow-sm: 0 1px 4px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.09);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.13);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.18);
  --shadow-green: 0 8px 30px rgba(69,171,72,0.30);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --nav-height: 80px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.65; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; color: var(--dark); }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
h4 { font-size: 1.2rem; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
.lead { font-size: 1.15rem; line-height: 1.8; color: var(--text-light); }

/* ===== LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-lg { max-width: 1380px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
}
.section-header { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.section-header .section-label { display: block; }
.section-title { margin-bottom: 18px; }
.section-subtitle { color: var(--text-light); font-size: 1.05rem; line-height: 1.75; }

.divider {
  width: 56px; height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  border-radius: var(--radius-full);
  margin: 16px auto 0;
}
.divider-left { margin-left: 0; }

/* ===== GRID ===== */
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-weight: 600; font-size: 0.95rem;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary { background: var(--primary); color: var(--white); border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-green); }
.btn-gold { background: var(--gold); color: var(--dark); border-color: var(--gold); font-weight: 700; }
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(208,174,94,0.35); }
.btn-outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--dark); transform: translateY(-2px); }
.btn-outline-primary { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline-primary:hover { background: var(--primary); color: var(--white); transform: translateY(-2px); }
.btn-lg { padding: 18px 44px; font-size: 1.05rem; }
.btn-sm { padding: 10px 22px; font-size: 0.85rem; }

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--white);
  padding: 11px 0;
  text-align: center;
  font-size: 0.84rem;
  font-weight: 500;
  position: relative;
  z-index: 1001;
}
.announcement-bar strong { color: var(--gold); margin-right: 6px; }
.announcement-bar a { color: var(--gold); text-decoration: underline; font-weight: 600; }

/* ===== NAVIGATION ===== */
.navbar {
  position: sticky; top: 0; left: 0; width: 100%;
  height: var(--nav-height);
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  transition: var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }

.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%;
  max-width: 1380px; margin: 0 auto; padding: 0 24px;
}

.navbar-brand { display: flex; align-items: center; gap: 13px; text-decoration: none; }
.logo-badge {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 900;
  font-size: 1.35rem; color: var(--white); letter-spacing: -1px;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(69,171,72,0.35);
}
.nav-logo-img {
  height: 58px;
  width: 58px;
  flex-shrink: 0;
  object-fit: contain;
  display: block;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 9px;
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(69,171,72,0.4);
}
.footer-logo-img {
  height: 44px;
  width: 44px;
  flex-shrink: 0;
  object-fit: contain;
  display: block;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name { font-family: var(--font-heading); font-weight: 800; font-size: 1.05rem; color: var(--dark); }
.logo-sub { font-size: 0.67rem; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--primary); }

.navbar-nav { display: flex; align-items: center; gap: 2px; }
.nav-link {
  padding: 8px 13px;
  font-size: 0.88rem; font-weight: 500;
  color: var(--dark-3);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--primary); background: var(--primary-light); }
.nav-cta {
  margin-left: 10px; padding: 10px 24px;
  background: var(--primary); color: var(--white) !important;
  border-radius: var(--radius-full); font-weight: 600; font-size: 0.88rem;
}
.nav-cta:hover { background: var(--primary-dark) !important; color: var(--white) !important; transform: translateY(-1px); box-shadow: var(--shadow-green); }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: var(--transition); }

.mobile-menu {
  display: none; position: fixed;
  top: var(--nav-height); left: 0; width: 100%;
  background: var(--white);
  padding: 16px 24px 28px;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  border-top: 2px solid var(--primary);
}
.mobile-menu.open { display: block; }
.mobile-menu .nav-link { display: block; padding: 13px 14px; font-size: 0.95rem; border-bottom: 1px solid var(--border); }
.mobile-menu .nav-cta { display: block; margin: 16px 0 0; text-align: center; }

/* ===== PAGE HERO ===== */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 60%, var(--primary-dark) 100%);
  padding: 90px 0 70px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url('images/novena-slider.jpg') center/cover no-repeat;
  opacity: 0.18;
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(15,25,35,0.4) 100%);
}
.page-hero-content { position: relative; z-index: 2; text-align: center; color: var(--white); }
.page-hero-content .section-label { color: var(--gold); }
.page-hero-content h1 { color: var(--white); margin-bottom: 14px; font-size: clamp(1.9rem, 4vw, 3rem); }
.page-hero-content p { color: rgba(255,255,255,0.78); font-size: 1.1rem; max-width: 580px; margin: 0 auto 22px; }

.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 0.84rem; }
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: rgba(255,255,255,0.4); }
.breadcrumb .current { color: var(--gold); font-weight: 500; }

/* ===== CARDS ===== */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); border-color: transparent; }
.card-img { width: 100%; height: 210px; object-fit: cover; }
.card-body { padding: 24px; }
.card-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--primary); margin-bottom: 8px; display: block; }
.card-title { font-size: 1.15rem; margin-bottom: 10px; color: var(--dark); line-height: 1.35; }
.card-text { color: var(--text-light); font-size: 0.9rem; line-height: 1.72; margin-bottom: 18px; }
.card-footer { padding: 16px 24px; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.card-meta { font-size: 0.8rem; color: var(--text-light); display: flex; align-items: center; gap: 6px; }

/* ===== BADGE ===== */
.badge {
  display: inline-block; padding: 4px 13px;
  border-radius: var(--radius-full);
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.3px;
}
.badge-primary { background: var(--primary-light); color: var(--primary-dark); }
.badge-gold { background: var(--gold-light); color: var(--gold-dark); }
.badge-dark { background: var(--dark); color: var(--white); }

/* ===== STATS BAR ===== */
.stats-bar { background: var(--dark); padding: 36px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat-item { text-align: center; padding: 16px 20px; position: relative; }
.stat-item:not(:last-child)::after {
  content: ''; position: absolute; right: 0; top: 20%; bottom: 20%;
  width: 1px; background: rgba(255,255,255,0.1);
}
.stat-number { font-family: var(--font-heading); font-size: 2.4rem; font-weight: 800; color: var(--primary); display: block; line-height: 1; }
.stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 1.5px; margin-top: 6px; display: block; }

/* ===== COLLEGE CARDS ===== */
.college-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex; flex-direction: column;
}
.college-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.college-card-img { height: 200px; object-fit: cover; width: 100%; }
.college-card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.college-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 16px;
}
.college-card-title { font-size: 1.1rem; margin-bottom: 10px; }
.college-card-text { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; flex: 1; margin-bottom: 18px; }
.college-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
.college-tag { background: var(--light); border: 1px solid var(--border); padding: 3px 10px; border-radius: var(--radius-full); font-size: 0.75rem; color: var(--text-light); }

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, #3aaa3d 100%);
  padding: 90px 0;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-section .section-label { color: var(--gold); position: relative; z-index: 1; }
.cta-section h2 { color: var(--white); position: relative; z-index: 1; margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.82); position: relative; z-index: 1; max-width: 560px; margin: 0 auto 36px; font-size: 1.05rem; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* ===== FEATURE ICONS ===== */
.feature-card { padding: 36px 30px; border-radius: var(--radius-md); background: var(--white); box-shadow: var(--shadow-sm); border: 1px solid var(--border); text-align: center; transition: var(--transition); }
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--primary-light); }
.feature-icon { width: 64px; height: 64px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin: 0 auto 22px; background: var(--primary-light); color: var(--primary); }
.feature-title { font-size: 1.05rem; margin-bottom: 10px; }
.feature-text { font-size: 0.88rem; color: var(--text-light); line-height: 1.75; }

/* ===== NEWS CARD ===== */
.news-card { border-radius: var(--radius-md); overflow: hidden; background: var(--white); box-shadow: var(--shadow-sm); border: 1px solid var(--border); transition: var(--transition); }
.news-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-xl); }
.news-card-img { width: 100%; height: 200px; object-fit: cover; }
.news-card-body { padding: 22px; }
.news-date { font-size: 0.78rem; color: var(--text-light); margin-bottom: 8px; display: flex; align-items: center; gap: 5px; }
.news-title { font-size: 1.05rem; line-height: 1.4; margin-bottom: 10px; color: var(--dark); }
.news-title a { color: var(--dark); }
.news-title a:hover { color: var(--primary); }
.news-excerpt { font-size: 0.87rem; color: var(--text-light); line-height: 1.7; }

/* ===== PUBLICATION CARD ===== */
.pub-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 24px; transition: var(--transition); display: flex; gap: 18px; }
.pub-card:hover { box-shadow: var(--shadow-md); border-color: var(--primary-light); }
.pub-icon { width: 48px; height: 48px; background: var(--primary-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 1.3rem; flex-shrink: 0; }
.pub-body { flex: 1; }
.pub-category { font-size: 0.73rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--primary); margin-bottom: 6px; }
.pub-title { font-size: 0.97rem; font-weight: 600; color: var(--dark); line-height: 1.4; margin-bottom: 6px; }
.pub-authors { font-size: 0.82rem; color: var(--text-light); margin-bottom: 4px; }
.pub-journal { font-size: 0.8rem; color: var(--primary-dark); font-style: italic; }

/* ===== GALLERY ===== */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.gallery-item { border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 4/3; position: relative; }
.gallery-item.tall { grid-row: span 2; aspect-ratio: auto; min-height: 300px; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,25,35,0.4) 0%, transparent 60%); opacity: 0; transition: var(--transition); }
.gallery-item:hover::after { opacity: 1; }

/* ===== TIMELINE ===== */
.timeline { position: relative; padding-left: 30px; }
.timeline::before { content: ''; position: absolute; left: 10px; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--primary), var(--gold)); }
.timeline-item { position: relative; margin-bottom: 36px; }
.timeline-dot { position: absolute; left: -24px; top: 4px; width: 14px; height: 14px; background: var(--primary); border-radius: 50%; border: 3px solid var(--white); box-shadow: 0 0 0 2px var(--primary); }
.timeline-year { font-size: 0.78rem; font-weight: 700; letter-spacing: 2px; color: var(--primary); text-transform: uppercase; margin-bottom: 4px; }
.timeline-title { font-size: 1.05rem; font-weight: 600; color: var(--dark); margin-bottom: 6px; }
.timeline-text { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; }

/* ===== LEADERSHIP ===== */
.leader-card { text-align: center; padding: 36px 24px; border-radius: var(--radius-md); background: var(--white); border: 1px solid var(--border); box-shadow: var(--shadow-sm); transition: var(--transition); }
.leader-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.leader-avatar { width: 100px; height: 100px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-size: 2rem; font-weight: 800; color: var(--white); margin: 0 auto 18px; box-shadow: var(--shadow-green); }
.leader-photo { width: 100px; height: 100px; border-radius: 50%; object-fit: cover; object-position: center top; margin: 0 auto 18px; display: block; box-shadow: var(--shadow-green); border: 3px solid var(--primary-light); }
.leader-name { font-size: 1.1rem; margin-bottom: 6px; }
.leader-title { font-size: 0.85rem; color: var(--primary); font-weight: 600; letter-spacing: 0.5px; margin-bottom: 12px; }
.leader-bio { font-size: 0.87rem; color: var(--text-light); line-height: 1.7; }

/* ===== ADMISSION STEPS ===== */
.step-card { display: flex; gap: 20px; padding: 28px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); transition: var(--transition); }
.step-card:hover { border-color: var(--primary-light); box-shadow: var(--shadow-md); }
.step-number { width: 52px; height: 52px; background: var(--primary); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-weight: 800; font-size: 1.3rem; color: var(--white); flex-shrink: 0; }
.step-content { flex: 1; }
.step-title { font-size: 1.05rem; margin-bottom: 8px; }
.step-text { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; }

/* ===== ACCREDITATION BANNER ===== */
.accreditation-banner { background: var(--primary-light); border: 1px solid rgba(69,171,72,0.3); border-radius: var(--radius-md); padding: 28px 32px; display: flex; align-items: center; gap: 20px; }
.acc-icon { font-size: 2.5rem; color: var(--primary); width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.acc-text h3 { color: var(--primary-dark); margin-bottom: 6px; }
.acc-text p { color: var(--text-light); font-size: 0.9rem; }

/* acc-card icons (about page accreditation section) */
.acc-card-icon { font-size: 1.6rem; color: var(--primary); width: 56px; height: 56px; background: var(--primary-light); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }

/* ===== FACILITIES ===== */
.facility-item { display: flex; align-items: flex-start; gap: 16px; padding: 20px; border-radius: var(--radius-md); border: 1px solid var(--border); background: var(--white); transition: var(--transition); }
.facility-item:hover { border-color: var(--primary-light); box-shadow: var(--shadow-sm); }
.facility-icon { width: 44px; height: 44px; background: var(--primary-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 1.2rem; flex-shrink: 0; }
.facility-name { font-weight: 600; font-size: 0.97rem; color: var(--dark); margin-bottom: 4px; }
.facility-desc { font-size: 0.85rem; color: var(--text-light); }

/* ===== FOOTER ===== */
.footer { background: var(--dark); color: rgba(255,255,255,0.75); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.6fr; gap: 48px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-logo-row { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-logo-row .logo-name { color: var(--white); }
.footer-about p { color: rgba(255,255,255,0.55); line-height: 1.8; font-size: 0.9rem; margin-bottom: 22px; }
.footer-social { display: flex; gap: 9px; }
.social-btn { width: 38px; height: 38px; background: rgba(255,255,255,0.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); font-size: 0.9rem; transition: var(--transition); }
.social-btn:hover { background: var(--primary); color: var(--white); transform: translateY(-3px); }
.footer-head { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 18px; padding-bottom: 10px; border-bottom: 2px solid var(--primary); display: inline-block; }
.footer-links li { margin-bottom: 9px; }
.footer-links a { color: rgba(255,255,255,0.55); font-size: 0.87rem; display: flex; align-items: center; gap: 7px; transition: var(--transition); }
.footer-links a:hover { color: var(--primary); padding-left: 4px; }
.footer-links a::before { content: '›'; font-size: 1rem; color: var(--primary); }
.footer-contact-item { display: flex; gap: 12px; margin-bottom: 14px; }
.fc-icon { width: 36px; height: 36px; background: rgba(69,171,72,0.12); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 0.85rem; flex-shrink: 0; }
.fc-info strong { display: block; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.85); margin-bottom: 2px; }
.fc-info span { font-size: 0.86rem; color: rgba(255,255,255,0.55); }
.footer-bottom { padding: 22px 0; display: flex; align-items: center; justify-content: space-between; font-size: 0.83rem; color: rgba(255,255,255,0.35); }
.footer-bottom a { color: rgba(255,255,255,0.4); }
.footer-bottom a:hover { color: var(--primary); }

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.text-white { color: var(--white); }
.text-primary { color: var(--primary); }
.text-gold { color: var(--gold); }
.bg-light { background: var(--light); }
.bg-dark { background: var(--dark); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-32 { margin-bottom: 32px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2)::after { display: none; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  :root { --nav-height: 72px; }
  .section { padding: 60px 0; }
  .navbar-nav { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-buttons { flex-direction: column; align-items: center; }
  .accreditation-banner { flex-direction: column; text-align: center; }
  .step-card { flex-direction: column; }
  .leader-card { text-align: center; }
  .timeline-item { flex-direction: column; gap: 8px; }
  .welcome-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .section-header { text-align: center; }
  table { font-size: 0.85rem; }
  .announcement-bar { font-size: 0.8rem; padding: 9px 14px; }
  .nav-logo-img { height: 50px; width: 50px; }
}
@media (max-width: 480px) {
  .container { padding: 0 14px; }
  h1 { font-size: 1.85rem; }
  h2 { font-size: 1.5rem; }
  .btn-lg { padding: 14px 28px; font-size: 0.95rem; width: 100%; text-align: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { gap: 20px; }
  .hero-stat-num { font-size: 1.5rem; }
  .footer-contact-item { flex-direction: column; gap: 6px; }
  .section-label { font-size: 0.7rem; }
  .college-card-body { padding: 20px; }
  .news-card-body { padding: 16px; }
}
