/* NNSAT REDESIGN CORE STYLESHEET */
@import url('https://fonts.googleapis.com/css2?family=Cardo:ital,wght@0,400;0,700;1,400&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  --navy-dark: #060b13;
  --navy-mid: #0d1527;
  --navy-light: #16223f;
  --navy-glass: rgba(13, 21, 39, 0.85);
  
  --gold: #d4af37;
  --gold-hover: #b89329;
  --gold-light: rgba(212, 175, 55, 0.12);
  --gold-border: rgba(212, 175, 55, 0.3);
  
  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --white: #ffffff;
  --success: #10b981;
  --danger: #ef4444;
  
  --border: rgba(255, 255, 255, 0.08);
  --border-focus: rgba(212, 175, 55, 0.6);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.4);
  --shadow-gold: 0 0 15px rgba(212, 175, 55, 0.2);
  
  --font-body: 'Outfit', -apple-system, sans-serif;
  --font-serif: 'Cardo', Georgia, serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--navy-dark);
}

body {
  font-family: var(--font-body);
  background-color: var(--navy-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

button, input, select, textarea {
  font-family: inherit;
  color: inherit;
}

/* SCROLLBAR */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--navy-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--navy-light);
  border-radius: var(--radius-sm);
  border: 2px solid var(--navy-dark);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

/* LAYOUT CONTAINER */
.app-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* NAVIGATION HEADER */
.nav-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--navy-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.nav-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-section {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-logo {
  height: 52px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

.brand-titles {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--white);
  line-height: 1.2;
}

.brand-tagline {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  position: relative;
}

.nav-links a:hover, .nav-links li.active a {
  color: var(--gold);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0.75rem;
  right: 0.75rem;
  height: 2px;
  background-color: var(--gold);
  transform: scaleX(0);
  transition: var(--transition);
}

.nav-links a:hover::after, .nav-links li.active a::after {
  transform: scaleX(1);
}

/* MOBILE NAV TOGGLE */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-primary);
  padding: 0.5rem;
}

/* MAIN CONTENT */
main {
  margin-top: 84px; /* offset fixed header */
  flex-grow: 1;
}

.page-view {
  display: none;
  animation: fadeIn 0.4s ease-in-out forwards;
}

.page-view.active-view {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* HERO SECTION */
.hero {
  position: relative;
  height: 75vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: radial-gradient(circle at center, var(--navy-light) 0%, var(--navy-dark) 100%);
  border-bottom: 2px solid var(--gold-border);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(6, 11, 19, 0.95) 40%, rgba(6, 11, 19, 0.4) 100%);
  z-index: 1;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: background-image 0.5s ease-in-out;
  opacity: 0.6;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  width: 100%;
}

.hero-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: var(--gold-light);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.hero-btns {
  display: flex;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

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

.btn-primary:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-primary);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.05);
  border-color: var(--text-primary);
  transform: translateY(-2px);
}

/* SECTIONS */
.section {
  padding: 6rem 2rem;
  max-width: 1280px;
  margin: 0 auto;
}

.section-alt {
  background-color: var(--navy-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem auto;
}

.section-tag {
  color: var(--gold);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: block;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--white);
  font-weight: 700;
}

.section-desc {
  color: var(--text-secondary);
  margin-top: 0.75rem;
  font-size: 1.1rem;
}

/* STATS BAR */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: -4rem;
  position: relative;
  z-index: 3;
  padding: 0 2rem;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.stat-card {
  background: var(--navy-light);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  border-color: var(--gold-border);
}

.stat-num {
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-primary);
  font-weight: 600;
}

.stat-desc {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-top: 0.25rem;
}

/* GENERAL GRID & CARDS */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

/* COMMANDANT & ABOUT ELEMENTS */
.welcome-image-wrapper {
  position: relative;
  padding: 8px;
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  background: var(--navy-mid);
  box-shadow: var(--shadow-md);
  display: block;
  align-self: center; /* Prevents vertical stretching in flex/grid layouts */
}

.welcome-image {
  width: 100%;
  aspect-ratio: 4/3; /* Enforces consistent proportion for framing */
  border-radius: var(--radius-md);
  display: block;
  object-fit: cover;
}

.signature-block {
  margin-top: 2rem;
  border-left: 3px solid var(--gold);
  padding-left: 1.5rem;
}

.sig-name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--white);
  font-weight: 700;
}

.sig-title {
  font-size: 0.85rem;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
}

/* COURSES CARDS */
.course-card {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.course-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--border);
  transition: var(--transition);
}

.course-card:hover {
  transform: translateY(-5px);
  background: var(--navy-light);
  border-color: var(--gold-border);
}

.course-card:hover::before {
  background: var(--gold);
}

.course-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.course-duration {
  font-size: 0.8rem;
  background: rgba(255,255,255,0.05);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  border: 1px solid var(--border);
  color: var(--text-secondary);
}

.course-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 1rem;
}

.course-text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.course-meta {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--gold);
}

/* DYNAMIC NEWS CARDS */
.news-card {
  background: var(--navy-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-border);
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.news-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.news-card:hover .news-img {
  transform: scale(1.03);
}

.news-card-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.news-date {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.news-card-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 1rem;
}

.news-excerpt {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-read-more {
  margin-top: auto;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* ABOUT PAGE SPECIALTIES */
.facilities-tabs {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1rem;
}

.tab-btn {
  background: none;
  border: none;
  padding: 0.75rem 1.5rem;
  color: var(--text-secondary);
  font-weight: 600;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

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

.tab-btn.active-tab {
  background: var(--gold-light);
  color: var(--gold);
  border: 1px solid var(--gold-border);
}

.facility-panel {
  display: none;
  animation: fadeIn 0.3s ease;
}

.facility-panel.active-panel {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
}

/* DYNAMIC NEWS MODAL */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 7, 13, 0.85);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background: var(--navy-mid);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  max-width: 900px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-md);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.modal-backdrop.open .modal-content {
  transform: translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--navy-light);
  border: 1px solid var(--border);
  color: var(--text-primary);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
}

.modal-close-btn:hover {
  background: var(--gold);
  color: var(--navy-dark);
}

.modal-body {
  padding: 3rem;
}

.modal-img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 2rem;
  border: 1px solid var(--border);
}

.modal-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 1rem;
}

.modal-meta {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1rem;
}

.modal-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.modal-text p {
  margin-bottom: 1.5rem;
}

/* GALLERY GRID & LIGHTBOX */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  border: 1px solid var(--border);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 21, 39, 0.8);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  text-align: center;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-caption {
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  transform: translateY(10px);
  transition: var(--transition);
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

/* E-LIBRARY STYLING */
.library-search-wrapper {
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.search-input-group {
  position: relative;
  display: flex;
}

.search-input {
  width: 100%;
  background: var(--navy-light);
  border: 1px solid var(--border);
  padding: 1rem 1.5rem 1rem 3rem;
  border-radius: var(--radius-md);
  outline: none;
  font-size: 1rem;
  transition: var(--transition);
}

.search-input:focus {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.search-icon {
  position: absolute;
  left: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}

.library-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.library-card {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: var(--transition);
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.library-card:hover {
  border-color: var(--gold-border);
  background: var(--navy-light);
  transform: translateY(-2px);
}

.lib-icon {
  color: var(--gold);
  background: var(--gold-light);
  padding: 1rem;
  border-radius: var(--radius-sm);
}

.lib-content h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.lib-content p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin-bottom: 1.25rem;
}

.lib-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

/* CMS ADMIN DASHBOARD */
.admin-login-wrapper {
  max-width: 420px;
  margin: 6rem auto;
  background: var(--navy-mid);
  border: 1px solid var(--border);
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.form-input {
  width: 100%;
  background: var(--navy-light);
  border: 1px solid var(--border);
  padding: 0.8rem 1rem;
  border-radius: var(--radius-sm);
  outline: none;
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-input:focus {
  border-color: var(--gold);
}

.admin-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 70vh;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--navy-mid);
}

.admin-sidebar {
  background: var(--navy-dark);
  border-right: 1px solid var(--border);
  padding: 2rem 0;
}

.admin-sidebar-menu {
  list-style: none;
}

.admin-menu-item {
  padding: 1rem 2rem;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  border-left: 3px solid transparent;
  transition: var(--transition);
}

.admin-menu-item:hover, .admin-menu-item.active {
  color: var(--gold);
  background: rgba(255,255,255,0.02);
  border-left-color: var(--gold);
}

.admin-panel-content {
  padding: 3rem;
  overflow-y: auto;
  max-height: 80vh;
}

.admin-panel-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.admin-form {
  max-width: 800px;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
}

.admin-table th, .admin-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.admin-table th {
  font-weight: 700;
  color: var(--gold);
}

.admin-table tr:hover {
  background: rgba(255,255,255,0.01);
}

/* FOOTER */
.site-footer {
  background-color: var(--navy-dark);
  border-top: 2px solid var(--gold-border);
  padding: 5rem 2rem 2rem 2rem;
}

.footer-wrapper {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  max-width: 360px;
}

.footer-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

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

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.contact-item svg {
  color: var(--gold);
  margin-top: 0.25rem;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-socials {
  display: flex;
  gap: 1.5rem;
}

/* NOTIFICATION ALERT */
.alert-toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 3000;
  background: var(--navy-light);
  border-left: 4px solid var(--gold);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 1rem;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.alert-toast.show {
  transform: translateY(0);
  opacity: 1;
}

.alert-success {
  border-left-color: var(--success);
}

.alert-danger {
  border-left-color: var(--danger);
}

/* RESPONSIVENESS */
@media (max-width: 1024px) {
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  
  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .mobile-toggle {
    display: block;
  }
  
  .nav-links {
    position: fixed;
    top: 84px;
    left: 0;
    width: 100%;
    background: var(--navy-mid);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    transform: translateY(-150%);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
  }
  
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  
  .facility-panel.active-panel {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-brand {
    grid-column: span 1;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .modal-body {
    padding: 1.5rem;
  }
  
  .modal-title {
    font-size: 1.6rem;
  }
}
