/* ============================================
   HS SITE — COMPONENT STYLES
   ============================================ */

/* --- NAVIGATION --- */
.hs-nav {
  position: sticky; top: 0; z-index: 900;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s;
}
.hs-nav.scrolled { box-shadow: var(--shadow-md); }
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem; height: 68px;
}
.nav-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-brand img { height: 42px; width: auto; }
.nav-brand-text { display: flex; flex-direction: column; }
.nav-brand-title {
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 700;
  color: var(--primary); line-height: 1.2;
}
.nav-brand-sub { font-size: 0.72rem; color: var(--text-muted); letter-spacing: 0.5px; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a {
  padding: 8px 16px; border-radius: var(--radius-sm);
  font-size: 0.88rem; font-weight: 500; color: var(--text-secondary);
  transition: all 0.2s; text-decoration: none; position: relative;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--accent); background: rgba(37,99,235,0.06);
}
.nav-links a.active::after {
  content: ''; position: absolute; bottom: 0; left: 16px; right: 16px;
  height: 2px; background: var(--accent); border-radius: 2px;
}
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px; z-index: 1001;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--primary); border-radius: 2px; transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* --- HERO SECTION --- */
.hero {
  position: relative; min-height: 420px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; text-align: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, var(--accent-dark) 100%);
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content { position: relative; z-index: 2; padding: 3rem 2rem; max-width: 800px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
  padding: 6px 18px; border-radius: var(--radius-xl);
  font-size: 0.8rem; font-weight: 500; color: rgba(255,255,255,0.9);
  margin-bottom: 1.5rem; backdrop-filter: blur(8px);
}
.hero h1 {
  font-family: var(--font-display); font-size: 2.8rem; font-weight: 800;
  color: #fff; margin-bottom: 1rem; letter-spacing: -0.5px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.hero p { font-size: 1.1rem; color: rgba(255,255,255,0.8); max-width: 600px; margin: 0 auto; line-height: 1.7; }
.hero-home { min-height: 520px; }
.hero-home h1 { font-size: 3.2rem; }

/* Decorative floating shapes */
.hero-shape {
  position: absolute; border-radius: 50%; opacity: 0.08; background: #fff;
}
.hero-shape-1 { width: 300px; height: 300px; top: -80px; right: -60px; animation: float 8s ease-in-out infinite; }
.hero-shape-2 { width: 200px; height: 200px; bottom: -40px; left: -40px; animation: float 6s ease-in-out infinite 1s; }
.hero-shape-3 { width: 100px; height: 100px; top: 40%; left: 15%; animation: float 10s ease-in-out infinite 2s; }

/* --- BREADCRUMBS --- */
.breadcrumb {
  background: var(--surface-alt); padding: 12px 2rem;
  font-size: 0.82rem; color: var(--text-muted);
}
.breadcrumb-inner { max-width: 1280px; margin: 0 auto; display: flex; align-items: center; gap: 6px; }
.breadcrumb a { color: var(--text-secondary); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--text-muted); }

/* --- SECTIONS --- */
.section { padding: 5rem 2rem; }
.section-alt { background: var(--surface-alt); }
.container { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 {
  font-family: var(--font-display); font-size: 2rem; font-weight: 700;
  color: var(--text-primary); margin-bottom: 0.75rem;
}
.section-header p { color: var(--text-secondary); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }
.section-label {
  display: inline-block; font-size: 0.75rem; font-weight: 600;
  color: var(--accent); text-transform: uppercase; letter-spacing: 1.5px;
  margin-bottom: 0.5rem;
}

/* --- STATS BAR --- */
.stats-bar {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: var(--card); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); overflow: hidden;
  margin-top: -3rem; position: relative; z-index: 10;
}
.stat-item {
  padding: 2rem 1.5rem; text-align: center;
  border-right: 1px solid var(--border);
  transition: background 0.3s;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(37,99,235,0.03); }
.stat-number {
  font-family: var(--font-display); font-size: 2.4rem; font-weight: 800;
  color: var(--accent); line-height: 1;
}
.stat-label {
  font-size: 0.82rem; color: var(--text-muted); text-transform: uppercase;
  letter-spacing: 1px; margin-top: 6px;
}

/* --- CARD GRID --- */
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
.card {
  background: var(--card); border-radius: var(--radius-md);
  border: 1px solid var(--border); padding: 2rem;
  transition: all 0.3s ease; position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--accent-light); }
.card-icon {
  width: 52px; height: 52px; border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(37,99,235,0.1), rgba(37,99,235,0.05));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 1rem; color: var(--accent);
}
.card h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; margin-bottom: 0.5rem; }
.card p { color: var(--text-secondary); font-size: 0.92rem; line-height: 1.6; }

/* --- TIMELINE --- */
.timeline { position: relative; padding: 2rem 0; }
.timeline::before {
  content: ''; position: absolute; left: 50%; top: 0; bottom: 0;
  width: 2px; background: var(--border); transform: translateX(-50%);
}
.timeline-item {
  display: flex; align-items: flex-start; margin-bottom: 3rem;
  position: relative;
}
.timeline-item:nth-child(odd) { flex-direction: row-reverse; }
.timeline-dot {
  position: absolute; left: 50%; top: 8px; width: 16px; height: 16px;
  background: var(--accent); border: 3px solid var(--card);
  border-radius: 50%; transform: translateX(-50%); z-index: 2;
  box-shadow: 0 0 0 4px rgba(37,99,235,0.15);
}
.timeline-content {
  width: 45%; padding: 1.5rem; background: var(--card);
  border-radius: var(--radius-md); box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.timeline-year {
  font-family: var(--font-display); font-size: 0.85rem; font-weight: 700;
  color: var(--accent); margin-bottom: 0.3rem;
}
.timeline-content h3 { font-size: 1.05rem; margin-bottom: 0.3rem; }
.timeline-content p { font-size: 0.88rem; color: var(--text-secondary); }

/* --- STEPPER --- */
.stepper { display: flex; flex-direction: column; gap: 0; position: relative; }
.step-item {
  display: flex; gap: 1.5rem; padding: 1.5rem 0;
  position: relative;
}
.step-number {
  flex-shrink: 0; width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  position: relative; z-index: 2;
}
.step-item:not(:last-child)::before {
  content: ''; position: absolute; left: 21px; top: 56px;
  width: 2px; height: calc(100% - 26px);
  background: linear-gradient(to bottom, var(--accent), var(--border));
}
.step-content h3 { font-size: 1.05rem; margin-bottom: 0.25rem; }
.step-content p { font-size: 0.9rem; color: var(--text-secondary); }

/* --- TABS --- */
.tabs-nav {
  display: flex; gap: 4px; flex-wrap: wrap;
  background: var(--surface-alt); padding: 6px;
  border-radius: var(--radius-md); margin-bottom: 2rem;
}
.tab-btn {
  padding: 10px 20px; border: none; background: transparent;
  font-family: var(--font-body); font-size: 0.88rem; font-weight: 500;
  color: var(--text-secondary); border-radius: var(--radius-sm);
  cursor: pointer; transition: all 0.2s; white-space: nowrap;
}
.tab-btn:hover { color: var(--text-primary); background: rgba(255,255,255,0.5); }
.tab-btn.active { background: var(--card); color: var(--accent); box-shadow: var(--shadow-sm); font-weight: 600; }
.tab-panel { display: none; animation: fadeInUp 0.4s ease; }
.tab-panel.active { display: block; }

/* --- TABLES --- */
.data-table {
  width: 100%; border-collapse: collapse; background: var(--card);
  border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border);
}
.data-table thead { background: var(--primary); }
.data-table th {
  padding: 14px 20px; text-align: left; font-size: 0.85rem;
  font-weight: 600; color: var(--text-inverse); text-transform: uppercase;
  letter-spacing: 0.5px;
}
.data-table td { padding: 14px 20px; font-size: 0.92rem; border-bottom: 1px solid var(--border); }
.data-table tbody tr:hover { background: rgba(37,99,235,0.02); }
.data-table tbody tr:last-child td { border-bottom: none; }

/* --- INFO LIST --- */
.info-list { list-style: none; }
.info-list li {
  padding: 12px 0; border-bottom: 1px solid var(--border);
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.92rem; color: var(--text-secondary);
}
.info-list li::before {
  content: '✓'; flex-shrink: 0;
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(16,185,129,0.1); color: var(--success);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 700;
}

/* --- WELCOME BLOCK --- */
.welcome-block {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
}
.welcome-text h2 { font-size: 1.8rem; margin-bottom: 1rem; }
.welcome-text p { color: var(--text-secondary); margin-bottom: 1rem; line-height: 1.8; }
.welcome-image {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-xl); position: relative;
  background: linear-gradient(135deg, var(--primary-light), var(--accent-dark));
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.3); font-size: 4rem;
}

/* --- NEWS CARDS --- */
.news-card {
  background: var(--card); border-radius: var(--radius-md);
  border: 1px solid var(--border); overflow: hidden;
  transition: all 0.3s;
}
.news-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.news-card-body { padding: 1.5rem; }
.news-date {
  font-size: 0.75rem; font-weight: 600; color: var(--accent);
  text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 0.5rem;
}
.news-card h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.news-card p { font-size: 0.88rem; color: var(--text-secondary); }

/* --- QUICK LINKS --- */
.quick-links {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1rem;
}
.quick-link {
  display: flex; align-items: center; gap: 14px; padding: 1.2rem 1.5rem;
  background: var(--card); border-radius: var(--radius-md);
  border: 1px solid var(--border); text-decoration: none;
  color: var(--text-primary); transition: all 0.2s;
}
.quick-link:hover {
  border-color: var(--accent-light); background: rgba(37,99,235,0.02);
  transform: translateX(4px); color: var(--accent);
}
.quick-link-icon {
  width: 42px; height: 42px; border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(37,99,235,0.1), rgba(37,99,235,0.05));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.quick-link span { font-weight: 500; font-size: 0.92rem; }

/* --- BUTTONS --- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 600;
  text-decoration: none; cursor: pointer; border: none;
  transition: all 0.25s;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff; box-shadow: 0 4px 14px rgba(37,99,235,0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,99,235,0.4); color: #fff; }
.btn-outline {
  background: transparent; color: var(--accent);
  border: 2px solid var(--accent);
}
.btn-outline:hover { background: var(--accent); color: #fff; }
.btn-white {
  background: rgba(255,255,255,0.15); color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
}
.btn-white:hover { background: rgba(255,255,255,0.25); color: #fff; }

/* --- FACILITY CARDS --- */
.facility-card {
  background: var(--card); border-radius: var(--radius-lg);
  border: 1px solid var(--border); overflow: hidden; transition: all 0.3s;
}
.facility-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.facility-img {
  height: 200px; display: flex; align-items: center; justify-content: center;
  font-size: 3rem; position: relative;
}
.facility-img-1 { background: linear-gradient(135deg, #1e3a5f, #2563eb); }
.facility-img-2 { background: linear-gradient(135deg, #1e5f3a, #10b981); }
.facility-img-3 { background: linear-gradient(135deg, #5f1e3a, #ef4444); }
.facility-img-4 { background: linear-gradient(135deg, #5f5f1e, #f59e0b); }
.facility-img-5 { background: linear-gradient(135deg, #3a1e5f, #8b5cf6); }
.facility-img-6 { background: linear-gradient(135deg, #1e5f5f, #06b6d4); }
.facility-body { padding: 1.5rem; }
.facility-body h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.facility-body p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.6; }

/* --- FOOTER --- */
.hs-footer {
  background: var(--primary); color: rgba(255,255,255,0.7);
  padding: 4rem 2rem 1.5rem;
}
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem; margin-bottom: 3rem;
}
.footer-brand h3 { font-family: var(--font-display); font-size: 1.2rem; color: #fff; margin-bottom: 0.5rem; }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; }
.hs-footer h4 {
  font-family: var(--font-display); font-size: 0.85rem; font-weight: 600;
  color: var(--gold); text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 1rem;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 0.85rem; transition: color 0.2s; text-decoration: none; }
.footer-links a:hover { color: #fff; }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem; text-align: center; font-size: 0.8rem;
}

/* --- TWO COLUMN --- */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }

/* --- MENU TABLE --- */
.menu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 1rem; }
.menu-day {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 1.2rem; text-align: center;
}
.menu-day h4 { font-size: 0.9rem; color: var(--accent); margin-bottom: 0.5rem; }
.menu-day p { font-size: 0.82rem; color: var(--text-secondary); }

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .welcome-block { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
}
@media (max-width: 768px) {
  .nav-links {
    position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
    background: var(--card); flex-direction: column; padding: 80px 2rem 2rem;
    box-shadow: var(--shadow-xl); transition: right 0.35s ease; gap: 4px; z-index: 999;
  }
  .nav-links.open { right: 0; }
  .nav-links a { width: 100%; padding: 12px 16px; }
  .hamburger { display: flex; }
  .hero h1 { font-size: 2rem; }
  .hero-home h1 { font-size: 2.4rem; }
  .stats-bar { grid-template-columns: 1fr 1fr; margin-top: -1.5rem; }
  .card-grid { grid-template-columns: 1fr; }
  .section { padding: 3rem 1.25rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .timeline::before { left: 20px; }
  .timeline-item, .timeline-item:nth-child(odd) { flex-direction: row; padding-left: 50px; }
  .timeline-dot { left: 20px; }
  .timeline-content { width: 100%; }
  .tabs-nav { flex-direction: column; }
  .quick-links { grid-template-columns: 1fr; }
}
.mobile-overlay {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.4);
  z-index: 998; opacity: 0; transition: opacity 0.3s;
}
.mobile-overlay.active { display: block; opacity: 1; }
