:root {
  --navy: #0d2340;
  --navy-2: #12365f;
  --ink: #172033;
  --gold: #c9a84c;
  --gold-soft: #f3e6bd;
  --green: #1a6e3c;
  --bg: #f5f7fb;
  --card: #ffffff;
  --muted: #687386;
  --border: #e4e9f1;
  --shadow: 0 14px 38px rgba(13, 35, 64, .10);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Source Sans 3', Arial, sans-serif;
  background:
    linear-gradient(180deg, #f8fafc 0%, #f3f6fb 42%, #eef3f8 100%);
  color: var(--ink);
  line-height: 1.6;
}
a { color: inherit; }
.container { max-width: 1320px; margin: 0 auto; padding: 0 12px; }

.topbar {
  background: linear-gradient(90deg, #071a31, var(--navy), #12345b);
  color: rgba(255,255,255,.86);
  font-size: 13px;
}
.topbar-inner {
  min-height: 38px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.topbar a { color: var(--gold-soft); text-decoration: none; margin-left: 16px; }

.site-nav {
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(13,35,64,.08);
}
.nav-inner {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  min-width: 330px;
  flex: 0 0 auto;
}
.brand-logo {
  width: 64px;
  height: 46px;
  display: block;
  object-fit: contain;
  object-position: center;
  border-radius: 3px;
  background: #fff;
}
.brand-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.08;
  color: var(--navy);
  white-space: nowrap;
}
.brand-copy strong {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: .1px;
}
.brand-copy span {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 15px;
  font-weight: 700;
  color: #12365f;
}
.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: linear-gradient(145deg, var(--navy), #06172a);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08), 0 10px 22px rgba(13,35,64,.18);
}
.brand-title {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--navy);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.15;
}
.brand-subtitle { color: var(--gold); font-size: 12px; font-weight: 700; }
.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  flex-wrap: nowrap;
  min-width: 0;
}
.nav-links a {
  text-decoration: none;
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 9px;
  border-radius: 7px;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}
.nav-links a:hover,
.nav-links a.active { background: var(--navy); color: var(--gold-soft); }
.nav-links a:hover { transform: translateY(-1px); }
.nav-links .nav-cta {
  background: linear-gradient(135deg, var(--gold), #e2c46f);
  color: var(--navy);
  box-shadow: 0 8px 18px rgba(201,168,76,.25);
}
.nav-links .nav-doc-btn {
  background: linear-gradient(135deg, var(--gold), #e2c46f);
  color: var(--navy);
  box-shadow: 0 8px 18px rgba(201,168,76,.24);
  white-space: nowrap;
}
.nav-links .nav-doc-btn:hover {
  background: var(--navy);
  color: var(--gold-soft);
}

.hero {
  color: #fff;
  background:
    linear-gradient(120deg, rgba(13,35,64,.96), rgba(16,55,98,.86)),
    url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=1800&q=80') center/cover;
  min-height: 520px;
  display: flex;
  align-items: center;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
  gap: 48px;
  align-items: center;
  padding: 64px 20px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-soft);
  border: 1px solid rgba(243,230,189,.42);
  background: rgba(255,255,255,.09);
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 18px;
}
.hero h1,
.page-hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 48px;
  line-height: 1.12;
  letter-spacing: 0;
}
.hero p { color: rgba(255,255,255,.82); max-width: 620px; margin: 18px 0 28px; font-size: 18px; }
.actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  padding: 12px 18px;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--gold), #e6c86d);
  color: var(--navy);
  box-shadow: 0 14px 28px rgba(201,168,76,.25);
}
.btn-secondary { border-color: rgba(255,255,255,.38); color: #fff; background: rgba(255,255,255,.08); }
.btn-dark {
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: #fff;
  box-shadow: 0 12px 24px rgba(13,35,64,.18);
}
.hero-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.metric {
  min-height: 132px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.11);
  padding: 22px;
}
.metric i { color: var(--gold); font-size: 24px; margin-bottom: 14px; }
.metric strong { display: block; font-family: 'Playfair Display', Georgia, serif; font-size: 30px; color: #fff; }
.metric span { color: rgba(255,255,255,.72); font-size: 13px; }

.ticker-bar {
  background: linear-gradient(90deg, #06172a, var(--navy));
  color: #fff;
  border-bottom: 3px solid var(--gold);
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(13,35,64,.16);
}
.ticker-inner { display: flex; align-items: center; }
.ticker-label { background: var(--gold); color: var(--navy); font-size: 12px; font-weight: 900; padding: 10px 16px; white-space: nowrap; }
.ticker-track { overflow: hidden; flex: 1; }
.ticker-list { display: flex; gap: 48px; white-space: nowrap; animation: ticker 42s linear infinite; padding: 9px 20px; }
.ticker-list a { color: var(--gold-soft); text-decoration: none; font-size: 14px; }
@keyframes ticker { to { transform: translateX(-50%); } }

.section { padding: 64px 0; }
.section-tight { padding: 34px 0; }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 24px; margin-bottom: 24px; }
.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--navy);
  font-size: 30px;
  line-height: 1.2;
}
.section-title::after {
  content: '';
  display: block;
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), rgba(201,168,76,.15));
  border-radius: 999px;
  margin-top: 10px;
}
.section-kicker { color: var(--gold); font-weight: 900; text-transform: uppercase; font-size: 12px; letter-spacing: .08em; }
.muted { color: var(--muted); }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.main-grid { display: grid; grid-template-columns: minmax(0,1fr) 320px; gap: 24px; align-items: start; }

/* Left sidebar (scroll) + main content (full text) */
.page-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}
.page-layout__sidebar { position: sticky; top: 18px; }
.page-layout__main { min-width: 0; }
.sidebar-card--live .btn { margin: 0 14px 14px; width: calc(100% - 28px); display: block; text-align: center; }

.article-feed-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.article-feed-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(13,35,64,.06);
  transition: border-color .18s ease, box-shadow .18s ease;
}
.article-feed-item:hover {
  border-color: rgba(201,168,76,.45);
  box-shadow: 0 12px 28px rgba(13,35,64,.1);
}
.article-feed-link {
  display: flex;
  gap: 16px;
  padding: 16px 18px;
  text-decoration: none;
  color: inherit;
}
.article-feed-thumb {
  flex: 0 0 120px;
  width: 120px;
  height: 90px;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
}
.article-feed-body { min-width: 0; flex: 1; }
.article-feed-cat {
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .35px;
}
.article-feed-body h3 {
  color: var(--navy);
  font-size: 18px;
  line-height: 1.35;
  margin: 6px 0 8px;
}
.article-feed-body p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 10px;
}
.article-feed-meta {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
}
.article-feed-meta i { color: var(--gold); font-size: 11px; }

.home-cta-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 8px;
}
.home-cta-card {
  padding: 20px 18px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, #fff, #f5f8fc);
  text-decoration: none;
  color: inherit;
  transition: transform .18s ease, box-shadow .18s ease;
}
.home-cta-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(13,35,64,.1);
}
.home-cta-card i {
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 10px;
}
.home-cta-card strong { display: block; color: var(--navy); font-size: 16px; margin-bottom: 6px; }
.home-cta-card span { color: var(--muted); font-size: 14px; line-height: 1.45; }

.cat-feed-block {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.cat-feed-block:last-child { border-bottom: 0; margin-bottom: 0; padding-bottom: 0; }
.cat-feed-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  padding: 10px 14px;
  border-radius: 8px;
  color: #fff;
}
.cat-feed-head h3 { font-size: 16px; display: flex; align-items: center; gap: 8px; margin: 0; }
.cat-feed-head a { color: #fff; font-size: 13px; font-weight: 800; opacity: .9; text-decoration: none; }
.cat-feed-head a:hover { opacity: 1; text-decoration: underline; }

/* Home attention / notice strip */
.attention-strip-section { padding: 0 0 8px; background: #f8fafc; }
.attention-strip {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 16px 20px;
  margin-bottom: 12px;
  border-radius: 10px;
  border: 1px solid rgba(201,168,76,.45);
  background: linear-gradient(90deg, #fff8e5, #fff);
  box-shadow: 0 10px 24px rgba(13,35,64,.08);
}
.attention-strip-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.attention-strip-body { flex: 1; min-width: 200px; }
.attention-strip-body strong {
  display: block;
  color: var(--navy);
  font-size: 16px;
  margin-bottom: 4px;
}
.attention-strip-body span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}
.attention-strip-btn { flex-shrink: 0; white-space: nowrap; }
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(13, 35, 64, .07);
}
.home-slider {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: #fff;
  margin-bottom: 28px;
}
.home-featured .home-slider {
  border: 0;
  border-radius: 0;
  margin-bottom: 0;
}
.home-featured .slide { min-height: 270px; }
.home-featured { position: relative; background: #081a2f; }
.home-featured .slide-content { padding: 20px 42px 76px; max-width: 820px; }
.home-featured .slide-content h2 {
  font-size: 27px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.home-featured .slide-content p { display: none; }
.home-featured .slide-stats { display: none; }
.home-featured .actions {
  position: absolute;
  left: 42px;
  bottom: 28px;
  margin: 0;
  gap: 10px;
}
.home-featured .actions .btn {
  min-height: 42px;
  padding: 10px 16px;
  font-size: 14px;
}
.card-link {
  color: inherit;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card-link:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: rgba(201,168,76,.55);
}
.detail-panel {
  scroll-margin-top: 96px;
  padding: 26px;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}
.detail-panel + .detail-panel { margin-top: 16px; }
.detail-panel h3 { color: var(--navy); font-size: 23px; margin-bottom: 8px; }
.detail-panel ul { margin: 12px 0 0 18px; color: var(--muted); }
.detail-panel li { margin-bottom: 6px; }
.slide {
  display: none;
  min-height: 360px;
  color: #fff;
  background-position: center;
  background-size: cover;
  position: relative;
}
.slide.active { display: flex; align-items: end; }
.slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7,26,49,.96), rgba(13,35,64,.58), rgba(13,35,64,.12)),
    linear-gradient(0deg, rgba(7,26,49,.55), rgba(7,26,49,0) 42%);
}
.slide-content {
  position: relative;
  max-width: 760px;
  padding: 54px 42px;
}
.slide-content h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 42px;
  line-height: 1.16;
  margin: 12px 0;
  text-shadow: 0 5px 22px rgba(0,0,0,.28);
}
.slide-content p { color: rgba(255,255,255,.84); font-size: 17px; margin-bottom: 18px; }
.slide-stats {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.slide-stats span {
  min-width: 150px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.10);
  color: rgba(255,255,255,.78);
  border-radius: 8px;
  padding: 11px 14px;
  font-size: 12px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}
.slide-stats strong {
  display: block;
  color: var(--gold-soft);
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 24px;
  line-height: 1.05;
  margin-bottom: 3px;
}
.slider-dots {
  position: absolute;
  right: 24px;
  bottom: 22px;
  display: flex;
  gap: 8px;
  z-index: 2;
}
.slider-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,.55);
  cursor: pointer;
}
.slider-dots button.active { background: var(--gold); }
.service-card,
.feature-card,
.post-card {
  padding: 22px;
  position: relative;
  overflow: hidden;
}
.service-card::before,
.feature-card::before,
.post-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), rgba(26,110,60,.48));
  opacity: .86;
}
.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(201,168,76,.20), rgba(26,110,60,.10));
  color: var(--navy);
  margin-bottom: 14px;
  font-size: 21px;
  box-shadow: inset 0 0 0 1px rgba(201,168,76,.16);
}
.service-card h3,
.feature-card h3,
.post-card h3 { color: var(--navy); font-size: 18px; margin-bottom: 8px; }
.service-card p,
.feature-card p,
.post-card p { color: var(--muted); font-size: 15px; }

.news-hub-section {
  background: linear-gradient(180deg, #f7fafc 0%, #ffffff 48%, #f2f7f4 100%);
}
.news-hub-note {
  margin-top: 10px;
  font-size: 14px;
  max-width: 560px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.news-hub-note i { color: var(--gold); }
.news-hub-aside { display: flex; flex-direction: column; gap: 18px; }
.sidebar-card--scroll .btn { margin-top: 0; }

.home-news-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 18px;
  align-items: start;
}
.home-news-left {
  display: grid;
  gap: 18px;
  position: sticky;
  top: 92px;
}
.home-news-left .section-head {
  margin-bottom: 12px;
  align-items: center;
}
.home-news-left .section-title {
  font-size: 22px;
}
.home-news-left .section-title::after {
  width: 42px;
}
.home-news-left-viewport {
  height: 292px;
  overflow: hidden;
  position: relative;
}
.home-news-left-viewport::before,
.home-news-left-viewport::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 24px;
  z-index: 2;
  pointer-events: none;
}
.home-news-left-viewport::before {
  top: 0;
  background: linear-gradient(180deg, #fff, rgba(255,255,255,0));
}
.home-news-left-viewport::after {
  bottom: 0;
  background: linear-gradient(0deg, #fff, rgba(255,255,255,0));
}
.home-news-left-list {
  display: grid;
  gap: 10px;
  animation: homeNewsSlideUp 18s linear infinite;
}
.home-news-left-viewport:hover .home-news-left-list {
  animation-play-state: paused;
}
.home-news-left-card {
  display: block;
  padding: 13px 14px 13px 38px;
  text-decoration: none;
  color: inherit;
  border-radius: 8px;
  border: 1px solid rgba(13,35,64,.08);
  background: linear-gradient(135deg, #fff, #f8fafc);
  position: relative;
}
.home-news-left-card::before {
  content: '\f105';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 16px;
  top: 18px;
  color: var(--gold);
}
.home-news-left-body {
  min-width: 0;
}
.home-news-left-body h3 {
  color: var(--navy);
  font-size: 14px;
  line-height: 1.35;
  margin: 4px 0 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.home-news-left .service-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(248,250,252,.98)),
    radial-gradient(circle at top right, rgba(201,168,76,.14), transparent 34%);
}
.home-news-main .category-panels {
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 16px;
}
.home-news-main-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 16px;
}
.home-news-left-body time {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}
.home-news-left-body time i {
  color: var(--gold);
  margin-right: 4px;
}

@keyframes homeNewsSlideUp {
  from { transform: translateY(0); }
  to { transform: translateY(-50%); }
}

.home-news-section { background: #fff; }
.home-news-section--popular_news { background: linear-gradient(180deg, #f8fafc 0%, #eef3f8 100%); }
.home-news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.home-news-card {
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
.home-news-thumb {
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
  background-color: var(--border);
}
.home-news-body { padding: 18px; }
.home-news-body h3 {
  color: var(--navy);
  font-size: 18px;
  line-height: 1.35;
  margin: 6px 0 8px;
}
.home-news-body p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
  margin-bottom: 10px;
}
.home-news-body time {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}
.home-news-body time i { color: var(--gold); margin-right: 4px; }

.category-panels { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; }
.cat-panel {
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
  border-radius: 12px;
}
.cat-panel:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(13,35,64,.12);
}
.cat-head {
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  min-height: 50px;
}
.cat-head h3 { font-size: 15px; display: flex; align-items: center; gap: 8px; }
.cat-head a { color: #fff; text-decoration: none; font-size: 12px; font-weight: 800; opacity: .86; }
.link-list { list-style: none; }
.link-list li { padding: 12px 16px; border-bottom: 1px solid var(--border); }
.cat-panel .link-list li {
  padding-left: 44px;
  position: relative;
}
.cat-panel .link-list li::before {
  content: '\f105';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 18px;
  top: 14px;
  color: var(--gold);
}
.link-list li:last-child { border-bottom: 0; }
.link-list a { color: var(--ink); text-decoration: none; font-weight: 700; line-height: 1.35; }
.link-list a:hover { color: var(--gold); }
.date { color: var(--muted); font-size: 12px; margin-top: 4px; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 9px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.sidebar-card { overflow: hidden; margin-bottom: 18px; box-shadow: 0 12px 26px rgba(13,35,64,.08); }
.sidebar-title {
  background: linear-gradient(90deg, var(--navy), var(--navy-2));
  color: #fff;
  padding: 13px 16px;
  font-weight: 900;
  font-size: 13px;
  text-transform: uppercase;
  border-bottom: 3px solid var(--gold);
}
.sidebar-card .btn { margin: 14px 16px 16px; justify-content: center; }

.page-hero {
  background:
    linear-gradient(120deg, rgba(7,26,49,.96), rgba(18,54,95,.86)),
    url('https://images.unsplash.com/photo-1554224155-6726b3ff858f?auto=format&fit=crop&w=1800&q=80') center/cover;
  color: #fff;
  padding: 84px 0;
  border-bottom: 4px solid var(--gold);
}
.page-hero p { max-width: 680px; color: rgba(255,255,255,.82); font-size: 18px; margin-top: 14px; }
.crumb { color: var(--gold-soft); font-size: 13px; font-weight: 800; margin-bottom: 12px; }

.article-shell { padding: 34px 0; }
.article {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.article-cover {
  min-height: 270px;
  background-position: center;
  background-size: cover;
  padding: 28px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.article-cover h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 36px;
  line-height: 1.18;
  max-width: 860px;
}
.article-meta { display: flex; gap: 16px; flex-wrap: wrap; color: rgba(255,255,255,.82); font-size: 14px; margin-top: 12px; }
.article-body { padding: 30px; font-size: 18px; color: #30394a; }
.article-body p { margin-bottom: 16px; }
.notice-box {
  background: #fff8e5;
  border: 1px solid #ead28c;
  color: #665019;
  padding: 18px;
  border-radius: 8px;
}

.posts-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 18px; }
.post-card { border-top: 4px solid var(--gold); }
.post-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 14px;
  display: block;
  background: var(--border);
  transition: transform .22s ease, filter .22s ease;
}
.post-card:hover .post-thumb { transform: scale(1.025); filter: saturate(1.05); }
.post-card h3 a { text-decoration: none; color: var(--navy); }
.post-card h3 a:hover { color: var(--gold); }
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 28px; flex-wrap: wrap; }
.pagination a,
.pagination span {
  padding: 9px 13px;
  border-radius: 7px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--navy);
  text-decoration: none;
  font-weight: 800;
}
.pagination span { background: var(--navy); color: #fff; }

.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 22px; }
.contact-list { list-style: none; }
.contact-list li { display: flex; gap: 12px; padding: 13px 0; border-bottom: 1px solid var(--border); }
.contact-list i { color: var(--gold); width: 24px; margin-top: 4px; }
.form-grid { display: grid; gap: 12px; }
input, textarea, select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 13px;
  font: inherit;
  background: #fff;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: rgba(201,168,76,.85);
  box-shadow: 0 0 0 4px rgba(201,168,76,.16);
}
textarea { min-height: 130px; resize: vertical; }
button.btn { cursor: pointer; font: inherit; border: 0; }
.captcha-field,
.upload-field {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-weight: 800;
  font-size: 13px;
}
.captcha-field input {
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 800;
}
.captcha-refresh {
  justify-self: start;
  border: 0;
  border-radius: 7px;
  background: #eef4ff;
  color: var(--navy);
  padding: 8px 11px;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}
.captcha-refresh:hover {
  background: var(--navy);
  color: #fff;
}
.upload-field {
  padding: 12px 13px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #f8fafc;
}
.upload-field input {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}
.map-card { overflow: hidden; }
.map-card iframe {
  width: 100%;
  height: 390px;
  border: 0;
  display: block;
}
.service-list {
  list-style: none;
  margin-top: 12px;
  display: grid;
  gap: 10px;
}
.service-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 12px;
}
.service-list i {
  color: var(--gold);
  margin-top: 5px;
  width: 18px;
  flex-shrink: 0;
}
.two-col-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }

footer {
  background: linear-gradient(135deg, #06172a, var(--navy));
  color: rgba(255,255,255,.76);
  padding: 44px 0 20px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 26px; }
footer h3, footer h4 { color: #fff; }
footer h3 { font-family: 'Playfair Display', Georgia, serif; margin-bottom: 10px; }
footer h4 { color: var(--gold-soft); font-size: 14px; margin-bottom: 12px; }
footer ul { list-style: none; }
footer li { margin-bottom: 7px; }
footer a { color: rgba(255,255,255,.72); text-decoration: none; }
footer a:hover { color: var(--gold-soft); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.14); margin-top: 28px; padding-top: 18px; display: flex; justify-content: space-between; gap: 18px; font-size: 13px; }

.chatbot-widget {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 120;
  font-family: 'Source Sans 3', Arial, sans-serif;
}
.chatbot-toggle {
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  background: linear-gradient(135deg, var(--gold), #e4c76d);
  color: var(--navy);
  box-shadow: 0 16px 34px rgba(13,35,64,.25);
  font-size: 22px;
}
.chatbot-panel {
  position: absolute;
  right: 0;
  bottom: 74px;
  width: min(370px, calc(100vw - 32px));
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(13,35,64,.14);
  background: #fff;
  box-shadow: 0 22px 54px rgba(13,35,64,.24);
  opacity: 0;
  transform: translateY(12px) scale(.98);
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
}
.chatbot-widget.open .chatbot-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.chatbot-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 15px 16px;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: #fff;
  border-bottom: 3px solid var(--gold);
}
.chatbot-head strong { display: block; font-size: 16px; }
.chatbot-head span { display: block; color: rgba(255,255,255,.72); font-size: 12px; }
.chatbot-close {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  color: #fff;
  background: rgba(255,255,255,.08);
  cursor: pointer;
}
.chatbot-messages {
  height: 285px;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #f7f9fc;
}
.chatbot-message {
  max-width: 86%;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 14px;
  line-height: 1.42;
  box-shadow: 0 6px 14px rgba(13,35,64,.06);
}
.chatbot-message.bot {
  align-self: flex-start;
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--border);
}
.chatbot-message.user {
  align-self: flex-end;
  background: var(--navy);
  color: #fff;
}
.chatbot-chips {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 12px 14px;
  border-top: 1px solid var(--border);
  background: #fff;
}
.chatbot-chips button {
  flex: 0 0 auto;
  border: 1px solid rgba(201,168,76,.45);
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--navy);
  background: #fff8e5;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}
.chatbot-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 46px;
  gap: 8px;
  padding: 12px 14px;
  border-top: 1px solid var(--border);
  background: #fff;
}
.chatbot-form input {
  height: 44px;
  border-radius: 8px;
}
.chatbot-form button {
  border: 0;
  border-radius: 8px;
  background: var(--gold);
  color: var(--navy);
  cursor: pointer;
  font-size: 16px;
}
.chatbot-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--border);
}
.chatbot-actions a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  min-height: 42px;
  color: var(--navy);
  text-decoration: none;
  font-weight: 900;
  font-size: 13px;
}
.chatbot-actions a + a { border-left: 1px solid var(--border); }

@media (max-width: 980px) {
  .hero-grid,
  .main-grid,
  .home-news-layout,
  .page-layout,
  .contact-grid { grid-template-columns: 1fr; }
  .page-layout__sidebar { position: static; }
  .home-news-left { position: static; }
  .home-cta-strip { grid-template-columns: 1fr; }
  .article-feed-link { flex-direction: column; }
  .article-feed-thumb { width: 100%; height: 140px; flex: none; }
  .grid-3,
  .grid-4,
  .home-news-grid,
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .brand { min-width: 0; }
  .nav-inner { height: auto; padding: 10px 20px; align-items: flex-start; flex-direction: column; }
  .nav-links { flex-wrap: wrap; justify-content: flex-start; }
  .brand-logo { width: 58px; height: 42px; }
  .brand-copy strong { font-size: 19px; }
  .brand-copy span { font-size: 14px; }
  .hero h1, .page-hero h1 { font-size: 36px; }
}
/* WhatsApp side button */
.whatsapp-float {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 115;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px 12px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  font-size: 14px;
  box-shadow: 0 16px 34px rgba(18, 140, 126, .35);
  animation: whatsappPulse 2.4s ease-in-out infinite;
}
.whatsapp-float i { font-size: 24px; }
.whatsapp-float:hover {
  transform: translateY(-2px);
  color: #fff;
  box-shadow: 0 20px 40px rgba(18, 140, 126, .42);
}
@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 16px 34px rgba(18, 140, 126, .35); }
  50% { box-shadow: 0 16px 34px rgba(18, 140, 126, .35), 0 0 0 10px rgba(37, 211, 102, .12); }
}

/* Article card vertical scroll (bottom → top) */
.article-scroll { position: relative; }
.article-scroll-empty { padding: 16px; font-size: 14px; }
.article-scroll-viewport {
  height: var(--scroll-h, 320px);
  overflow: hidden;
  position: relative;
  background: linear-gradient(180deg, #fff, #f8fafc);
}
.article-scroll-viewport::before,
.article-scroll-viewport::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 44px;
  z-index: 2;
  pointer-events: none;
}
.article-scroll-viewport::before {
  top: 0;
  background: linear-gradient(180deg, #fff 30%, rgba(255,255,255,0));
}
.article-scroll-viewport::after {
  bottom: 0;
  background: linear-gradient(0deg, #f8fafc 20%, rgba(248,250,252,0));
}
.article-scroll-track {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 12px;
  animation: articleScrollUp var(--scroll-speed, 28s) linear infinite;
}
.article-scroll-track:hover { animation-play-state: paused; }
@keyframes articleScrollUp {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}
.article-scroll-card {
  flex-shrink: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(13,35,64,.06);
  transition: border-color .18s ease, transform .18s ease;
}
.article-scroll-card:hover {
  border-color: rgba(201,168,76,.5);
  transform: translateX(3px);
}
.article-scroll-card a {
  display: flex;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  padding: 12px;
}
.article-scroll-thumb {
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
}
.article-scroll-body { min-width: 0; flex: 1; }
.article-scroll-cat {
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .4px;
}
.article-scroll-card h4 {
  color: var(--navy);
  font-size: 15px;
  line-height: 1.35;
  margin: 4px 0 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.article-scroll-card p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 6px;
}
.article-scroll-card time {
  font-size: 11px;
  color: var(--muted);
  font-weight: 700;
}
.article-scroll-card time i { color: var(--gold); margin-right: 4px; }
.article-scroll--sidebar .article-scroll-card a { flex-direction: column; padding: 12px 14px; }
.article-scroll--sidebar .article-scroll-card h4 { font-size: 14px; }
.cat-panel .article-scroll-viewport { border-radius: 0 0 10px 10px; border: 0; }
.cat-panel .article-scroll-viewport::before { background: linear-gradient(180deg, #f8fafc, transparent); }

/* Vertical articles slider (bottom to top) — legacy */
.articles-rise-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) 320px;
  gap: 20px;
  align-items: stretch;
}
.articles-rise-viewport {
  height: 420px;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, #fff, #f8fafc);
  box-shadow: var(--shadow);
  position: relative;
}
.articles-rise-viewport::before,
.articles-rise-viewport::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 56px;
  z-index: 2;
  pointer-events: none;
}
.articles-rise-viewport::before {
  top: 0;
  background: linear-gradient(180deg, #fff, rgba(255,255,255,0));
}
.articles-rise-viewport::after {
  bottom: 0;
  background: linear-gradient(0deg, #f8fafc, rgba(248,250,252,0));
}
.articles-rise-track {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 14px;
  animation: articlesRise 28s linear infinite;
}
.articles-rise-track:hover { animation-play-state: paused; }
@keyframes articlesRise {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}
.articles-rise-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
  box-shadow: 0 8px 20px rgba(13,35,64,.06);
  transition: border-color .18s ease, transform .18s ease;
}
.articles-rise-item:hover {
  border-color: rgba(201,168,76,.55);
  transform: translateX(4px);
}
.articles-rise-item a { text-decoration: none; color: inherit; display: block; }
.articles-rise-item h3 {
  color: var(--navy);
  font-size: 17px;
  line-height: 1.35;
  margin: 8px 0 6px;
}
.articles-rise-item p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.articles-rise-side { overflow: hidden; }

/* Team horizontal slider */
.team-section { background: linear-gradient(180deg, #fff 0%, #f5f8fc 100%); }
.team-slider-viewport {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.team-slider-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: teamSlide 36s linear infinite;
}
.team-slider-track:hover { animation-play-state: paused; }
@keyframes teamSlide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.team-card {
  flex: 0 0 300px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(13,35,64,.08);
}
.team-photo {
  height: 180px;
  background-position: center;
  background-size: cover;
}
.team-body { padding: 16px 18px 18px; }
.team-body h3 {
  color: var(--navy);
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
}
.team-role {
  color: var(--gold);
  font-weight: 800;
  font-size: 13px;
  margin: 4px 0 10px;
}
.team-body p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.team-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.team-meta a {
  font-size: 13px;
  font-weight: 800;
  color: var(--navy);
  text-decoration: none;
}
.team-meta a:hover { color: var(--gold); }

/* Rich article content */
.rich-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0;
  font-size: 15px;
}
.rich-content th,
.rich-content td {
  border: 1px solid var(--border);
  padding: 10px 12px;
  text-align: left;
}
.rich-content th {
  background: #f0f4fa;
  color: var(--navy);
}
.rich-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 14px 0;
}
.rich-content h2,
.rich-content h3,
.rich-content h4 { color: var(--navy); margin: 18px 0 10px; }
.article-lead {
  font-size: 20px;
  color: var(--navy);
  font-weight: 700;
  line-height: 1.55;
  margin-bottom: 18px;
}
.article-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin-bottom: 22px;
}
.article-gallery img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--border);
}

@media (max-width: 980px) {
  .articles-rise-grid { grid-template-columns: 1fr; }
  .articles-rise-viewport { height: 360px; }
}

@media (max-width: 640px) {
  .topbar-inner,
  .footer-bottom { flex-direction: column; align-items: flex-start; padding: 10px 20px; }
  .topbar a { margin-left: 0; margin-right: 12px; }
  .nav-links { justify-content: flex-start; }
  .container { padding: 0 10px; }
  .brand-logo { width: 52px; height: 38px; }
  .brand-copy strong { font-size: 17px; }
  .brand-copy span { font-size: 13px; }
  .hero { min-height: auto; }
  .hero-grid { padding: 48px 20px; }
  .hero-metrics,
  .grid-3,
  .grid-4,
  .home-news-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .article-cover h1 { font-size: 28px; }
  .article-body { padding: 22px; font-size: 16px; }
  .slide { min-height: 340px; }
  .home-featured .slide { min-height: 260px; }
  .slide-content { padding: 22px 20px 72px; }
  .home-featured .slide-content { padding: 18px 20px 70px; }
  .home-featured .actions { left: 20px; bottom: 22px; }
  .slide-content h2 { font-size: 25px; }
  .slide-stats span { min-width: 100%; }
  .detail-panel { grid-template-columns: 1fr; }
  .two-col-list { grid-template-columns: 1fr; }
  .map-card iframe { height: 320px; }
  .chatbot-widget { right: 16px; bottom: 16px; }
  .chatbot-panel { bottom: 68px; }
  .chatbot-messages { height: 250px; }
  .whatsapp-float { left: 16px; bottom: 86px; padding: 11px 13px; }
  .whatsapp-float span { display: none; }
  .team-card { flex-basis: 260px; }
}
