:root {
  --pt-blue: #2d78c3;
  --pt-violet: #6959be;
  --pt-yellow: #ffd700;
  --pt-text: #191919;
  --pt-body: #2b2b2b;
  --pt-muted: #f5f7fc;
  --pt-border: #0c8ae5;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background: #ffffff;
  color: var(--pt-text);
}

.sitemap-page {
  overflow: clip;
}

.sitemap-page img {
  display: block;
  max-width: 100%;
}

.sitemap-page .sitemap-hero {
  padding: 3rem 0;
  background: linear-gradient(252deg, var(--pt-violet) 15.2%, var(--pt-blue) 80.98%);
}

.sitemap-page .sitemap-hero-copy {
  max-width: 38rem;
  color: #ffffff;
  text-align: left;
}

.sitemap-page .sitemap-hero-copy h1 {
  margin: 0 0 1rem;
  color: #ffffff;
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1.25;
}

.sitemap-page .sitemap-hero-copy h1 span {
  color: var(--pt-yellow);
}

.sitemap-page .sitemap-hero-copy p {
  margin: 0;
  color: #ffffff;
  font-size: 1.25rem;
  line-height: 1.85;
}

.sitemap-page .sitemap-hero-media {
  overflow: hidden;
  border-radius: 2.15rem;
  box-shadow: 0 4px 28.9px rgba(0, 0, 0, 0.13);
  background-color: white;
  min-height: 350px;
  align-content: center;
}

.sitemap-page .sitemap-hero-media img {
  max-width:60%; margin: 0px auto;
}





/* ============================================================
   sitemap.css — SAMIL Sitemap Page Styles
   Design System: Poppins · Blue/Yellow · Bootstrap 5.3
   ============================================================ */

/* ── DESIGN TOKENS ────────────────────────────────────────── */
:root {
  --p700: #1E47A3;
  --p600: #2558C8;
  --p500: #2F6FED;
  --p400: #6FA8FF;
  --p100: #EAF1FF;
  --y600: #E6AC00;
  --y500: #FFC107;
  --y100: #FFF6D6;
  --o500: #FF8A00;
  --o400: #FFA733;
  --o100: #FFE8CC;
  --n900: #1A1A1A;
  --n700: #4D4D4D;
  --n500: #808080;
  --n300: #D9D9D9;
  --n100: #F5F7FA;
  --white: #FFFFFF;
  --sh-sm: 0 2px 10px rgba(0, 0, 0, 0.06);
  --sh-md: 0 8px 24px rgba(0, 0, 0, 0.09);
  --sh-lg: 0 16px 48px rgba(0, 0, 0, 0.13);
  --sh-xl: 0 24px 64px rgba(0, 0, 0, 0.16);
  --r: 16px;
  --r-sm: 10px;
  --r-pill: 100px;
}

/* ── BASE ─────────────────────────────────────────────────── */
body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--n100);
  color: var(--n900);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ── NAVBAR ───────────────────────────────────────────────── */
.samil-navbar {
  background: rgba(255, 255, 255, 0.96) !important;
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--n300);
  transition: box-shadow 0.3s;
  padding-top: 0;
  padding-bottom: 0;
  min-height: 68px;
}

.samil-navbar.scrolled {
  box-shadow: var(--sh-md);
}

.samil-navbar .navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 800;
  color: var(--p700);
  padding: 0;
}

.logo-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, #2F6FED, #6FA8FF);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  flex-shrink: 0;
}

.logo-dot {
  color: var(--y500);
}

.samil-navbar .nav-link {
  color: var(--n700);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  transition: color 0.2s;
  position: relative;
}

.samil-navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--p500);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.2s;
}

.samil-navbar .nav-link:hover,
.samil-navbar .nav-link.active {
  color: var(--p500);
  font-weight: 700;
}

.samil-navbar .nav-link:hover::after,
.samil-navbar .nav-link.active::after {
  transform: scaleX(1);
}

/* Navbar Buttons */
.btn-samil-outline {
  background: transparent;
  color: var(--p500);
  border: 1.5px solid var(--p500);
  border-radius: var(--r-pill);
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 18px;
  transition: all 0.2s;
}

.btn-samil-outline:hover {
  background: var(--p100);
  color: var(--p600);
  border-color: var(--p600);
}

.btn-samil-primary {
  background: var(--y500);
  color: var(--n900);
  border: none;
  border-radius: var(--r-pill);
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 20px;
  transition: all 0.2s;
}

.btn-samil-primary:hover {
  background: var(--y600);
  color: var(--n900);
  transform: translateY(-1px);
  box-shadow: var(--sh-md);
}

/* ── HERO STRIP ───────────────────────────────────────────── */
.hero-strip {
  background: linear-gradient(135deg, #1E3A8A 0%, #2F6FED 60%, #60A5FA 100%);
  padding: 60px 0 52px;
  margin-top: 68px;
  position: relative;
  overflow: hidden;
}

.hero-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: 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='%23fff'%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/svg%3E");
  pointer-events: none;
}

/* Hero blobs */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.14;
  pointer-events: none;
}

.hero-blob-1 {
  width: 560px;
  height: 560px;
  background: #60A5FA;
  top: -160px;
  right: -100px;
}

.hero-blob-2 {
  width: 380px;
  height: 380px;
  background: #FFC107;
  bottom: -80px;
  left: 200px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.13);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--r-pill);
  padding: 6px 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-bottom: 14px;
}

.hero-title {
  font-size: clamp(30px, 4.5vw, 48px);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}

.hero-title em {
  font-style: normal;
  color: var(--y500);
}

.hero-subtitle {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 0;
}

/* Hero stat items */
.hero-stat-item {
  text-align: center;
}

.hero-stat-num {
  font-size: 30px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-num em {
  font-style: normal;
  color: var(--y500);
}

.hero-stat-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

/* ── SEARCH / FILTER BAR ──────────────────────────────────── */
.search-bar-section {
  background: #fff;
  border-bottom: 1px solid var(--n300);
  padding: 14px 0;
  position: sticky;
  top: 68px;
  z-index: 100;
  box-shadow: var(--sh-sm);
}

.search-input-wrap {
  position: relative;
  flex: 1;
  min-width: 220px;
}

.search-icon-prefix {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 15px;
  pointer-events: none;
  z-index: 2;
}

.search-input {
  width: 100%;
  padding: 10px 16px 10px 40px;
  border-radius: var(--r-pill);
  border: 1.5px solid var(--n300);
  background: var(--n100);
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: var(--n900);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.search-input:focus {
  border-color: var(--p500);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(47, 111, 237, 0.08);
}

/* Filter chip buttons */
.filter-chip {
  padding: 7px 16px;
  border-radius: var(--r-pill);
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid var(--n300);
  background: #fff;
  color: var(--n700);
  transition: all 0.2s;
  white-space: nowrap;
}

.filter-chip:hover {
  border-color: var(--p400);
  color: var(--p500);
  background: var(--p100);
}

.filter-chip.active {
  background: var(--p500);
  color: #fff;
  border-color: var(--p500);
}

.result-count-badge {
  font-size: 12px;
  color: var(--n500);
  font-weight: 500;
  white-space: nowrap;
  align-self: center;
}

/* ── SECTION CARDS ────────────────────────────────────────── */
.sec-card {
  background: #fff;
  border-radius: var(--r);
  border: 1.5px solid var(--n300);
  box-shadow: var(--sh-sm);
  overflow: hidden;
  transition: box-shadow 0.28s, transform 0.28s;
  height: 100%;
}

.sec-card:hover {
  box-shadow: var(--sh-lg);
  transform: translateY(-4px);
}

/* Card header */
.card-header-samil {
  padding: 18px 20px 14px;
  background: #fff;
  border-bottom: 1px solid var(--n100);
  display: flex;
  align-items: center;
  gap: 12px;
}

.card-icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  flex-shrink: 0;
}

/* Icon background variants */
.ico-blue   { background: var(--p100); }
.ico-yellow { background: var(--y100); }
.ico-orange { background: var(--o100); }
.ico-green  { background: #DCFCE7; }
.ico-purple { background: #EDE9FE; }
.ico-pink   { background: #FCE7F3; }
.ico-teal   { background: #CFFAFE; }
.ico-slate  { background: #F1F5F9; }
.ico-red    { background: #FEF2F2; }

.card-section-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--n900);
  margin-bottom: 2px;
  line-height: 1.2;
}

.card-section-count {
  font-size: 11px;
  color: var(--n500);
  font-weight: 500;
}

/* Card body / links */
.card-body-samil {
  padding: 6px 0 12px;
}

.site-link {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 20px;
  color: var(--n900);
  font-size: 13px;
  font-weight: 500;
  transition: background 0.18s, padding-left 0.18s;
  line-height: 1.4;
}

.site-link::before {
  content: '';
  width: 5px;
  height: 5px;
  min-width: 5px;
  border-radius: 50%;
  background: var(--n300);
  flex-shrink: 0;
  transition: background 0.18s;
}

.site-link:hover {
  background: var(--p100);
  color: var(--p600);
  padding-left: 24px;
}

.site-link:hover::before {
  background: var(--p500);
}

.site-link .link-label {
  flex: 1;
  min-width: 0;
}

.site-link.link-highlight {
  color: var(--n900);
  font-weight: 500;
}

.site-link.link-highlight::before {
  background: var(--n300);
}

/* Link badges */
.badge-ext {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: var(--p100);
  color: var(--p600);
  flex-shrink: 0;
  font-size: 10px;
  line-height: 1;
}

.badge-ext i {
  font-size: 10px;
}

.badge-new {
  margin-left: auto;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--r-pill);
  background: #FEF2F2;
  color: #DC2626;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Two-column link layout inside a card */
.link-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

.link-cols > div:first-child {
  border-right: 1px solid var(--n100);
}