:root {
  --primary: #0f4c81;
  --primary-dark: #0a3355;
  --secondary: #b58a48;
  --sand: #f5f0e8;
  --bg: #f8fafc;
  --text: #1f2937;
  --muted: #5b6778;
  --white: #ffffff;
  --line: #d9e2ec;
  --shadow: 0 14px 38px rgba(15, 76, 129, 0.12);
  --radius: 18px;
  --max: 1200px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
}
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }
.container { width: min(var(--max), calc(100% - 2rem)); margin: 0 auto; }
.topbar {
  background: linear-gradient(135deg, rgba(10,51,85,.97), rgba(15,76,129,.92));
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .9rem 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: .85rem;
  color: var(--white);
  font-weight: 700;
  letter-spacing: .03em;
}
.brand img { width: 58px; height: auto; }
.brand span { display: block; font-size: .92rem; opacity: .9; font-weight: 400; }
.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  justify-content: flex-end;
}
.nav-links a {
  color: var(--white);
  padding: .6rem .85rem;
  border-radius: 999px;
  transition: .25s ease;
  font-size: .96rem;
}
.nav-links a:hover,
.nav-links a.active { background: rgba(255,255,255,.12); text-decoration: none; }
.hero {
  background: linear-gradient(rgba(10,51,85,.58), rgba(10,51,85,.58)), url('images/facilities.jpg') center/cover no-repeat;
  color: var(--white);
  padding: 5.5rem 0 5rem;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 2rem;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  background: rgba(181,138,72,.2);
  color: #f5d9a8;
  border: 1px solid rgba(245,217,168,.35);
  padding: .4rem .8rem;
  border-radius: 999px;
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero h1 { font-size: clamp(2rem, 4vw, 3.5rem); line-height: 1.1; margin: 1rem 0; }
.hero p { font-size: 1.04rem; max-width: 58ch; }
.hero-card {
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  padding: 1.4rem;
}
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .9rem;
}
.stat {
  background: rgba(255,255,255,.12);
  border-radius: 14px;
  padding: 1rem;
}
.stat strong { display: block; font-size: 1.35rem; color: #fff; }
.cta-row { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 1.5rem; }
.btn {
  display: inline-block;
  padding: .9rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  transition: .25s ease;
}
.btn-primary { background: var(--secondary); color: #fff; }
.btn-secondary { border: 1px solid rgba(255,255,255,.45); color: #fff; }
.btn-primary:hover, .btn-secondary:hover { text-decoration: none; transform: translateY(-1px); }
main section { padding: 4rem 0; }
.section-head { max-width: 760px; margin-bottom: 1.6rem; }
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.6rem); margin: 0 0 .7rem; color: var(--primary-dark); }
.section-head p { margin: 0; color: var(--muted); }
.grid-2, .grid-3, .grid-4 {
  display: grid;
  gap: 1.25rem;
}
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid rgba(15,76,129,.08);
}
.card-body { padding: 1.25rem; }
.card h3, .card h4 { margin-top: 0; color: var(--primary-dark); }
.muted { color: var(--muted); }
.badge {
  display: inline-block;
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--secondary);
  font-weight: 700;
}
.feature-list { display: grid; gap: .8rem; padding: 0; margin: 1rem 0 0; list-style: none; }
.feature-list li {
  background: var(--sand);
  border-left: 4px solid var(--secondary);
  padding: .9rem 1rem;
  border-radius: 12px;
}
.dev-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .8rem;
}
.dev-links a {
  padding: .9rem 1rem;
  background: #eef5fb;
  border-radius: 12px;
  border: 1px solid #d6e7f5;
  font-weight: 700;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.gallery-grid img { height: 230px; width: 100%; object-fit: cover; }
.table-wrap {
  overflow-x: auto;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(15,76,129,.08);
}
table { width: 100%; border-collapse: collapse; }
th, td { padding: .95rem 1rem; border-bottom: 1px solid var(--line); text-align: left; }
th { background: #eef5fb; color: var(--primary-dark); }
.breadcrumb {
  font-size: .92rem;
  color: var(--muted);
  margin: 1rem 0 1.5rem;
}
.breadcrumb a { color: var(--primary); }
.page-hero {
  background: linear-gradient(180deg, #eef5fb 0%, #ffffff 100%);
  padding: 3.25rem 0 2rem;
}
.page-hero h1 { margin: .4rem 0 1rem; color: var(--primary-dark); font-size: clamp(1.9rem, 4vw, 3rem); }
.kicker { color: var(--secondary); text-transform: uppercase; letter-spacing: .08em; font-size: .8rem; font-weight: 700; }
.content-wrap { padding: 2rem 0 4rem; }
.content-wrap p { margin-top: 0; }
.highlight-box {
  background: linear-gradient(135deg, #0f4c81, #164b73);
  color: #fff;
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.highlight-box h3 { color: #fff; margin-top: 0;

.highlight-box p:last-child { margin-bottom: 0; }
.contact-box {
  background: var(--white);
  border: 1px solid rgba(15,76,129,.1);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: var(--shadow);
}
.notice {
  padding: 1rem 1.1rem;
  background: #fff8e8;
  border-left: 4px solid var(--secondary);
  border-radius: 12px;
}
.footer {
  background: #0b2237;
  color: rgba(255,255,255,.86);
  padding: 2.25rem 0;
}
.footer a { color: #dbeafe; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 1.5rem;
}
.small { font-size: .92rem; }
.center { text-align: center; }
@media (max-width: 960px) {
  .hero-grid,
  .grid-2,
  .grid-3,
  .grid-4,
  .footer-grid,
  .gallery-grid { grid-template-columns: 1fr; }
  .dev-links, .stats { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .nav-wrap { flex-direction: column; align-items: flex-start; }
  .nav-links { justify-content: flex-start; }
  .hero { padding: 4.5rem 0 4rem; }
  .stats, .dev-links { grid-template-columns: 1fr; }
  .gallery-grid img { height: 210px; }
}
