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

/* --- DESIGN SYSTEM TOKENS --- */
:root {
  --primary-dark: #07162c;
  --secondary-dark: #0f2441;
  --accent-gold: #c59b27;
  --accent-gold-hover: #dcb33f;
  --bg-light: #fbf9f6;
  --bg-card: #ffffff;
  --bg-muted: #f4f1eb;
  --text-dark: #1e293b;
  --text-light: #f8fafc;
  --text-muted: #64748b;
  --border-color: #e8e4dc;
  
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
  
  --shadow-sm: 0 2px 8px rgba(7, 22, 44, 0.04);
  --shadow-md: 0 8px 30px rgba(7, 22, 44, 0.08);
  --shadow-lg: 0 15px 40px rgba(7, 22, 44, 0.12);
  
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
}

/* --- RESET & GLOBAL STYLES --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

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

/* --- REUSABLE UTILITIES --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 80px 0;
}

.text-center { text-align: center; }
.gold-text { color: var(--accent-gold); }
.light-bg { background-color: var(--bg-light); }
.dark-bg { background-color: var(--primary-dark); color: var(--text-light); }
.white-bg { background-color: #ffffff; }

.section-title {
  font-size: 2.5rem;
  margin-bottom: 16px;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--accent-gold);
  margin: 16px auto 0 auto;
}

.section-title.left-align::after {
  margin: 16px 0 0 0;
}

.section-subtitle {
  font-family: var(--font-sans);
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 48px auto;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --- BUTTONS --- */
.btn {
  display: inline-block;
  padding: 12px 28px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 2px solid transparent;
}

.btn-primary {
  background-color: var(--accent-gold);
  color: var(--primary-dark);
}

.btn-primary:hover {
  background-color: var(--accent-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(197, 155, 39, 0.3);
}

.btn-outline-white {
  border-color: #ffffff;
  color: #ffffff;
  background: transparent;
}

.btn-outline-white:hover {
  background-color: #ffffff;
  color: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-outline-navy {
  border-color: var(--primary-dark);
  color: var(--primary-dark);
  background: transparent;
}

.btn-outline-navy:hover {
  background-color: var(--primary-dark);
  color: var(--text-light);
  transform: translateY(-2px);
}

/* --- HEADER / NAVBAR --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-smooth);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(7, 22, 44, 0.9);
  backdrop-filter: blur(10px);
}

header.scrolled {
  background-color: var(--primary-dark);
  box-shadow: var(--shadow-md);
  border-bottom: 1px solid rgba(197, 155, 39, 0.2);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  background-color: #ffffff;
  border-radius: 50%;
  padding: 2px;
  border: 1px solid var(--accent-gold);
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.5px;
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 32px;
}

.nav-item a {
  color: var(--text-light);
  font-weight: 500;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  opacity: 0.85;
  padding: 8px 0;
}

.nav-item a:hover,
.nav-item.active a {
  color: var(--accent-gold);
  opacity: 1;
}

.nav-item a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-gold);
  transition: var(--transition-smooth);
}

.nav-item a:hover::after,
.nav-item.active a::after {
  width: 100%;
}

.btn-inquire {
  padding: 8px 20px;
  background-color: var(--secondary-dark);
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-inquire:hover {
  background-color: var(--accent-gold);
  color: var(--primary-dark);
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 1.5rem;
  cursor: pointer;
}

/* --- HERO SECTION --- */
.hero {
  position: relative;
  height: 80vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--text-light);
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(7, 22, 44, 0.75) 0%, rgba(7, 22, 44, 0.85) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 24px;
  margin-top: 80px;
}

.hero-subtitle {
  font-size: 1.1rem;
  text-transform: uppercase;
  color: var(--accent-gold);
  letter-spacing: 3px;
  font-weight: 600;
  margin-bottom: 16px;
  animation: fadeInDown 0.8s ease;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.2s both;
  color: var(--text-light);
}

.hero-description {
  font-size: 1.2rem;
  max-width: 650px;
  margin: 0 auto 32px auto;
  opacity: 0.9;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  animation: fadeInUp 0.8s ease 0.6s both;
}

/* --- INNER HERO (SUB PAGES) --- */
.inner-hero {
  height: 35vh;
  min-height: 250px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  position: relative;
  color: var(--text-light);
  margin-bottom: 0;
}

.inner-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(7, 22, 44, 0.9) 0%, rgba(7, 22, 44, 0.5) 100%);
  z-index: 1;
}

.inner-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  margin-top: 60px;
}

.inner-hero-title {
  font-size: 3rem;
  margin-bottom: 12px;
  color: var(--text-light);
}

.inner-hero-breadcrumbs {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-gold);
  display: flex;
  gap: 8px;
}

/* --- CARDS & GRID LAYOUTS --- */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Premium Card Design */
.premium-card {
  background-color: var(--bg-card);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
}

.premium-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-gold);
}

.premium-card-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.premium-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.premium-card:hover .premium-card-img img {
  transform: scale(1.08);
}

.premium-card-body {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.premium-card-title {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--primary-dark);
}

.premium-card-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.card-link {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--accent-gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}

.card-link::after {
  content: '→';
  transition: var(--transition-smooth);
}

.card-link:hover::after {
  transform: translateX(4px);
}

/* --- EMBLEM & IDENTITY SECTION --- */
.identity-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 64px;
  align-items: center;
}

.emblem-showcase {
  background: white;
  border-radius: 8px;
  padding: 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.emblem-showcase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background-color: var(--accent-gold);
}

.emblem-img-large {
  width: 180px;
  margin: 0 auto 24px auto;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.06));
}

.identity-desc p {
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.motto-highlight {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--accent-gold);
  font-style: italic;
  font-size: 1.2rem;
  border-left: 3px solid var(--accent-gold);
  padding-left: 16px;
  margin: 24px 0;
}

.motto-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.motto-item {
  background-color: white;
  padding: 16px;
  border-radius: 6px;
  border: 1px solid var(--border-color);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.motto-item-icon {
  color: var(--accent-gold);
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.motto-item-title {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--primary-dark);
  margin-bottom: 4px;
}

.motto-item-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* --- VISION & MISSION SECTION --- */
.vision-mission-section {
  position: relative;
  overflow: hidden;
  background-color: var(--primary-dark);
  color: var(--text-light);
}

.vision-mission-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.vision-img-frame {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--accent-gold);
}

.vision-img-frame::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(7, 22, 44, 0.4), transparent);
  pointer-events: none;
}

.vision-box {
  border-left: 4px solid var(--accent-gold);
  padding: 24px 32px;
  background-color: var(--secondary-dark);
  border-radius: 0 8px 8px 0;
  margin-bottom: 36px;
}

.vision-quote {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--text-light);
  line-height: 1.5;
}

.mission-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.mission-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.mission-check {
  color: var(--accent-gold);
  font-size: 1.2rem;
  margin-top: 3px;
}

.mission-text-container h4 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--accent-gold);
  margin-bottom: 4px;
}

.mission-text-container p {
  font-size: 0.9rem;
  color: rgba(248, 250, 252, 0.7);
}

/* --- ACADEMICS TABS --- */
.tabs-container {
  margin-top: 40px;
}

.tab-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 16px;
}

.tab-btn {
  padding: 12px 28px;
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
}

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

.tab-btn.active {
  color: var(--accent-gold);
}

.tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -18px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--accent-gold);
}

.tab-content {
  display: none;
  animation: fadeIn 0.5s ease;
}

.tab-content.active {
  display: block;
}

.academic-grade-header {
  margin-bottom: 32px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 20px;
}

.academic-grade-title {
  font-size: 2.2rem;
  margin-bottom: 8px;
}

.academic-grade-subtitle {
  font-family: var(--font-sans);
  color: var(--accent-gold);
  font-size: 1.1rem;
  font-weight: 500;
}

.academic-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
}

.academic-details h3 {
  font-size: 1.6rem;
  margin: 32px 0 16px 0;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 8px;
}

.academic-details h3:first-of-type {
  margin-top: 0;
}

.focus-areas-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.focus-area-card {
  background-color: white;
  padding: 20px;
  border-radius: 6px;
  border: 1px solid var(--border-color);
  border-left: 4px solid var(--primary-dark);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.focus-area-card:hover {
  border-left-color: var(--accent-gold);
  box-shadow: var(--shadow-md);
}

.focus-area-card h4 {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.focus-area-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.bullets-list {
  list-style: none;
}

.bullets-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  font-size: 1rem;
}

.bullets-list li::before {
  content: '♦';
  position: absolute;
  left: 0;
  color: var(--accent-gold);
  font-size: 0.9rem;
}

.academic-sidebar {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.sidebar-box {
  background-color: white;
  border-radius: 6px;
  border: 1px solid var(--border-color);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.sidebar-box h4 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-color);
}

.sidebar-box h4::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--accent-gold);
}

/* --- INFRASTRUCTURE & FACILITIES (ABOUT PAGE) --- */
.infra-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.infra-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition-smooth);
}

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

.infra-card-img {
  height: 220px;
  position: relative;
  overflow: hidden;
}

.infra-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.infra-card:hover .infra-card-img img {
  transform: scale(1.05);
}

.infra-card-body {
  padding: 24px;
}

.infra-card-title {
  font-size: 1.3rem;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.infra-card-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Principal Quote section */
.principal-section {
  background-color: var(--bg-muted);
}

.principal-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 48px;
  align-items: center;
}

.principal-img-container {
  border-radius: 8px;
  overflow: hidden;
  border: 4px solid white;
  box-shadow: var(--shadow-md);
}

.principal-message {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--primary-dark);
  line-height: 1.6;
  position: relative;
  padding: 24px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 24px;
}

.principal-message::before {
  content: '“';
  font-size: 4rem;
  color: rgba(197, 155, 39, 0.2);
  position: absolute;
  top: -20px;
  left: -20px;
}

.principal-name {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary-dark);
}

.principal-title {
  font-size: 0.9rem;
  color: var(--accent-gold);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Trustee Board Profile Grid */
.trustee-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.trustee-card {
  background: white;
  border-radius: 6px;
  border: 1px solid var(--border-color);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.trustee-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-md);
}

.trustee-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 16px auto;
  background-color: var(--bg-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  font-size: 2rem;
  border: 2px solid var(--border-color);
}

.trustee-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 4px;
}

.trustee-role {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--accent-gold);
  font-weight: 600;
  text-transform: uppercase;
}

/* --- GOVERNANCE ACCORDION (ADMIN PAGE) --- */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.accordion-item {
  border: 1px solid var(--border-color);
  border-radius: 6px;
  background-color: white;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.accordion-header {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  background-color: white;
  transition: var(--transition-smooth);
}

.accordion-header:hover {
  background-color: var(--bg-light);
}

.accordion-title-container {
  display: flex;
  align-items: center;
  gap: 16px;
}

.accordion-icon-box {
  color: var(--accent-gold);
  font-size: 1.3rem;
}

.accordion-header h3 {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0;
}

.accordion-toggle-icon {
  font-size: 1.2rem;
  color: var(--text-muted);
  transition: var(--transition-smooth);
}

.accordion-item.active .accordion-toggle-icon {
  transform: rotate(45deg);
  color: var(--accent-gold);
}

.accordion-item.active .accordion-header {
  border-bottom: 1px solid var(--border-color);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background-color: white;
}

.accordion-content-inner {
  padding: 24px;
}

/* --- LEADERSHIP CARDS --- */
.leadership-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}

.leader-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.leader-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-gold);
}

.leader-img-box {
  height: 260px;
  background-color: var(--bg-muted);
  position: relative;
  overflow: hidden;
}

.leader-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.leader-card:hover .leader-img-box img {
  transform: scale(1.05);
}

.leader-info {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.leader-name {
  font-size: 1.3rem;
  margin-bottom: 4px;
}

.leader-role {
  font-family: var(--font-sans);
  color: var(--accent-gold);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.leader-bio {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* --- CONTACT / INQUIRY FORM --- */
.contact-section-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
}

.contact-info-panel {
  background-color: var(--secondary-dark);
  color: var(--text-light);
  padding: 40px;
  border-radius: 8px;
  border-bottom: 4px solid var(--accent-gold);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-info-title {
  font-size: 1.8rem;
  color: var(--text-light);
  margin-bottom: 24px;
}

.contact-info-list {
  list-style: none;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-info-icon {
  color: var(--accent-gold);
  font-size: 1.2rem;
  margin-top: 4px;
}

.contact-info-details h4 {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 4px;
}

.contact-info-details p {
  font-size: 0.95rem;
  opacity: 0.85;
}

.contact-form-panel {
  background-color: white;
  border-radius: 8px;
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: var(--transition-smooth);
}

.form-input:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(197, 155, 39, 0.15);
}

.form-input-select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
}

.btn-submit {
  width: 100%;
  border: none;
  background-color: var(--accent-gold);
  color: var(--primary-dark);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 14px 20px;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-submit:hover {
  background-color: var(--accent-gold-hover);
  box-shadow: 0 4px 12px rgba(197, 155, 39, 0.25);
  transform: translateY(-1px);
}

/* --- FOOTER --- */
footer {
  background-color: var(--primary-dark);
  color: var(--text-light);
  padding: 64px 0 24px 0;
  border-top: 4px solid var(--accent-gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 64px;
  margin-bottom: 48px;
}

.footer-brand h3 {
  color: var(--text-light);
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.footer-brand p {
  color: rgba(248, 250, 252, 0.7);
  font-size: 0.95rem;
  margin-bottom: 24px;
  max-width: 320px;
}

.footer-brand-motto {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--accent-gold);
  font-size: 1rem;
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-gold);
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 8px;
}

.footer-links h4::after,
.footer-contact h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--accent-gold);
}

.footer-links-list {
  list-style: none;
}

.footer-links-list li {
  margin-bottom: 12px;
}

.footer-links-list a {
  color: rgba(248, 250, 252, 0.7);
  font-size: 0.95rem;
}

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

.footer-contact-list {
  list-style: none;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.9rem;
  color: rgba(248, 250, 252, 0.7);
}

.footer-contact-icon {
  color: var(--accent-gold);
  margin-top: 3px;
}

.footer-socials {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--secondary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition-smooth);
}

.social-link:hover {
  background-color: var(--accent-gold);
  color: var(--primary-dark);
  border-color: var(--accent-gold);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(248, 250, 252, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(248, 250, 252, 0.5);
}

/* --- ANIMATIONS --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* --- RESPONSIVE BREAKPOINTS --- */
@media (max-width: 1024px) {
  .hero-title { font-size: 2.8rem; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .trustee-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section-padding { padding: 60px 0; }
  .grid-2, .grid-3, .grid-4, .identity-grid, .vision-mission-grid, .academic-grid, .infra-grid, .principal-grid, .leadership-grid, .contact-section-grid, .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .hero-title { font-size: 2.2rem; }
  .hero-description { font-size: 1.1rem; }
  
  .mobile-nav-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--primary-dark);
    flex-direction: column;
    padding: 40px 0;
    transition: var(--transition-smooth);
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  
  .nav-menu.open {
    left: 0;
  }
  
  .tab-buttons {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  
  .tab-btn {
    width: 100%;
    text-align: center;
  }
  
  .tab-btn.active::after {
    display: none;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}
