/* ====================================
   BODOLAND PIONEER PUBLIC SCHOOL
   Premium School Website - Pure CSS
   ==================================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

/* ====================================
   CSS Custom Properties (Variables)
   ==================================== */
:root {
  /* Refined ultra-premium color palette */
  --background: #fefefe;
  --foreground: #141414;
  --card: #ffffff;
  --card-foreground: #141414;

  /* Primary - Deep Burgundy Red from logo */
  --primary: #8b1a1a;
  --primary-foreground: #fefefe;

  /* Secondary - Rich Forest Green from logo */
  --secondary: #1a5c3a;
  --secondary-foreground: #fefefe;

  /* Accent - Warm Champagne Gold */
  --accent: #d4a953;
  --accent-foreground: #262626;

  /* Neutrals - Warm undertones */
  --muted: #f5f5f4;
  --muted-foreground: #737373;
  --border: #e7e5e4;
  --input: #f5f5f4;
  --ring: #8b1a1a;

  /* Fonts */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;

  /* Additional color variants */
  --color-primary: #8b1a1a;
  --color-primary-dark: #6b1414;
  --color-primary-light: #a52a2a;
  --color-secondary: #1a5c3a;
  --color-secondary-dark: #145030;
  --color-accent: #d4a953;
  --color-bg-white: #ffffff;
  --color-bg-body: #fefefe;
  --color-text-heading: #141414;
  --color-text-muted: #737373;

  /* Border Radius */
  --radius: 0;
}

/* ====================================
   CSS Reset & Base Styles
   ==================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul,
ol {
  list-style: none;
}

/* ====================================
   Custom Scrollbar
   ==================================== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--muted);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--secondary);
}

/* ====================================
   Utility Classes
   ==================================== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Text Gradient Effect */
.text-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Glass Morphism */
.glass {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/* ====================================
   Keyframe Animations
   ==================================== */
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes scale-in {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slide-in-left {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slide-in-right {
  from {
    opacity: 0;
    transform: translateX(60px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0) translateX(-50%);
  }

  50% {
    transform: translateY(-10px) translateX(-50%);
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes pulse-glow {

  0%,
  100% {
    box-shadow: 0 0 20px rgba(139, 26, 26, 0.3);
  }

  50% {
    box-shadow: 0 0 40px rgba(139, 26, 26, 0.5);
  }
}

/* Animation Classes */
.animate-fade-up {
  animation: fade-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-fade-in {
  animation: fade-in 1s ease-out forwards;
}

.animate-scale-in {
  animation: scale-in 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-slide-left {
  animation: slide-in-left 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-slide-right {
  animation: slide-in-right 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

.animate-bounce {
  animation: bounce 2s ease-in-out infinite;
}

.animate-marquee {
  animation: marquee 30s linear infinite;
}

/* Animation Delays */
.delay-100 {
  animation-delay: 0.1s;
}

.delay-200 {
  animation-delay: 0.2s;
}

.delay-300 {
  animation-delay: 0.3s;
}

.delay-400 {
  animation-delay: 0.4s;
}

.delay-500 {
  animation-delay: 0.5s;
}

/* Initially hidden for animations */
.animate-on-scroll {
  opacity: 0;
}

.animate-on-scroll.animated {
  opacity: 1;
}

/* ====================================
   NAVIGATION
   ==================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 1.5rem 0;
  transition: all 0.5s ease;
}

.navbar.scrolled {
  padding: 0.75rem 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.navbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.logo-link {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-link:hover .logo-img {
  transform: scale(1.05);
}

.logo-img {
  height: 48px;
  transition: transform 0.3s ease;
}

@media (min-width: 768px) {
  .logo-img {
    height: 56px;
  }
}

.logo-text {
  display: none;
}

@media (min-width: 640px) {
  .logo-text {
    display: block;
  }
}

.logo-text p:first-child {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: #ffffff;
}

.logo-text p:last-child {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Scrolled state - dark logo text */
.navbar.scrolled .logo-text p:first-child {
  color: var(--foreground);
}

.navbar.scrolled .logo-text p:last-child {
  color: var(--muted-foreground);
}

/* Desktop Navigation */
.nav-links {
  display: none;
  align-items: center;
  gap: 0.125rem;
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }
}

.nav-link {
  position: relative;
  padding: 0.625rem 0.875rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
  border-radius: 0.375rem;
  letter-spacing: 0.01em;
}

.nav-link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.nav-link.active {
  color: #ffffff;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0.25rem;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
}

/* Scrolled state - dark links */
.navbar.scrolled .nav-link {
  color: rgba(20, 20, 20, 0.75);
}

.navbar.scrolled .nav-link:hover {
  color: var(--foreground);
  background: rgba(0, 0, 0, 0.04);
}

.navbar.scrolled .nav-link.active {
  color: var(--primary);
}

.navbar.scrolled .nav-link.active::after {
  background: var(--primary);
}

/* Dropdown Navigation */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.dropdown-arrow {
  transition: transform 0.2s ease;
  opacity: 0.7;
}

.nav-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
  opacity: 1;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(0.5rem);
  min-width: 180px;
  background: #ffffff;
  border-radius: 0.75rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.05);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-item {
  display: block;
  padding: 0.625rem 1rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--muted-foreground);
  border-radius: 0.5rem;
  transition: all 0.15s ease;
}

.dropdown-item:hover {
  background: var(--muted);
  color: var(--foreground);
}

.dropdown-item.active {
  background: rgba(139, 26, 26, 0.08);
  color: var(--primary);
}

/* Nav Actions */
.nav-actions {
  display: none;
  align-items: center;
  gap: 0.75rem;
}

@media (min-width: 1024px) {
  .nav-actions {
    display: flex;
  }
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.3s ease;
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
}

.nav-phone:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.nav-phone span {
  display: none;
}

@media (min-width: 1200px) {
  .nav-phone span {
    display: inline;
  }
}

.navbar.scrolled .nav-phone {
  color: var(--muted-foreground);
}

.navbar.scrolled .nav-phone:hover {
  color: var(--foreground);
  background: rgba(0, 0, 0, 0.04);
}

.nav-phone svg {
  width: 16px;
  height: 16px;
}

/* Primary Button */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.5rem;
  background: var(--primary);
  color: var(--primary-foreground);
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  box-shadow: 0 10px 40px rgba(139, 26, 26, 0.25);
}

.btn-primary svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.btn-primary:hover svg {
  transform: translateX(4px);
}

/* Large Primary Button */
.btn-primary-lg {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: var(--primary);
  color: var(--primary-foreground);
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary-lg:hover {
  box-shadow: 0 20px 50px rgba(139, 26, 26, 0.3);
  transform: translateY(-2px);
}

.btn-primary-lg svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.btn-primary-lg:hover svg {
  transform: translateX(4px);
}

/* Outline Button */
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--background);
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-outline svg {
  width: 20px;
  height: 20px;
}

/* Dark Outline Button */
.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  border: 2px solid rgba(20, 20, 20, 0.2);
  color: var(--foreground);
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-dark:hover {
  background: var(--foreground);
  color: var(--background);
}

.btn-outline-dark svg {
  width: 20px;
  height: 20px;
}

/* Mobile Menu Toggle */
.mobile-menu-btn {
  display: block;
  padding: 0.5rem;
  margin-right: -0.5rem;
}

@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 20px;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #ffffff;
  transition: all 0.3s ease;
}

.navbar.scrolled .hamburger span {
  background: var(--foreground);
}

.mobile-menu-btn.active .hamburger span:first-child {
  transform: rotate(45deg) translateY(9px);
}

.mobile-menu-btn.active .hamburger span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active .hamburger span:last-child {
  transform: rotate(-45deg) translateY(-9px);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

@media (max-width: 1023px) {
  .mobile-menu {
    display: block;
  }
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav-link {
  display: block;
  padding: 0.5rem 0;
  font-size: 1.125rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-menu .btn-primary {
  width: 100%;
  justify-content: center;
  margin-top: 1rem;
  padding: 0.75rem;
}

/* ====================================
   HERO SECTION
   ==================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hero Video Background */
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(20, 20, 20, 0.95), rgba(20, 20, 20, 0.8), rgba(20, 20, 20, 0.4));
}

.hero-overlay-bottom {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 20, 20, 0.6), transparent, transparent);
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 8rem 1.5rem 5rem;
}

@media (min-width: 1024px) {
  .hero-content {
    padding: 8rem 2rem 5rem;
  }
}

.hero-inner {
  max-width: 768px;
}

/* Hero Badge */
.hero-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  opacity: 0;
}

.hero-badge span {
  width: 48px;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
}

.hero-badge p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Hero Title */
.hero-title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--background);
  line-height: 1.1;
  margin-bottom: 2rem;
  opacity: 0;
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.hero-title .highlight {
  color: var(--primary);
}

/* Animated Words Container */
.animated-words-container {
  display: block;
  position: relative;
  height: 1.2em;
  overflow: hidden;
}

.animated-word {
  position: absolute;
  left: 0;
  top: 0;
  display: inline-block;
  color: transparent;
  background: linear-gradient(135deg, var(--primary) 0%, #c94242 40%, var(--accent) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  white-space: nowrap;
}

.animated-word.active {
  position: relative;
  opacity: 1;
  transform: translateY(0);
}

.animated-word.exit {
  opacity: 0;
  transform: translateY(-100%);
}

/* Hero Description */
.hero-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 576px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
  opacity: 0;
}

@media (min-width: 768px) {
  .hero-description {
    font-size: 1.25rem;
  }
}

/* Hero Buttons */
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  opacity: 0;
}

/* Hero Stats */
.hero-stats {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  opacity: 0;
}

.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (min-width: 640px) {
  .hero-stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.hero-stat-value {
  font-family: var(--font-serif);
  font-size: 1.875rem;
  font-weight: 600;
  color: var(--background);
}

@media (min-width: 768px) {
  .hero-stat-value {
    font-size: 2.25rem;
  }
}

.hero-stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.25rem;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-indicator svg {
  width: 24px;
  height: 24px;
  color: rgba(255, 255, 255, 0.5);
}

/* ====================================
   MARQUEE SECTION
   ==================================== */
.marquee-section {
  padding: 1rem 0;
  background: var(--primary);
  overflow: hidden;
}

.marquee-content {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
}

.marquee-items {
  display: flex;
  gap: 3rem;
  align-items: center;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  letter-spacing: 0.025em;
}

.marquee-item span {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.4);
  transform: rotate(45deg);
}

/* ====================================
   ABOUT SECTION
   ==================================== */
.about-section {
  padding: 6rem 0;
  background: var(--background);
}

@media (min-width: 768px) {
  .about-section {
    padding: 8rem 0;
  }
}

.about-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
  }
}

/* About Image */
.about-image-wrapper {
  position: relative;
  opacity: 0;
}

.about-image-wrapper img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  position: relative;
  z-index: 10;
}

.about-image-deco-1 {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 12rem;
  height: 12rem;
  background: rgba(139, 26, 26, 0.1);
}

.about-image-deco-2 {
  position: absolute;
  top: -1.5rem;
  left: -1.5rem;
  width: 8rem;
  height: 8rem;
  border: 2px solid rgba(26, 92, 58, 0.3);
}

/* Floating Badge */
.floating-badge {
  position: absolute;
  right: -1rem;
  top: 25%;
  background: var(--background);
  padding: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  z-index: 20;
}

.floating-badge-value {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--primary);
}

.floating-badge-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.4;
}

/* About Content */
.about-content {
  opacity: 0;
}

.section-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.section-badge span {
  width: 48px;
  height: 1px;
}

.section-badge p {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-badge.primary span {
  background: var(--primary);
}

.section-badge.primary p {
  color: var(--primary);
}

.section-badge.secondary span {
  background: var(--secondary);
}

.section-badge.secondary p {
  color: var(--secondary);
}

.section-badge.white span {
  background: rgba(255, 255, 255, 0.5);
}

.section-badge.white p {
  color: #ffffff;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 1.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 3rem;
  }
}

.section-description {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* ====================================
   ACHIEVEMENTS / WHY CHOOSE SECTION
   ==================================== */

.achievements-section {
  position: relative;
  background: linear-gradient(165deg, #0f0f0f 0%, #1a1a1a 40%, #0f0f0f 100%);
  padding: 6rem 1.5rem;
  overflow: hidden;
}

/* Premium background effects */
.achievements-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 40%, rgba(139, 26, 26, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 60%, rgba(26, 92, 58, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

/* Decorative accent line at top */
.achievements-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--secondary));
}

@media (min-width: 768px) {
  .achievements-section {
    padding: 8rem 1.5rem;
  }
}

.achievements-section .section-title {
  color: #ffffff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.achievements-section .section-description {
  color: rgba(255, 255, 255, 0.75);
  max-width: 540px;
  line-height: 1.8;
}

.achievements-grid {
  display: grid;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

@media (min-width: 1024px) {
  .achievements-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: start;
  }
}

.achievements-content {
  color: #ffffff;
}

.achievements-content .section-badge {
  margin-bottom: 1.25rem;
}

/* Achievement List - Premium Design */
.achievement-list {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.achievement-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.achievement-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary), var(--accent));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.achievement-item:hover {
  background: linear-gradient(135deg, rgba(139, 26, 26, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
  border-color: rgba(139, 26, 26, 0.3);
  transform: translateX(8px);
  box-shadow: 0 10px 40px rgba(139, 26, 26, 0.15);
}

.achievement-item:hover::before {
  opacity: 1;
}

.achievement-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--accent);
  background: rgba(212, 169, 83, 0.1);
  border: 1px solid rgba(212, 169, 83, 0.2);
  border-radius: 0.75rem;
  transition: all 0.3s ease;
}

.achievement-item:hover .achievement-number {
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
  transform: scale(1.05);
}

.achievement-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 0.35rem;
  letter-spacing: -0.01em;
}

.achievement-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin: 0;
}

/* Stats Grid - Premium Glassmorphism */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.stat-card {
  position: relative;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem 1.5rem;
  border-radius: 1.25rem;
  text-align: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(139, 26, 26, 0.2) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.stat-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 169, 83, 0.1) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.stat-card:hover {
  background: linear-gradient(145deg, rgba(139, 26, 26, 0.2) 0%, rgba(255, 255, 255, 0.05) 100%);
  border-color: rgba(139, 26, 26, 0.4);
  transform: translateY(-8px) scale(1.02);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.3),
    0 0 30px rgba(139, 26, 26, 0.15);
}

.stat-card:hover::before {
  opacity: 1;
}

.stat-card:hover::after {
  opacity: 1;
}

.stat-card svg {
  position: relative;
  z-index: 1;
  color: var(--accent);
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.stat-card:hover svg {
  color: #ffffff;
  transform: scale(1.1);
  filter: drop-shadow(0 0 10px rgba(212, 169, 83, 0.5));
}

.stat-value {
  position: relative;
  z-index: 1;
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 0.5rem 0;
  line-height: 1.1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
  .stat-value {
    font-size: 2.5rem;
  }
}

.stat-value .counter {
  color: #ffffff;
}

.stat-label {
  position: relative;
  z-index: 1;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.stat-card:hover .stat-label {
  color: rgba(255, 255, 255, 0.9);
}

/* Feature Cards */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.feature-card {
  display: flex;
  gap: 1rem;
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  background: var(--primary);
  color: var(--primary-foreground);
}

.feature-icon svg {
  width: 20px;
  height: 20px;
}

.feature-title {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.feature-desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Link with Arrow */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-weight: 600;
  transition: gap 0.3s ease;
}

.link-arrow:hover {
  gap: 1rem;
}

.link-arrow svg {
  width: 16px;
  height: 16px;
}

/* ====================================
   ABOUT TEASER SECTION
   ==================================== */
.about-teaser-section {
  padding: 5rem 0;
  background: var(--background);
}

@media (min-width: 768px) {
  .about-teaser-section {
    padding: 6rem 0;
  }
}

.about-teaser-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .about-teaser-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.about-teaser-content .section-badge {
  margin-bottom: 1.5rem;
}

.about-teaser-content .section-title {
  margin-bottom: 1.25rem;
}

.about-teaser-content .section-description {
  margin-bottom: 2rem;
  max-width: 500px;
}

.about-teaser-content .btn-primary-lg {
  display: inline-flex;
}

.about-teaser-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .about-teaser-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

.teaser-stat-item {
  text-align: center;
  padding: 2rem 1rem;
  background: linear-gradient(135deg, var(--muted) 0%, #FDF8F0 100%);
  border: 1px solid rgba(139, 26, 26, 0.08);
  transition: all 0.3s ease;
}

.teaser-stat-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(139, 26, 26, 0.1);
}

.teaser-stat-value {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--primary);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .teaser-stat-value {
    font-size: 3rem;
  }
}

.teaser-stat-label {
  display: block;
  font-size: 0.8rem;
  color: var(--muted-foreground);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ====================================
   FACILITIES SECTION
   ==================================== */
.facilities-section {
  padding: 6rem 0;
  background: var(--muted);
}

@media (min-width: 768px) {
  .facilities-section {
    padding: 8rem 0;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header .section-badge {
  justify-content: center;
}

.section-header .section-subtitle {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  max-width: 672px;
  margin: 0 auto;
}

/* Bento Grid */
.bento-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .bento-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Featured Card */
.bento-featured {
  position: relative;
  overflow: hidden;
  background: var(--foreground);
  border: 1px solid rgba(212, 169, 83, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.bento-featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--secondary));
  z-index: 20;
}

.bento-featured:hover {
  box-shadow: 0 30px 80px rgba(139, 26, 26, 0.25);
  transform: translateY(-4px);
}

@media (min-width: 768px) {
  .bento-featured {
    grid-column: span 2;
  }
}

@media (min-width: 1024px) {
  .bento-featured {
    grid-row: span 2;
  }
}

.bento-featured img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), filter 0.5s ease;
  filter: brightness(0.95) contrast(1.05);
}

.bento-featured:hover img {
  transform: scale(1.08);
  filter: brightness(1) contrast(1.1);
}

.bento-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(20, 20, 20, 0.95) 0%,
      rgba(20, 20, 20, 0.7) 30%,
      rgba(20, 20, 20, 0.2) 60%,
      transparent 100%);
  transition: background 0.4s ease;
}

.bento-featured:hover .bento-overlay {
  background: linear-gradient(to top,
      rgba(139, 26, 26, 0.95) 0%,
      rgba(20, 20, 20, 0.6) 40%,
      transparent 100%);
}

.bento-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.5rem;
  z-index: 10;
}

.bento-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, var(--primary) 0%, #6b1414 100%);
  color: var(--primary-foreground);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 20px rgba(139, 26, 26, 0.4);
}

.bento-tag::before {
  content: '★';
  font-size: 0.6rem;
  color: var(--accent);
}

.bento-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--background);
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

@media (min-width: 768px) {
  .bento-title {
    font-size: 2rem;
  }
}

.bento-desc {
  color: rgba(255, 255, 255, 0.85);
  max-width: 500px;
  font-size: 1rem;
  line-height: 1.6;
}

/* Bento Card - Regular */
.bento-card {
  position: relative;
  overflow: hidden;
  background: var(--foreground);
  aspect-ratio: 4/3;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.bento-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: 20;
}

.bento-card:hover::after {
  transform: scaleX(1);
}

.bento-card:hover {
  box-shadow: 0 20px 60px rgba(139, 26, 26, 0.2);
  transform: translateY(-8px);
}

.bento-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s ease;
  filter: brightness(0.92) saturate(1.1);
}

.bento-card:hover img {
  transform: scale(1.12);
  filter: brightness(1) saturate(1.2);
}

.bento-card .bento-overlay {
  background: linear-gradient(to top,
      rgba(20, 20, 20, 0.92) 0%,
      rgba(20, 20, 20, 0.5) 50%,
      transparent 100%);
  transition: all 0.4s ease;
}

.bento-card:hover .bento-overlay {
  background: linear-gradient(to top,
      rgba(139, 26, 26, 0.95) 0%,
      rgba(20, 20, 20, 0.4) 60%,
      transparent 100%);
}

.bento-card .bento-content {
  padding: 1.75rem;
  transform: translateY(0.5rem);
  transition: transform 0.4s ease;
}

.bento-card:hover .bento-content {
  transform: translateY(0);
}

.bento-card .bento-title {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.6);
}

.bento-card .bento-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease 0.1s;
  line-height: 1.5;
}

.bento-card:hover .bento-desc {
  opacity: 1;
  transform: translateY(0);
}

/* Campus Life Divider */
.campus-life-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin: 4rem 0;
}

.campus-life-divider span {
  flex: 1;
  max-width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139, 26, 26, 0.3), transparent);
}

.campus-life-divider p {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
}

/* Campus Gallery Grid */
.campus-gallery-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .campus-gallery-grid {
    grid-template-columns: 1fr 2fr 1fr;
    grid-template-rows: 280px;
  }
}

.campus-gallery-item {
  position: relative;
  overflow: hidden;
  background: var(--foreground);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.campus-gallery-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: 20;
}

.campus-gallery-item:hover::before {
  transform: scaleX(1);
}

.campus-gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(139, 26, 26, 0.2);
}

.campus-gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), filter 0.5s ease;
  filter: brightness(0.9) saturate(1.1);
}

@media (min-width: 768px) {
  .campus-gallery-item img {
    min-height: 280px;
  }
}

.campus-gallery-item:hover img {
  transform: scale(1.12);
  filter: brightness(1) saturate(1.2);
}

.campus-gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(20, 20, 20, 0.95) 0%,
      rgba(20, 20, 20, 0.5) 40%,
      transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem;
  transition: all 0.4s ease;
}

.campus-gallery-item:hover .campus-gallery-overlay {
  background: linear-gradient(to top,
      rgba(139, 26, 26, 0.95) 0%,
      rgba(20, 20, 20, 0.4) 50%,
      transparent 100%);
}

.campus-gallery-badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 0.35rem 0.7rem;
  background: linear-gradient(135deg, var(--primary) 0%, #6b1414 100%);
  color: white;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  box-shadow: 0 4px 15px rgba(139, 26, 26, 0.4);
}

.campus-gallery-overlay h4 {
  font-family: var(--font-serif);
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
}

.campus-gallery-overlay p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  line-height: 1.4;
  margin: 0;
}

/* Facilities CTA */
.facilities-cta {
  text-align: center;
  margin-top: 3.5rem;
}

.facilities-cta .btn-primary-lg {
  box-shadow: 0 10px 40px rgba(139, 26, 26, 0.3);
}

/* ====================================
   TESTIMONIALS SECTION
   ==================================== */
.testimonials-section {
  padding: 6rem 0;
  background: var(--background);
}

@media (min-width: 768px) {
  .testimonials-section {
    padding: 8rem 0;
  }
}

.testimonials-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background: var(--muted);
  padding: 2rem;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  border-color: rgba(139, 26, 26, 0.2);
  box-shadow: 0 25px 50px -12px rgba(139, 26, 26, 0.05);
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.testimonial-stars svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
  fill: currentColor;
}

.testimonial-quote {
  color: rgba(20, 20, 20, 0.8);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  background: rgba(139, 26, 26, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-weight: 600;
}

.testimonial-name {
  font-weight: 600;
}

.testimonial-role {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ====================================
   ADMISSIONS SECTION
   ==================================== */
.admissions-section {
  padding: 6rem 0;
  background: var(--muted);
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .admissions-section {
    padding: 8rem 0;
  }
}

.admissions-bg {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  pointer-events: none;
}

.admissions-bg-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(48px);
}

.admissions-bg-circle:first-child {
  top: 0;
  left: 0;
  width: 24rem;
  height: 24rem;
  background: var(--primary);
}

.admissions-bg-circle:last-child {
  bottom: 0;
  right: 0;
  width: 24rem;
  height: 24rem;
  background: var(--secondary);
}

.admissions-content {
  position: relative;
  max-width: 896px;
  margin: 0 auto;
  text-align: center;
}

.admissions-tag {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(139, 26, 26, 0.1);
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.admissions-title {
  font-family: var(--font-serif);
  font-size: 1.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .admissions-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .admissions-title {
    font-size: 3rem;
  }
}

.admissions-description {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  margin-bottom: 3rem;
  max-width: 672px;
  margin-left: auto;
  margin-right: auto;
}

.admissions-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .admissions-buttons {
    flex-direction: row;
  }
}

/* ====================================
   FOOTER
   ==================================== */
.footer {
  background: var(--foreground);
  color: var(--background);
}

.footer-main {
  padding: 4rem 0;
}

.footer-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

/* Footer Brand */
.footer-brand {
  grid-column: span 1;
}

@media (min-width: 1024px) {
  .footer-brand {
    grid-column: span 2;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer-logo img {
  height: 64px;
}

.footer-logo-text h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
}

.footer-logo-text p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

.footer-description {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  max-width: 448px;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  border-color: var(--primary);
  background: var(--primary);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-social a:hover svg {
  color: var(--primary-foreground);
}

/* Footer Links */
.footer-links h4 {
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary);
}

/* Footer Contact */
.footer-contact h4 {
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.footer-contact svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

/* Footer Bottom */
.footer-bottom {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-bottom p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: var(--background);
}

/* ====================================
   BRAND DISTINCTION SECTION
   ==================================== */
.brand-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary) 0%, #6b1414 100%);
  text-align: center;
}

.brand-section .container {
  max-width: 900px;
}

.brand-section h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 500;
  color: var(--background);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .brand-section h2 {
    font-size: 2.5rem;
  }
}

.brand-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.brand-info-box {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.brand-info-box p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.9;
}

/* ====================================
   DIFFERENTIATORS SECTION
   ==================================== */
.differentiators-section {
  padding: 6rem 0;
  background: var(--background);
}

@media (min-width: 768px) {
  .differentiators-section {
    padding: 8rem 0;
  }
}

.differentiators-section .container {
  max-width: 1200px;
}

.differentiators-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .differentiators-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .differentiators-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.diff-card {
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.diff-card:hover {
  transform: translateY(-8px);
}

.diff-card--blue {
  background: linear-gradient(145deg, #1E40AF 0%, #3B82F6 50%, #60A5FA 100%);
  box-shadow: 0 8px 32px rgba(30, 64, 175, 0.3);
}

.diff-card--blue:hover {
  box-shadow: 0 20px 50px rgba(30, 64, 175, 0.45);
}

.diff-card--green {
  background: linear-gradient(145deg, #047857 0%, #10B981 50%, #34D399 100%);
  box-shadow: 0 8px 32px rgba(4, 120, 87, 0.3);
}

.diff-card--green:hover {
  box-shadow: 0 20px 50px rgba(4, 120, 87, 0.45);
}

.diff-card--amber {
  background: linear-gradient(145deg, #D97706 0%, #F59E0B 50%, #FBBF24 100%);
  box-shadow: 0 8px 32px rgba(217, 119, 6, 0.3);
}

.diff-card--amber:hover {
  box-shadow: 0 20px 50px rgba(217, 119, 6, 0.45);
}

.diff-card--rose {
  background: linear-gradient(145deg, #BE123C 0%, #E11D48 50%, #FB7185 100%);
  box-shadow: 0 8px 32px rgba(190, 18, 60, 0.3);
}

.diff-card--rose:hover {
  box-shadow: 0 20px 50px rgba(190, 18, 60, 0.45);
}

.diff-card--purple {
  background: linear-gradient(145deg, #6D28D9 0%, #8B5CF6 50%, #A78BFA 100%);
  box-shadow: 0 8px 32px rgba(109, 40, 217, 0.3);
}

.diff-card--purple:hover {
  box-shadow: 0 20px 50px rgba(109, 40, 217, 0.45);
}

.diff-card--teal {
  background: linear-gradient(145deg, #0D9488 0%, #14B8A6 50%, #2DD4BF 100%);
  box-shadow: 0 8px 32px rgba(13, 148, 136, 0.3);
}

.diff-card--teal:hover {
  box-shadow: 0 20px 50px rgba(13, 148, 136, 0.45);
}

.diff-card__icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.diff-card__title {
  font-weight: 700;
  font-size: 1.25rem;
  color: #ffffff;
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.diff-card__desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin: 0;
}

/* ====================================
   WHY CHOOSE SECTION
   ==================================== */
.why-choose-section {
  padding: 6rem 0;
  background: var(--muted);
}

@media (min-width: 768px) {
  .why-choose-section {
    padding: 8rem 0;
  }
}

.why-choose-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .why-choose-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
}

.comparison-cards {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.comparison-card {
  background: linear-gradient(145deg, #1E3A8A 0%, #3B82F6 50%, #60A5FA 100%);
  padding: 2rem;
  transition: all 0.4s ease;
}

.comparison-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 45px rgba(30, 58, 138, 0.4);
}

.comparison-card--green {
  background: linear-gradient(145deg, #065F46 0%, #10B981 50%, #34D399 100%);
}

.comparison-card--green:hover {
  box-shadow: 0 16px 45px rgba(6, 95, 70, 0.4);
}

.comparison-card--amber {
  background: linear-gradient(145deg, #B45309 0%, #F59E0B 50%, #FCD34D 100%);
}

.comparison-card--amber:hover {
  box-shadow: 0 16px 45px rgba(180, 83, 9, 0.4);
}

.comparison-card h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.comparison-card p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  font-size: 0.9rem;
  margin: 0;
}

.competitive-edge {
  background: linear-gradient(135deg, var(--primary) 0%, #6b1414 100%);
  padding: 2.5rem;
  color: var(--background);
  box-shadow: 0 8px 30px rgba(139, 26, 26, 0.25);
}

.competitive-edge h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  text-align: center;
}

.competitive-edge ul {
  padding: 0;
}

.competitive-edge li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.competitive-edge li:last-child {
  border-bottom: none;
}

.edge-check {
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.875rem;
}

/* ====================================
   LEADERSHIP SECTION
   ==================================== */
.leadership-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--primary) 0%, #6b1414 100%);
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .leadership-section {
    padding: 8rem 0;
  }
}

.leadership-section::before {
  content: '';
  position: absolute;
  top: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 169, 83, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.leadership-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(26, 92, 58, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.leadership-section .section-header {
  position: relative;
  z-index: 2;
}

.leadership-section .section-header .section-badge p {
  color: var(--accent);
}

.leadership-section .section-title {
  color: var(--background);
}

.leadership-section .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.leadership-grid {
  display: grid;
  gap: 2rem;
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .leadership-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .leadership-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.leadership-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 2.5rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.leadership-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.leadership-card__accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.leadership-card__quote {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 3.5rem;
  color: rgba(139, 26, 26, 0.15);
  font-family: Georgia, serif;
  line-height: 1;
}

.leadership-card__photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  padding: 3px;
  background: linear-gradient(145deg, var(--primary), var(--secondary));
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.leadership-card__photo img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.9);
}

.leadership-card__name {
  font-family: var(--font-serif);
  color: var(--background);
  font-size: 1.25rem;
  text-align: center;
  margin-bottom: 0.25rem;
}

.leadership-card__role {
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-align: center;
  margin-bottom: 1.5rem;
}

.leadership-card__message {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  line-height: 1.8;
  font-style: italic;
  text-align: center;
}

/* ====================================
   GALLERY SECTION
   ==================================== */
.gallery-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--muted) 0%, #FDF8F0 50%, var(--background) 100%);
}

@media (min-width: 768px) {
  .gallery-section {
    padding: 8rem 0;
  }
}

.gallery-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 3.5rem;
}

@media (min-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery-item {
  position: relative;
  overflow: hidden;
  background: var(--foreground);
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(212, 169, 83, 0.1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--secondary));
  z-index: 20;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.gallery-item:hover::before {
  transform: scaleX(1);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  transition: border-color 0.4s ease;
  pointer-events: none;
  z-index: 15;
}

.gallery-item:hover::after {
  border-color: rgba(212, 169, 83, 0.3);
}

.gallery-item:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow:
    0 30px 80px rgba(139, 26, 26, 0.2),
    0 0 0 1px rgba(212, 169, 83, 0.2);
}

.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), filter 0.5s ease;
  filter: brightness(0.95) saturate(1.05);
}

.gallery-item:hover img {
  transform: scale(1.15);
  filter: brightness(1.05) saturate(1.15);
}

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(20, 20, 20, 0.95) 0%,
      rgba(20, 20, 20, 0.6) 35%,
      rgba(20, 20, 20, 0) 70%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  transition: all 0.4s ease;
}

.gallery-item:hover .gallery-item__overlay {
  background: linear-gradient(to top,
      rgba(139, 26, 26, 0.95) 0%,
      rgba(139, 26, 26, 0.7) 30%,
      rgba(20, 20, 20, 0) 80%);
}

.gallery-item__icon {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.4s ease;
  z-index: 15;
}

.gallery-item:hover .gallery-item__icon {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item__icon svg {
  width: 20px;
  height: 20px;
  color: #ffffff;
}

.gallery-item__content {
  position: relative;
  z-index: 10;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.gallery-item:hover .gallery-item__content {
  transform: translateY(0);
  opacity: 1;
}

.gallery-item__title {
  color: #ffffff;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.gallery-item__desc {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  line-height: 1.5;
}

.gallery-item__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.8rem;
  background: linear-gradient(135deg, var(--primary) 0%, #6b1414 100%);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  box-shadow: 0 4px 15px rgba(139, 26, 26, 0.4);
}

.gallery-cta {
  text-align: center;
}

.gallery-cta .btn-primary-lg {
  box-shadow: 0 10px 40px rgba(139, 26, 26, 0.3);
}

/* ====================================
   VISION SECTION
   ==================================== */
.vision-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--muted) 0%, #FDF8F0 100%);
  text-align: center;
}

.vision-section .container {
  max-width: 900px;
}

.vision-card {
  background: var(--card);
  padding: 3.5rem 2.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(139, 26, 26, 0.06);
}

@media (min-width: 768px) {
  .vision-card {
    padding: 4rem 3.5rem;
  }
}

.vision-card .section-badge {
  justify-content: center;
}

.vision-card h2 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
  color: var(--foreground);
}

@media (min-width: 768px) {
  .vision-card h2 {
    font-size: 2.25rem;
  }
}

.vision-card p {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

/* ====================================
   FINAL CTA SECTION
   ==================================== */
.final-cta-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--primary) 0%, #6b1414 100%);
  text-align: center;
}

.final-cta-section h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 500;
  color: var(--background);
  margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
  .final-cta-section h2 {
    font-size: 2.75rem;
  }
}

.final-cta-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: var(--background);
  color: var(--primary);
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: var(--background);
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
}

/* ====================================
   SECTION HEADER (Centered)
   ==================================== */
.section-header--center {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-header--center .section-badge {
  justify-content: center;
}

.section-subtitle {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  line-height: 1.6;
}

/* ====================================
   INNER PAGE STYLES
   ==================================== */

/* Page Header */
.page-header {
  background: linear-gradient(135deg, var(--primary) 0%, #6b1414 100%);
  padding: 8rem 1.5rem 4rem;
  text-align: center;
  color: #ffffff;
}

.page-header h1 {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .page-header h1 {
    font-size: 3rem;
  }
}

.page-header p {
  font-size: 1.125rem;
  opacity: 0.9;
}

.page-header--highlight {
  padding-top: 9rem;
}

.header-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Content Section */
.content-section {
  padding: 4rem 1.5rem;
}

@media (min-width: 768px) {
  .content-section {
    padding: 5rem 2rem;
  }
}

.content-section h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

.content-section h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--foreground);
  margin: 2rem 0 1rem;
}

.content-section p {
  color: var(--muted-foreground);
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* Content Grid */
.content-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .content-grid {
    grid-template-columns: 2fr 1fr;
  }
}

/* Info Card */
.info-card {
  background: var(--muted);
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
}

.info-card h4 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--foreground);
}

.info-card ul {
  list-style: none;
}

.info-card li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--muted-foreground);
}

.info-card li:last-child {
  border-bottom: none;
}

/* Process Steps */
.process-steps {
  display: grid;
  gap: 1.5rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .process-steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

.step {
  background: var(--card);
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  text-align: center;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: #ffffff;
  font-weight: 700;
  font-size: 1.25rem;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.step h4 {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

.step p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* CTA Box */
.cta-box {
  background: var(--muted);
  padding: 2.5rem;
  border-radius: 1rem;
  text-align: center;
  margin-top: 3rem;
}

.cta-box h3 {
  margin-top: 0;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery-item {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: #ffffff;
  font-weight: 500;
}

/* Results/Faculty Highlights */
.results-highlights,
.faculty-highlights {
  display: grid;
  gap: 1.5rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {

  .results-highlights,
  .faculty-highlights {
    grid-template-columns: repeat(3, 1fr);
  }
}

.result-card,
.highlight-card {
  background: var(--primary);
  color: #ffffff;
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
}

.result-card h3,
.highlight-card h3 {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.result-card p,
.highlight-card p {
  opacity: 0.9;
}

/* Disclosure Table */
.disclosure-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
}

.disclosure-table th,
.disclosure-table td {
  padding: 1rem;
  border: 1px solid var(--border);
  text-align: left;
}

.disclosure-table th {
  background: var(--muted);
  font-weight: 600;
  width: 30%;
}

/* Document List */
.document-list {
  list-style: none;
  margin: 1.5rem 0;
}

.document-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.document-list a {
  color: var(--primary);
  text-decoration: underline;
}

.document-list a:hover {
  color: var(--color-primary-dark);
}

/* Contact Grid */
.contact-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 2fr;
  }
}

.contact-info h2 {
  margin-bottom: 2rem;
}

.contact-item {
  margin-bottom: 1.5rem;
}

.contact-item h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.contact-item p,
.contact-item a {
  color: var(--muted-foreground);
}

.contact-item a:hover {
  color: var(--primary);
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--muted);
  padding: 2rem;
  border-radius: 1rem;
}

@media (min-width: 768px) {
  .contact-form-wrapper {
    padding: 2.5rem;
  }
}

.contact-form .form-group {
  margin-bottom: 1.25rem;
}

.contact-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--foreground);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(139, 26, 26, 0.1);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

/* Alerts */
.alert {
  padding: 1rem 1.25rem;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
}

.alert-success {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.alert-error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* Academic Levels */
.academic-levels {
  display: grid;
  gap: 1.5rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
  .academic-levels {
    grid-template-columns: repeat(2, 1fr);
  }
}

.level-card {
  background: var(--card);
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
}

.level-card h4 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.level-card p {
  margin: 0;
}

/* Note Text */
.note {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  margin-top: 2rem;
  padding: 1rem;
  background: var(--muted);
  border-radius: 0.5rem;
}

/* ====================================
   ABOUT PAGE SPECIFIC STYLES
   ==================================== */

/* About Stats Section */
.about-stats-section {
  padding: 3rem 1.5rem;
  background: var(--muted);
  margin-top: -2rem;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .about-stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.about-stat-card {
  background: var(--card);
  padding: 1.5rem;
  border-radius: 1rem;
  text-align: center;
  border: 1px solid var(--border);
}

.about-stat-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.about-stat-value {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.about-stat-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Info Card Variants */
.info-card--primary {
  background: linear-gradient(135deg, var(--primary) 0%, #6b1414 100%);
  color: #ffffff;
  border: none;
  margin-bottom: 1.5rem;
}

.info-card--primary h4,
.info-card--primary p {
  color: #ffffff;
}

.info-card--primary p {
  opacity: 0.9;
}

.info-card--secondary {
  background: linear-gradient(135deg, var(--secondary) 0%, #145030 100%);
  color: #ffffff;
  border: none;
}

.info-card--secondary h4,
.info-card--secondary p {
  color: #ffffff;
}

.info-card--secondary p {
  opacity: 0.9;
}

.info-card-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

/* Values Section */
.values-section {
  padding: 5rem 1.5rem;
  background: var(--muted);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .values-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.value-card {
  background: var(--card);
  padding: 2rem 1.5rem;
  border-radius: 1rem;
  text-align: center;
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.value-card h4 {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.value-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin: 0;
}

/* Pioneer Story Section */
.pioneer-story-section {
  padding: 5rem 1.5rem;
}

.pioneer-story-content {
  max-width: 800px;
  margin: 0 auto;
}

.pioneer-story-content .section-title {
  margin-bottom: 2rem;
}

.pioneer-story-content p {
  color: var(--muted-foreground);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.pioneer-features {
  margin-top: 2rem;
}

.pioneer-feature {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--muted);
  border-radius: 0.75rem;
  margin-bottom: 1rem;
  border-left: 4px solid var(--primary);
}

.feature-arrow {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.25rem;
}

.pioneer-feature strong {
  color: var(--foreground);
}

/* NEP Section */
.nep-section {
  padding: 5rem 1.5rem;
  background: var(--muted);
}

.nep-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .nep-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.nep-card {
  background: var(--card);
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  border: 1px solid var(--border);
}

.nep-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.nep-card h4 {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.nep-card p {
  font-size: 0.9rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  margin: 0;
}

/* Edge Section */
.edge-section {
  padding: 5rem 1.5rem;
}

.edge-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .edge-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.edge-card {
  background: var(--primary);
  color: #ffffff;
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
}

.edge-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.edge-card h4 {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.edge-card p {
  font-size: 0.9rem;
  opacity: 0.9;
  line-height: 1.6;
  margin: 0;
}

/* Timeline Section */
.timeline-section {
  padding: 5rem 1.5rem;
  background: var(--muted);
}

.timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--primary);
  border-radius: 3px;
}

@media (min-width: 768px) {
  .timeline::before {
    left: 50%;
    transform: translateX(-50%);
  }
}

.timeline-item {
  position: relative;
  padding-left: 2rem;
  padding-bottom: 2rem;
}

@media (min-width: 768px) {
  .timeline-item {
    padding-left: 0;
    padding-right: 0;
  }

  .timeline-item:nth-child(odd) {
    padding-right: calc(50% + 2rem);
    text-align: right;
  }

  .timeline-item:nth-child(even) {
    padding-left: calc(50% + 2rem);
  }
}

.timeline-marker {
  position: absolute;
  left: -6px;
  top: 0;
  width: 15px;
  height: 15px;
  background: var(--primary);
  border: 3px solid var(--card);
  border-radius: 50%;
}

@media (min-width: 768px) {
  .timeline-marker {
    left: 50%;
    transform: translateX(-50%);
  }
}

.timeline-content {
  background: var(--card);
  padding: 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
}

.timeline-content h4 {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.timeline-content p {
  font-size: 0.9rem;
  color: var(--muted-foreground);
  margin: 0;
  line-height: 1.6;
}

.timeline-item--future .timeline-marker {
  background: var(--accent);
}

.timeline-item--future .timeline-content {
  border-style: dashed;
}

.timeline-item--future .timeline-content h4 {
  color: var(--accent);
}

/* Community Section */
.community-section {
  padding: 5rem 1.5rem;
}

.community-card {
  background: linear-gradient(135deg, var(--secondary) 0%, #145030 100%);
  color: #ffffff;
  padding: 3rem 2rem;
  border-radius: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.community-header {
  text-align: center;
  margin-bottom: 2rem;
}

.community-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 1rem;
}

.community-header h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.community-header p {
  opacity: 0.9;
}

.community-intro {
  text-align: center;
  opacity: 0.9;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.community-pillars {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .community-pillars {
    grid-template-columns: repeat(3, 1fr);
  }
}

.community-pillar {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 1rem;
  text-align: center;
}

.pillar-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.75rem;
}

.community-pillar h4 {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.community-pillar p {
  font-size: 0.875rem;
  opacity: 0.85;
  margin: 0;
}

/* Leadership Section */
.leadership-section {
  padding: 5rem 1.5rem;
  background: var(--muted);
}

.leadership-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto 2rem;
}

@media (min-width: 768px) {
  .leadership-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.leadership-grid--secondary {
  margin-bottom: 0;
}

.leader-card {
  background: var(--card);
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  border: 1px solid var(--border);
}

.leader-card--featured {
  border-top: 4px solid var(--primary);
}

.leader-avatar {
  width: 80px;
  height: 80px;
  background: var(--primary);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  margin: 0 auto 1rem;
}

.leader-avatar-small {
  width: 60px;
  height: 60px;
  background: var(--muted);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  margin: 0 auto 1rem;
  border: 2px solid var(--primary);
}

.leader-card h4 {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.leader-role {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 0.75rem;
}

.leader-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--primary);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 2rem;
  letter-spacing: 0.05em;
}

/* About CTA Section */
.about-cta-section {
  padding: 5rem 1.5rem;
}

.about-cta-card {
  background: linear-gradient(135deg, var(--primary) 0%, #6b1414 100%);
  color: #ffffff;
  padding: 4rem 2rem;
  border-radius: 1.5rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.about-cta-card h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.about-cta-card p {
  opacity: 0.9;
  margin-bottom: 2rem;
  font-size: 1.125rem;
}

.about-cta-card .btn-primary-lg {
  background: #ffffff;
  color: var(--primary);
}

.about-cta-card .btn-primary-lg:hover {
  background: rgba(255, 255, 255, 0.9);
}

/* ====================================
   ACADEMICS PAGE SPECIFIC STYLES
   ==================================== */

/* Intro Content */
.intro-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.intro-content h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--foreground);
}

.intro-content p {
  color: var(--muted-foreground);
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* Academic Structure Section */
.academic-structure-section {
  padding: 4rem 1.5rem;
  background: var(--muted);
}

.structure-card {
  background: var(--card);
  padding: 3rem 2rem;
  border-radius: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid var(--border);
}

.structure-icon {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 1rem;
}

.structure-card h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--foreground);
}

.structure-levels {
  display: grid;
  gap: 1rem;
}

.structure-level {
  padding: 1.25rem;
  background: var(--muted);
  border-radius: 0.75rem;
  border-left: 4px solid var(--primary);
}

.structure-level h4 {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.structure-level p {
  color: var(--muted-foreground);
  font-size: 0.9rem;
  margin: 0;
}

/* Subjects Section */
.subjects-section {
  padding: 5rem 1.5rem;
}

.subjects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .subjects-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.subject-card {
  background: var(--card);
  padding: 1.5rem;
  border-radius: 1rem;
  text-align: center;
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.subject-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.subject-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.subject-card h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.subject-card p {
  font-size: 0.8rem;
  color: var(--muted-foreground);
  margin: 0;
}

/* Methodology Section */
.methodology-section {
  padding: 5rem 1.5rem;
}

.methodology-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .methodology-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.methodology-card {
  background: var(--card);
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  border: 1px solid var(--border);
  border-top: 4px solid var(--secondary);
}

.methodology-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.methodology-card h4 {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.methodology-card p {
  font-size: 0.9rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  margin: 0;
}

/* Labs Section */
.labs-section {
  padding: 5rem 1.5rem;
  background: var(--muted);
}

.labs-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .labs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.lab-card {
  background: var(--card);
  padding: 2rem;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid var(--border);
}

.lab-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.lab-card h4 {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.lab-card p {
  font-size: 0.9rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  margin: 0;
}

/* Faculty Section */
.faculty-section {
  padding: 5rem 1.5rem;
}

.faculty-content {
  max-width: 800px;
  margin: 0 auto;
}

.faculty-header {
  text-align: center;
  margin-bottom: 2rem;
}

.faculty-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 1rem;
}

.faculty-header h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

.faculty-header p {
  color: var(--muted-foreground);
}

.faculty-intro {
  text-align: center;
  color: var(--muted-foreground);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.faculty-features {
  display: grid;
  gap: 1rem;
}

.faculty-feature {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--muted);
  border-radius: 0.75rem;
}

.check-icon {
  color: var(--secondary);
  font-size: 1.5rem;
  font-weight: bold;
}

.faculty-feature strong {
  color: var(--foreground);
  display: block;
  margin-bottom: 0.25rem;
}

.faculty-feature p {
  color: var(--muted-foreground);
  font-size: 0.9rem;
  margin: 0;
}

/* Board Prep Section */
.board-prep-section {
  padding: 5rem 1.5rem;
  background: var(--muted);
}

.board-prep-card {
  background: linear-gradient(135deg, var(--primary) 0%, #6b1414 100%);
  color: #ffffff;
  padding: 3rem 2rem;
  border-radius: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.board-prep-header {
  text-align: center;
  margin-bottom: 2rem;
}

.board-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 1rem;
}

.board-prep-header h2 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.board-prep-header p {
  opacity: 0.9;
}

.board-intro {
  text-align: center;
  opacity: 0.9;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.board-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.board-feature {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 1rem;
  text-align: center;
}

.board-feature-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.5rem;
}

.board-feature strong {
  display: block;
  margin-bottom: 0.25rem;
}

.board-feature p {
  font-size: 0.85rem;
  opacity: 0.85;
  margin: 0;
}

.board-commitment {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 0.75rem;
  text-align: center;
}

.board-commitment strong {
  display: block;
  margin-bottom: 0.5rem;
}

.board-commitment p {
  opacity: 0.9;
  margin: 0;
  line-height: 1.6;
}

/* Assessment Section */
.assessment-section {
  padding: 5rem 1.5rem;
}

.assessment-content {
  max-width: 800px;
  margin: 0 auto;
}

.assessment-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
  background: var(--card);
  border-radius: 0.75rem;
  overflow: hidden;
}

.assessment-table th,
.assessment-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.assessment-table th {
  background: var(--primary);
  color: #ffffff;
  font-weight: 600;
}

.assessment-table tr:last-child td {
  border-bottom: none;
}

.assessment-table tr:hover td {
  background: var(--muted);
}

.promotion-criteria {
  background: var(--muted);
  padding: 2rem;
  border-radius: 1rem;
}

.promotion-criteria h4 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.promotion-criteria ul {
  list-style: none;
}

.promotion-criteria li {
  padding: 0.5rem 0;
  color: var(--muted-foreground);
}

/* Books Section */
.books-section {
  padding: 5rem 1.5rem;
  background: var(--muted);
}

.books-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto 2rem;
}

@media (min-width: 768px) {
  .books-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.book-card {
  background: var(--card);
  padding: 1.5rem;
  border-radius: 1rem;
  text-align: center;
  border: 1px solid var(--border);
}

.book-emoji {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 0.75rem;
}

.book-card h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.book-card p {
  font-size: 0.8rem;
  color: var(--muted-foreground);
  margin: 0;
}

.book-card--blue {
  border-top: 4px solid #3b82f6;
}

.book-card--blue h4 {
  color: #3b82f6;
}

.book-card--green {
  border-top: 4px solid #22c55e;
}

.book-card--green h4 {
  color: #22c55e;
}

.book-card--orange {
  border-top: 4px solid #f97316;
}

.book-card--orange h4 {
  color: #f97316;
}

.book-card--red {
  border-top: 4px solid var(--primary);
}

.book-card--red h4 {
  color: var(--primary);
}

.books-note {
  text-align: center;
  color: var(--muted-foreground);
  font-style: italic;
}

/* ====================================
   LEADERSHIP MESSAGES SECTION (Home Page)
   ==================================== */

.leadership-messages-section {
  padding: 5rem 1.5rem;
  background: var(--muted);
}

.leadership-messages-grid {
  display: grid;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .leadership-messages-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.leader-message-card {
  background: var(--card);
  padding: 2rem;
  border-radius: 1.5rem;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.leader-message-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.leader-message-card--founder {
  border-top: 4px solid var(--accent);
}

.leader-message-card--principal {
  border-top: 4px solid var(--primary);
}

.leader-message-card--admin {
  border-top: 4px solid var(--secondary);
}

.leader-message-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.leader-message-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.leader-message-card--founder .leader-message-avatar {
  background: linear-gradient(135deg, var(--accent) 0%, #c9952e 100%);
}

.leader-message-card--principal .leader-message-avatar {
  background: linear-gradient(135deg, var(--primary) 0%, #6b1414 100%);
}

.leader-message-card--admin .leader-message-avatar {
  background: linear-gradient(135deg, var(--secondary) 0%, #145030 100%);
}

.leader-initial {
  color: #ffffff;
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 600;
}

.leader-message-info {
  flex: 1;
}

.leader-message-role {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.leader-message-card--founder .leader-message-role {
  background: rgba(212, 169, 83, 0.15);
  color: var(--accent);
}

.leader-message-card--principal .leader-message-role {
  background: rgba(139, 26, 26, 0.1);
  color: var(--primary);
}

.leader-message-card--admin .leader-message-role {
  background: rgba(26, 92, 58, 0.1);
  color: var(--secondary);
}

.leader-message-info h4 {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  color: var(--foreground);
  margin-bottom: 0.125rem;
}

.leader-message-info p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin: 0;
}

.leader-message-quote {
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--muted-foreground);
  font-style: italic;
  position: relative;
  padding-left: 1.5rem;
  margin: 0;
}

.leader-message-quote::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -0.25rem;
  font-family: var(--font-serif);
  font-size: 3rem;
  line-height: 1;
  opacity: 0.15;
}

@media (max-width: 1023px) {
  .leader-message-card {
    padding: 1.75rem;
  }

  .leader-message-avatar {
    width: 60px;
    height: 60px;
  }

  .leader-initial {
    font-size: 1.5rem;
  }
}

/* ====================================
   FACULTY PAGE SPECIFIC STYLES
   ==================================== */

/* Leadership Section */
.faculty-leadership-section {
  padding: 4rem 1.5rem;
  background: var(--muted);
}

.leadership-cards-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .leadership-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.leadership-card {
  background: var(--card);
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  border: 1px solid var(--border);
  border-top: 4px solid var(--primary);
}

.leadership-avatar {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.leadership-card h4 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.leadership-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--primary);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 600;
  border-radius: 2rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.leadership-badge--secondary {
  background: var(--secondary);
}

.leadership-badge--green {
  background: #22c55e;
}

.leadership-qualification {
  font-size: 0.9rem;
  color: var(--muted-foreground);
  margin: 0;
}

/* Teaching Staff Section */
.teaching-staff-section {
  padding: 5rem 1.5rem;
}

.staff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .staff-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .staff-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.staff-card {
  background: var(--card);
  padding: 1.5rem;
  border-radius: 1rem;
  text-align: center;
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.staff-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.staff-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.staff-card h4 {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.staff-subject {
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.staff-badge {
  display: inline-block;
  padding: 0.2rem 0.5rem;
  background: var(--primary);
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 600;
  border-radius: 0.25rem;
  margin-bottom: 0.5rem;
}

.staff-badge--blue {
  background: #3b82f6;
}

.staff-badge--green {
  background: #22c55e;
}

.staff-badge--purple {
  background: #8b5cf6;
}

.staff-badge--orange {
  background: #f97316;
}

.staff-badge--pink {
  background: #ec4899;
}

.staff-qualification {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin: 0;
}

/* Support Staff Section */
.support-staff-section {
  padding: 4rem 1.5rem;
  background: var(--muted);
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .support-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.support-card {
  background: var(--card);
  padding: 1.5rem 1rem;
  border-radius: 0.75rem;
  text-align: center;
  border: 1px solid var(--border);
}

.support-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--primary);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: 50%;
  margin-bottom: 0.75rem;
}

.support-card h4 {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.support-card p {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin: 0;
}

/* Mentorship Section */
.mentorship-section {
  padding: 5rem 1.5rem;
}

.mentorship-card {
  background: linear-gradient(135deg, var(--primary) 0%, #6b1414 100%);
  color: #ffffff;
  padding: 3rem 2rem;
  border-radius: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.mentorship-header {
  text-align: center;
  margin-bottom: 2rem;
}

.mentorship-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 1rem;
}

.mentorship-header h2 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.mentorship-header p {
  opacity: 0.9;
}

.mentorship-intro {
  text-align: center;
  opacity: 0.9;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.mentorship-features {
  display: grid;
  gap: 1rem;
}

.mentorship-feature {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
}

.mentorship-feature .check-icon {
  color: #ffffff;
  font-size: 1.25rem;
}

.mentorship-feature strong {
  display: block;
  margin-bottom: 0.25rem;
}

.mentorship-feature p {
  font-size: 0.9rem;
  opacity: 0.85;
  margin: 0;
}

/* Qualifications Section */
.qualifications-section {
  padding: 5rem 1.5rem;
  background: var(--muted);
}

.qualifications-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .qualifications-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.qualification-card {
  background: var(--card);
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  text-align: center;
}

.qualification-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.qualification-card h4 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.qualification-card p {
  color: var(--muted-foreground);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.qualification-note {
  font-size: 0.875rem;
  font-style: italic;
  color: var(--muted-foreground);
  margin: 0;
}

/* Retention Section */
.retention-section {
  padding: 5rem 1.5rem;
}

.retention-card {
  background: linear-gradient(135deg, var(--accent) 0%, #c9952e 100%);
  color: #ffffff;
  padding: 3rem 2rem;
  border-radius: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.retention-header {
  text-align: center;
  margin-bottom: 2rem;
}

.retention-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 1rem;
}

.retention-header h2 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.retention-header p {
  opacity: 0.9;
}

.retention-intro {
  text-align: center;
  opacity: 0.9;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.quality-indicators {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 0.75rem;
}

.quality-indicators h4 {
  margin-bottom: 1rem;
}

.quality-indicators ul {
  list-style: none;
  margin: 0;
}

.quality-indicators li {
  padding: 0.5rem 0;
  opacity: 0.9;
}

/* Development Section */
.development-section {
  padding: 5rem 1.5rem;
  background: var(--muted);
}

.development-content {
  max-width: 800px;
  margin: 0 auto;
}

.development-header {
  text-align: center;
  margin-bottom: 2rem;
}

.development-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 1rem;
}

.development-header h2 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.development-header p {
  color: var(--muted-foreground);
}

.development-intro {
  text-align: center;
  color: var(--muted-foreground);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.development-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.development-item {
  background: var(--card);
  padding: 1.5rem;
  border-radius: 0.75rem;
  text-align: center;
  border: 1px solid var(--border);
}

.development-item-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.5rem;
}

.development-item strong {
  display: block;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.development-item p {
  font-size: 0.8rem;
  color: var(--muted-foreground);
  margin: 0;
}

.development-commitment {
  background: var(--card);
  padding: 1.5rem;
  border-radius: 0.75rem;
  text-align: center;
  border: 1px solid var(--border);
}

.development-commitment strong {
  display: block;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.development-commitment p {
  color: var(--muted-foreground);
  line-height: 1.6;
  margin: 0;
}

/* Faculty Highlights Section */
.faculty-highlights-section {
  padding: 4rem 1.5rem;
}

.faculty-highlights-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .faculty-highlights-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.faculty-highlight-card {
  background: var(--secondary);
  color: #ffffff;
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
}

.faculty-highlight-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.faculty-highlight-card h4 {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.faculty-highlight-card p {
  font-size: 0.9rem;
  opacity: 0.9;
  margin: 0;
}

/* ====================================
   RESULTS PAGE SPECIFIC STYLES
   ==================================== */

/* Results Status Card */
.results-status-card {
  background: var(--card);
  padding: 3rem 2rem;
  border-radius: 1.5rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  border: 1px solid var(--border);
}

.status-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.results-status-card h2 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.results-status-card>p {
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.first-batch-notice {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: linear-gradient(135deg, rgba(139, 26, 26, 0.08) 0%, rgba(139, 26, 26, 0.04) 100%);
  padding: 1.5rem;
  border-radius: 1rem;
  text-align: left;
}

.notice-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.first-batch-notice strong {
  display: block;
  color: var(--primary);
  font-family: var(--font-serif);
  margin-bottom: 0.25rem;
}

.first-batch-notice p {
  color: var(--muted-foreground);
  font-size: 0.9rem;
  margin: 0;
}

/* Results Table Section */
.results-table-section {
  padding: 4rem 1.5rem;
  background: var(--muted);
}

.table-wrapper {
  max-width: 900px;
  margin: 0 auto;
  overflow-x: auto;
}

.results-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--card);
  border-radius: 0.75rem;
  overflow: hidden;
}

.results-table th,
.results-table td {
  padding: 1rem 1.25rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.results-table th {
  background: var(--primary);
  color: #ffffff;
  font-weight: 600;
  font-size: 0.875rem;
}

.results-table td {
  color: var(--muted-foreground);
}

.results-table tr:last-child td {
  border-bottom: none;
}

.results-table tr:hover td {
  background: var(--muted);
}

.pass-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--secondary);
  color: #ffffff;
  border-radius: 2rem;
  font-size: 0.8rem;
  font-weight: 600;
}

.pass-badge--high {
  background: #22c55e;
}

.table-note {
  text-align: center;
  color: var(--muted-foreground);
  font-size: 0.85rem;
  font-style: italic;
  margin-top: 1rem;
}

/* Annual Results Section */
.annual-results-section {
  padding: 5rem 1.5rem;
}

.results-table--full {
  max-width: 700px;
  margin: 0 auto;
}

/* Growth Section */
.growth-section {
  padding: 5rem 1.5rem;
  background: var(--muted);
}

.growth-card {
  background: linear-gradient(135deg, var(--secondary) 0%, #145030 100%);
  color: #ffffff;
  padding: 3rem 2rem;
  border-radius: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.growth-header {
  text-align: center;
  margin-bottom: 2rem;
}

.growth-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 1rem;
}

.growth-header h2 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.growth-header p {
  opacity: 0.9;
}

.growth-intro {
  text-align: center;
  opacity: 0.9;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.growth-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.growth-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 1rem;
  text-align: center;
}

.growth-item-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.5rem;
}

.growth-item strong {
  display: block;
  margin-bottom: 0.25rem;
}

.growth-item p {
  font-size: 0.85rem;
  opacity: 0.85;
  margin: 0;
}

/* Retention Indicator Section */
.retention-indicator-section {
  padding: 5rem 1.5rem;
}

.retention-indicator-card {
  background: var(--card);
  padding: 3rem 2rem;
  border-radius: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
  border: 1px solid var(--border);
  text-align: center;
}

.retention-indicator-card h2 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.retention-subtitle {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.retention-intro {
  color: var(--muted-foreground);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.retention-indicators {
  background: var(--muted);
  padding: 1.5rem;
  border-radius: 1rem;
  text-align: left;
}

.retention-indicators h4 {
  color: var(--foreground);
  margin-bottom: 1rem;
}

.retention-indicators ul {
  list-style: none;
  margin: 0;
}

.retention-indicators li {
  padding: 0.5rem 0;
  color: var(--muted-foreground);
}

/* Satisfaction Section */
.satisfaction-section {
  padding: 5rem 1.5rem;
  background: var(--muted);
}

.satisfaction-card {
  background: linear-gradient(135deg, var(--accent) 0%, #c9952e 100%);
  color: #ffffff;
  padding: 3rem 2rem;
  border-radius: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.satisfaction-header {
  text-align: center;
  margin-bottom: 2rem;
}

.satisfaction-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 1rem;
}

.satisfaction-header h2 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.satisfaction-header p {
  opacity: 0.9;
}

.satisfaction-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .satisfaction-content {
    flex-direction: row;
    text-align: left;
  }
}

.rating-display {
  background: rgba(255, 255, 255, 0.2);
  padding: 1.5rem 2rem;
  border-radius: 1rem;
  text-align: center;
  flex-shrink: 0;
}

.rating-value {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  font-family: var(--font-serif);
}

.rating-source {
  font-size: 0.85rem;
  opacity: 0.85;
}

.rating-description {
  opacity: 0.9;
  line-height: 1.7;
  margin: 0;
}

.appreciation-box {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 1rem;
}

.appreciation-box h4 {
  margin-bottom: 1rem;
}

.appreciation-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

.appreciation-grid span {
  opacity: 0.9;
  font-size: 0.9rem;
}

/* Board Exam Section */
.board-exam-section {
  padding: 5rem 1.5rem;
}

.board-exam-card {
  background: linear-gradient(135deg, var(--primary) 0%, #6b1414 100%);
  color: #ffffff;
  padding: 3rem 2rem;
  border-radius: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.board-exam-header {
  text-align: center;
  margin-bottom: 2rem;
}

.board-exam-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 1rem;
}

.board-exam-header h2 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.board-exam-header p {
  opacity: 0.9;
}

.board-exam-intro {
  text-align: center;
  opacity: 0.9;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.prep-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.prep-feature {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 1rem;
  text-align: center;
}

.prep-feature-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.5rem;
}

.prep-feature strong {
  display: block;
  margin-bottom: 0.25rem;
}

.prep-feature p {
  font-size: 0.85rem;
  opacity: 0.85;
  margin: 0;
}

.board-commitment {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 0.75rem;
  text-align: center;
}

.board-commitment strong {
  display: block;
  margin-bottom: 0.5rem;
}

.board-commitment p {
  opacity: 0.9;
  margin: 0;
  line-height: 1.6;
}

/* Achievements Highlights Section */
.achievements-highlights-section {
  padding: 5rem 1.5rem;
  background: var(--muted);
}

.achievements-highlights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .achievements-highlights-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.achievement-highlight-card {
  background: var(--card);
  padding: 2rem 1.5rem;
  border-radius: 1rem;
  text-align: center;
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.achievement-highlight-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.achievement-highlight-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.achievement-highlight-card h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.achievement-highlight-card p {
  font-size: 0.8rem;
  color: var(--muted-foreground);
  margin: 0;
  line-height: 1.5;
}

/* ====================================
   CONTACT PAGE PROFESSIONAL STYLES
   ==================================== */

/* Quick Contact Section */
.quick-contact-section {
  padding: 4rem 1.5rem;
  background: var(--muted);
  margin-top: -3rem;
  position: relative;
  z-index: 1;
}

.quick-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .quick-contact-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.quick-contact-card {
  background: var(--card);
  padding: 1.5rem;
  border-radius: 1rem;
  text-align: center;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  display: block;
}

.quick-contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--primary);
}

.quick-contact-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.quick-contact-card h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.quick-contact-card p {
  font-size: 0.85rem;
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
}

.quick-contact-action {
  font-size: 0.75rem;
  color: var(--primary);
  font-weight: 600;
}

.quick-contact-card--whatsapp:hover {
  border-color: #25D366;
}

.quick-contact-card--whatsapp .quick-contact-action {
  color: #25D366;
}

.quick-contact-card--hours {
  cursor: default;
}

.quick-contact-card--hours:hover {
  transform: none;
  border-color: var(--border);
}

/* Main Contact Section */
.main-contact-section {
  padding: 5rem 1.5rem;
}

.contact-layout {
  display: grid;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .contact-layout {
    grid-template-columns: 1fr 1.2fr;
  }
}

/* Contact Info Panel */
.contact-info-panel {
  background: linear-gradient(135deg, var(--primary) 0%, #6b1414 100%);
  color: #ffffff;
  padding: 2.5rem;
  border-radius: 1.5rem;
}

.contact-info-header {
  margin-bottom: 2rem;
}

.contact-info-header h2 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.contact-info-header p {
  opacity: 0.9;
}

.contact-details {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-detail-item {
  display: flex;
  gap: 1rem;
}

.contact-detail-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-detail-content h4 {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  opacity: 0.8;
}

.contact-detail-content p {
  margin: 0;
}

.contact-detail-content a {
  color: #ffffff;
  transition: opacity 0.2s;
}

.contact-detail-content a:hover {
  opacity: 0.8;
}

.secondary-phone,
.secondary-email {
  font-size: 0.85rem;
  opacity: 0.8;
  margin-top: 0.25rem;
}

.social-connect {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.social-connect h4 {
  font-size: 0.875rem;
  margin-bottom: 1rem;
  opacity: 0.8;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: all 0.2s;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.social-link--facebook:hover {
  background: #1877F2;
}

.social-link--instagram:hover {
  background: #E4405F;
}

.social-link--youtube:hover {
  background: #FF0000;
}

.social-link--twitter:hover {
  background: #1DA1F2;
}

/* Contact Form Panel */
.contact-form-panel {
  background: var(--card);
  padding: 2.5rem;
  border-radius: 1.5rem;
  border: 1px solid var(--border);
}

.contact-form-header {
  margin-bottom: 2rem;
}

.contact-form-header h2 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.contact-form-header p {
  color: var(--muted-foreground);
}

.professional-contact-form .form-row {
  display: grid;
  gap: 1rem;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .professional-contact-form .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.professional-contact-form .form-group {
  margin-bottom: 0;
}

.professional-contact-form .form-group.full-width {
  margin-top: 1rem;
}

.professional-contact-form label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.professional-contact-form .required {
  color: var(--primary);
}

.professional-contact-form input,
.professional-contact-form select,
.professional-contact-form textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  font-size: 0.9rem;
  background: var(--background);
  transition: all 0.2s;
}

.professional-contact-form input:focus,
.professional-contact-form select:focus,
.professional-contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(139, 26, 26, 0.1);
}

.professional-contact-form input::placeholder,
.professional-contact-form textarea::placeholder {
  color: var(--muted-foreground);
  opacity: 0.6;
}

.form-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

.form-note {
  font-size: 0.8rem;
  color: var(--muted-foreground);
  margin: 0;
}

.form-success-message {
  text-align: center;
  padding: 2rem;
}

.success-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.form-success-message h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.form-success-message p {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.btn-outline-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--primary);
  color: var(--primary);
  font-weight: 600;
  border-radius: 0.5rem;
  transition: all 0.2s;
}

.btn-outline-primary:hover {
  background: var(--primary);
  color: #ffffff;
}

.form-error-message {
  background: rgba(220, 38, 38, 0.1);
  color: #dc2626;
  padding: 1rem;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.error-icon {
  font-size: 1.25rem;
}

/* Map Section */
.map-section {
  padding: 5rem 1.5rem;
  background: var(--muted);
}

.map-container {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  max-width: 1100px;
  margin: 0 auto;
}

.map-container iframe {
  display: block;
}

.map-overlay-info {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 10;
}

.map-info-card {
  background: #ffffff;
  padding: 1.25rem 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  max-width: 320px;
}

.map-info-card h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.map-info-card p {
  font-size: 0.85rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.btn-outline-sm {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 1rem;
  border: 1px solid var(--primary);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 0.375rem;
  transition: all 0.2s;
}

.btn-outline-sm:hover {
  background: var(--primary);
  color: #ffffff;
}

/* FAQ Section */
.contact-faq-section {
  padding: 5rem 1.5rem;
}

.faq-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.faq-item {
  background: var(--card);
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
}

.faq-item h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.faq-item p {
  font-size: 0.9rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  margin: 0;
}

/* ====================================
   ADMISSIONS PAGE STYLES
   ==================================== */

/* Why Apply Section */
.why-apply-section {
  padding: 4rem 1.5rem;
  background: var(--muted);
  margin-top: -3rem;
  position: relative;
  z-index: 1;
}

.why-apply-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .why-apply-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.why-apply-card {
  background: var(--card);
  padding: 1.5rem;
  border-radius: 1rem;
  text-align: center;
  border: 1px solid var(--border);
}

.why-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.75rem;
}

.why-apply-card h4 {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.why-apply-card p {
  font-size: 0.8rem;
  color: var(--muted-foreground);
  margin: 0;
}

/* Admission Steps Section */
.admission-steps-section {
  padding: 5rem 1.5rem;
}

.admission-steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .admission-steps-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.admission-step {
  text-align: center;
  position: relative;
}

.step-num {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #ffffff;
  font-weight: 700;
  font-size: 1.25rem;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.admission-step h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.admission-step p {
  font-size: 0.8rem;
  color: var(--muted-foreground);
  margin: 0;
}

/* Application Form Section */
.application-form-section {
  padding: 5rem 1.5rem;
  background: var(--muted);
}

.application-form-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background: var(--card);
  padding: 2.5rem;
  border-radius: 1.5rem;
  border: 1px solid var(--border);
}

.form-header {
  text-align: center;
  margin-bottom: 2rem;
}

.form-header h2 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.form-header p {
  color: var(--muted-foreground);
}

/* Progress Steps */
.form-progress {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  position: relative;
}

.form-progress::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--border);
  z-index: 0;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
  flex: 1;
}

.progress-num {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--muted);
  color: var(--muted-foreground);
  font-weight: 700;
  border-radius: 50%;
  border: 2px solid var(--border);
  margin-bottom: 0.5rem;
  transition: all 0.3s;
}

.progress-step.active .progress-num {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}

.progress-step.completed .progress-num {
  background: var(--secondary);
  color: #ffffff;
  border-color: var(--secondary);
}

.progress-label {
  font-size: 0.7rem;
  color: var(--muted-foreground);
  text-align: center;
}

.progress-step.active .progress-label {
  color: var(--primary);
  font-weight: 600;
}

/* Form Steps */
.form-step {
  display: none;
}

.form-step.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-step h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--foreground);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

/* Form Elements */
#admissionForm .form-row {
  display: grid;
  gap: 1rem;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  #admissionForm .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

#admissionForm .form-group {
  margin-bottom: 0;
}

#admissionForm .form-group.full-width {
  grid-column: 1 / -1;
}

#admissionForm label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

#admissionForm .required {
  color: var(--primary);
}

#admissionForm input,
#admissionForm select,
#admissionForm textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  font-size: 0.9rem;
  background: var(--background);
  transition: all 0.2s;
}

#admissionForm input:focus,
#admissionForm select:focus,
#admissionForm textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(139, 26, 26, 0.1);
}

#admissionForm input.error,
#admissionForm select.error,
#admissionForm textarea.error {
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

#admissionForm input::placeholder,
#admissionForm textarea::placeholder {
  color: var(--muted-foreground);
  opacity: 0.6;
}

#admissionForm input[readonly] {
  background: var(--muted);
  cursor: not-allowed;
}

/* Parent Section */
.parent-section {
  background: var(--muted);
  padding: 1.5rem;
  border-radius: 1rem;
  margin-bottom: 1.5rem;
}

.parent-section h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--foreground);
  margin-bottom: 1rem;
}

/* Checkbox */
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  cursor: pointer;
  margin-top: 0.75rem;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Upload Grid */
.upload-note {
  font-size: 0.85rem;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.upload-grid {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .upload-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.upload-item {
  background: var(--muted);
  padding: 1.5rem;
  border-radius: 1rem;
  text-align: center;
  border: 2px dashed var(--border);
  transition: all 0.2s;
}

.upload-item:hover {
  border-color: var(--primary);
}

.upload-item label {
  display: block;
  cursor: pointer;
  margin-bottom: 0.75rem;
}

.upload-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.5rem;
}

.upload-item input[type="file"] {
  display: none;
}

.file-name {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  word-break: break-all;
}

/* Declaration Box */
.declaration-box {
  background: rgba(139, 26, 26, 0.05);
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(139, 26, 26, 0.1);
  margin-bottom: 1.5rem;
}

.declaration-box .checkbox-label {
  margin-top: 0;
  line-height: 1.6;
}

/* Form Navigation */
.form-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.btn-prev,
.btn-next {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: 0.5rem;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn-prev {
  background: var(--muted);
  color: var(--foreground);
}

.btn-prev:hover {
  background: var(--border);
}

.btn-next {
  background: var(--primary);
  color: #ffffff;
}

.btn-next:hover {
  box-shadow: 0 5px 20px rgba(139, 26, 26, 0.25);
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: linear-gradient(135deg, var(--secondary) 0%, #145030 100%);
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 0.5rem;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn-submit:hover {
  box-shadow: 0 5px 20px rgba(26, 92, 58, 0.25);
}

.btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.btn-loading {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.spinner {
  width: 20px;
  height: 20px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* Success Message */
.form-success {
  text-align: center;
  padding: 2rem;
}

.success-content {
  max-width: 500px;
  margin: 0 auto;
}

.form-success .success-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.form-success h2 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.form-success>.success-content>p {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.application-details {
  background: var(--muted);
  padding: 1.5rem;
  border-radius: 1rem;
  text-align: left;
  margin-bottom: 2rem;
}

.application-details p {
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.application-details ul {
  list-style: none;
  margin: 0;
}

.application-details li {
  padding: 0.375rem 0;
  color: var(--muted-foreground);
}

/* Error Banner */
.form-error-banner {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  background: #dc2626;
  color: #ffffff;
  padding: 1rem 1.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 100;
}

.form-error-banner .close-btn {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

/* Admission Contact Section */
.admission-contact-section {
  padding: 4rem 1.5rem;
}

.admission-contact-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .admission-contact-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.admission-contact-card {
  background: var(--card);
  padding: 1.5rem;
  border-radius: 1rem;
  text-align: center;
  border: 1px solid var(--border);
}

.admission-contact-card h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.admission-contact-card p {
  margin-bottom: 0.25rem;
}

.admission-contact-card a {
  color: var(--primary);
  font-weight: 500;
}

.admission-contact-card span {
  font-size: 0.8rem;
  color: var(--muted-foreground);
}

/* ====================================
   FACULTY API CARDS
   ==================================== */

/* Loading State */
.loading-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.5rem;
  gap: 1.5rem;
}

.loading-spinner {
  width: 48px;
  height: 48px;
  border: 3px solid var(--muted);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.loading-container p {
  color: var(--muted-foreground);
  font-size: 0.9375rem;
}

/* Error State */
.error-container {
  padding: 3rem 1.5rem;
  text-align: center;
}

.error-container p {
  color: var(--muted-foreground);
  font-size: 1rem;
  background: rgba(139, 26, 26, 0.05);
  padding: 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(139, 26, 26, 0.1);
}

/* API Staff Grid */
.api-staff-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .api-staff-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .api-staff-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .api-staff-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* API Staff Card */
.api-staff-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.api-staff-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.api-staff-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(139, 26, 26, 0.2);
}

.api-staff-card:hover::before {
  transform: scaleX(1);
}

/* Photo Wrapper */
.api-staff-photo-wrapper {
  width: 120px;
  height: 120px;
  margin: 0 auto 1.25rem;
  position: relative;
}

.api-staff-photo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--border);
  transition: all 0.3s ease;
}

.api-staff-card:hover .api-staff-photo {
  border-color: var(--primary);
  transform: scale(1.05);
}

/* Staff Info */
.api-staff-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.api-staff-name {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
  margin: 0;
  line-height: 1.3;
}

.api-staff-email {
  font-size: 0.8125rem;
  color: var(--muted-foreground);
  margin: 0;
  word-break: break-word;
}

/* Designation Badge */
.api-staff-designation {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.375rem 0.875rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 0.375rem;
  margin-top: 0.25rem;
  align-self: center;
}

/* Designation Badge Variants */
.designation-pgt {
  background: rgba(139, 26, 26, 0.1);
  color: var(--primary);
}

.designation-tgt {
  background: rgba(26, 92, 58, 0.1);
  color: var(--secondary);
}

.designation-prt {
  background: rgba(59, 130, 246, 0.1);
  color: #2563eb;
}

.designation-ntt {
  background: rgba(168, 85, 247, 0.1);
  color: #9333ea;
}

.designation-music,
.designation-dance {
  background: rgba(236, 72, 153, 0.1);
  color: #db2777;
}

.designation-principal {
  background: rgba(212, 169, 83, 0.15);
  color: #a16207;
}

.designation-admin {
  background: rgba(100, 116, 139, 0.1);
  color: #475569;
}

.designation-support {
  background: rgba(251, 146, 60, 0.1);
  color: #ea580c;
}

.designation-default {
  background: rgba(115, 115, 115, 0.1);
  color: var(--muted-foreground);
}

/* No Staff Message */
.no-staff-message {
  text-align: center;
  padding: 3rem 1.5rem;
  color: var(--muted-foreground);
  font-size: 1rem;
}

/* Responsive adjustments */
@media (max-width: 639px) {
  .api-staff-photo-wrapper {
    width: 100px;
    height: 100px;
  }

  .api-staff-name {
    font-size: 1rem;
  }

  .api-staff-card {
    padding: 1.25rem;
  }
}/* ====================================
   FACULTY MODAL STYLES
   ==================================== */

/* Detail Button */
.api-staff-detail-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--muted-foreground);
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 0.375rem;
    margin-top: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.api-staff-detail-btn:hover {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
}

.api-staff-detail-btn svg {
    width: 14px;
    height: 14px;
}

/* Modal */
.api-staff-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.api-staff-modal.active {
    opacity: 1;
    visibility: visible;
}

.api-staff-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.api-staff-modal-content {
    position: relative;
    background: var(--card);
    border-radius: 1rem;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.api-staff-modal.active .api-staff-modal-content {
    transform: translateY(0) scale(1);
}

.api-staff-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10;
}

.api-staff-modal-close:hover {
    background: rgba(139, 26, 26, 0.1);
    color: var(--primary);
}

.api-staff-modal-close svg {
    width: 20px;
    height: 20px;
}

/* Modal Header */
.api-staff-modal-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2.5rem 2rem 2rem;
    background: linear-gradient(135deg, var(--muted) 0%, #FDF8F0 100%);
    border-radius: 1rem 1rem 0 0;
}

.api-staff-modal-photo {
    width: 120px;
    height: 120px;
    margin-bottom: 1.25rem;
}

.api-staff-modal-photo img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--card);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.api-staff-modal-title {
    text-align: center;
}

.api-staff-modal-title h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.75rem;
}

.api-staff-modal-title .api-staff-designation {
    display: inline-flex;
    margin: 0;
}

/* Modal Body */
.api-staff-modal-body {
    padding: 2rem;
}

.api-staff-detail-row {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}

.api-staff-detail-row:last-of-type {
    border-bottom: none;
}

.api-staff-detail-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--muted-foreground);
    min-width: 140px;
    flex-shrink: 0;
}

.api-staff-detail-label svg {
    width: 18px;
    height: 18px;
    color: var(--primary);
}

.api-staff-detail-value {
    font-size: 0.9375rem;
    color: var(--foreground);
    word-break: break-word;
}

.api-staff-detail-value a {
    color: var(--primary);
    text-decoration: none;
    transition: opacity 0.2s;
}

.api-staff-detail-value a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* Status Badge */
.api-staff-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-top: 1rem;
    width: 100%;
    justify-content: center;
}

.api-staff-status-badge.active {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
}

.api-staff-status-badge.active::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #16a34a;
    border-radius: 50%;
}

.api-staff-status-badge.inactive {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
}

.api-staff-status-badge.inactive::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #dc2626;
    border-radius: 50%;
}

/* Responsive */
@media (max-width: 639px) {
    .api-staff-modal-content {
        width: 95%;
    }

    .api-staff-modal-header {
        padding: 2rem 1.5rem 1.5rem;
    }

    .api-staff-modal-body {
        padding: 1.5rem;
    }

    .api-staff-modal-photo {
        width: 100px;
        height: 100px;
    }

    .api-staff-modal-title h3 {
        font-size: 1.25rem;
    }

    .api-staff-detail-row {
        flex-direction: column;
        gap: 0.5rem;
    }

    .api-staff-detail-label {
        min-width: auto;
    }
}


/* Leadership Photo Style */
.leadership-photo {
  width: 100px;
  height: 100px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--primary);
  box-shadow: 0 4px 15px rgba(139, 26, 26, 0.2);
}

.leadership-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.leadership-card .api-staff-detail-btn {
  margin-top: 1rem;
}

/* ========================================
   Disclosure Page - Document Section Styles
   ======================================== */

/* Disclosure Table */
.disclosure-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2.5rem;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.disclosure-table tr {
    border-bottom: 1px solid #e0e0e0;
}

.disclosure-table tr:last-child {
    border-bottom: none;
}

.disclosure-table th {
    background-color: var(--primary, #8b1a1a);
    color: white;
    font-weight: 600;
    text-align: left;
    padding: 1rem 1.5rem;
    width: 35%;
}

.disclosure-table td {
    padding: 1rem 1.5rem;
    color: #333;
}

/* Document Categories */
.document-category {
    margin-bottom: 2.5rem;
}

.document-category h4 {
    color: var(--primary, #8b1a1a);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary, #8b1a1a);
}

.info-text {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1rem;
}

/* Document List */
.document-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.document-list li {
    margin-bottom: 0.5rem;
}

.document-link {
    display: flex;
    align-items: center;
    padding: 1rem 1.25rem;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    gap: 0.75rem;
}

.document-link:hover {
    background: linear-gradient(135deg, #f8f8f8 0%, #fff 100%);
    border-color: var(--primary, #8b1a1a);
    box-shadow: 0 4px 12px rgba(139, 26, 26, 0.15);
    transform: translateY(-2px);
}

.doc-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.doc-name {
    flex-grow: 1;
    font-weight: 500;
    color: #333;
}

.doc-size {
    color: #999;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.download-icon {
    color: var(--primary, #8b1a1a);
    font-size: 1.25rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.document-link:hover .download-icon {
    opacity: 1;
    transform: translateX(0);
}

.document-link:hover .doc-name {
    color: var(--primary, #8b1a1a);
}

.no-documents {
    text-align: center;
    padding: 3rem;
    color: #999;
    font-style: italic;
    background: #f8f8f8;
    border-radius: 8px;
}

.note {
    margin-top: 2rem;
    padding: 1rem;
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 4px;
    color: #856404;
}

/* Responsive Design */
@media (max-width: 768px) {
    .disclosure-table th {
        width: 40%;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .disclosure-table td {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .document-link {
        padding: 0.875rem 1rem;
        flex-wrap: wrap;
    }
    
    .doc-size {
        order: 3;
        flex-basis: 100%;
        margin-top: 0.25rem;
        font-size: 0.8rem;
    }
    
    .document-category h4 {
        font-size: 1.1rem;
    }
}


/* Additional Disclosure Page Styles */
.content-section h2 {
    color: var(--primary, #8b1a1a);
    font-size: 1.75rem;
    font-weight: 700;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--primary, #8b1a1a);
}

.content-section h2:first-of-type {
    margin-top: 0;
}

.content-section h3 {
    color: var(--primary, #8b1a1a);
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
}

/* Improve table spacing for multiple tables */
.disclosure-table {
    margin-bottom: 2rem;
}

.disclosure-table + h2 {
    margin-top: 3rem;
}

