/* ── HERO ── */
:root {
  --gs-orange: #ff6b35;
  --gs-dark: #1a1a2e;
  --gs-navy: #0f3460;
  --gs-light: #f4f7fa;
  --gs-border: #e8edf2;
  --gs-muted: #6c7a8d;
  --gs-radius: 12px;
}

#sitemap_html .smap-hero .container {
  margin-top: 100px;
}
#sitemap_html .smap-hero {
  background: linear-gradient(135deg, var(--gs-dark) 0%, var(--gs-navy) 100%);
  padding: 56px 0 44px;
  position: relative;
  overflow: hidden;
}

#sitemap_html .smap-hero::after {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: rgba(255, 107, 53, 0.1);
  top: -110px;
  right: -90px;
  pointer-events: none;
}

#sitemap_html .badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 107, 53, 0.15);
  border: 1px solid rgba(255, 107, 53, 0.3);
  color: var(--gs-orange);
  border-radius: 50px;
  padding: 5px 16px;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

#sitemap_html .smap-hero h1 {
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}

#sitemap_html .smap-hero h1 span {
  color: var(--gs-orange);
}

#sitemap_html .smap-hero p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.95rem;
  margin-top: 10px;
  max-width: 520px;
}

#sitemap_html .smap-breadcrumb {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 20px;
  flex-wrap: wrap;
}

#sitemap_html .smap-breadcrumb a {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.78rem;
  text-decoration: none;
  transition: color 0.2s;
}

#sitemap_html .smap-breadcrumb a:hover {
  color: var(--gs-orange);
}

#sitemap_html .smap-breadcrumb .sep {
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.68rem;
}

#sitemap_html .smap-breadcrumb .current {
  color: var(--gs-orange);
  font-size: 0.78rem;
  font-weight: 600;
}

/* ── STATS ── */
#sitemap_html .smap-stats {
  background: var(--gs-orange);
  padding: 12px 0;
}

#sitemap_html .stat {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  justify-content: center;
}

#sitemap_html .stat i {
  font-size: 1rem;
  opacity: 0.85;
}

#sitemap_html .stat .v {
  font-size: 1rem;
  font-weight: 700;
}

#sitemap_html .stat .l {
  font-size: 0.68rem;
  opacity: 0.78;
}

/* ── BODY ── */
#sitemap_html .smap-body {
  padding: 44px 0 64px;
  background: var(--gs-light);
}

/* Cards */
#sitemap_html .smap-card {
  background: #fff;
  border: 1px solid var(--gs-border);
  border-radius: var(--gs-radius);
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition:
    box-shadow 0.25s,
    transform 0.25s;
}

#sitemap_html .smap-card:hover {
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.09);
  transform: translateY(-2px);
}

#sitemap_html .smap-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 22px;
  border-bottom: 1px solid var(--gs-border);
  background: #fafbfc;
}

#sitemap_html .smap-card-head .ic {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: #fff;
  flex-shrink: 0;
  background: var(--gs-orange);
}

#sitemap_html .smap-card-head .ic.navy {
  background: var(--gs-navy);
}

#sitemap_html .smap-card-head .ic.green {
  background: #10b981;
}

#sitemap_html .smap-card-head h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0;
}

#sitemap_html .cnt {
  margin-left: auto;
  background: var(--gs-light);
  color: var(--gs-muted);
  border-radius: 20px;
  padding: 3px 12px;
  font-size: 0.72rem;
  font-weight: 600;
  white-space: nowrap;
}

/* Link grid */
#sitemap_html .links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

#sitemap_html .smap-link {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 13px 20px;
  border-right: 1px solid var(--gs-border);
  border-bottom: 1px solid var(--gs-border);
  text-decoration: none;
  color: var(--gs-dark);
  font-size: 0.85rem;
  font-weight: 500;
  transition: background 0.12s;
}

#sitemap_html .smap-link:hover {
  background: var(--gs-light);
  color: var(--gs-orange);
}

#sitemap_html .smap-link:hover .arr {
  opacity: 1;
  transform: translateX(3px);
}

#sitemap_html .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gs-orange);
  flex-shrink: 0;
}

#sitemap_html .arr {
  margin-left: auto;
  color: var(--gs-orange);
  opacity: 0;
  transition:
    opacity 0.12s,
    transform 0.12s;
  font-size: 0.72rem;
}

/* Property list */
#sitemap_html .prop-list {
  max-height: 400px;
  overflow-y: auto;
}

#sitemap_html .prop-list::-webkit-scrollbar {
  width: 3px;
}

#sitemap_html .prop-list::-webkit-scrollbar-thumb {
  background: var(--gs-border);
  border-radius: 3px;
}

#sitemap_html .prop-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 20px;
  border-bottom: 1px solid var(--gs-border);
  text-decoration: none;
  color: var(--gs-dark);
  font-size: 0.83rem;
  transition: background 0.12s;
}

#sitemap_html .prop-item:last-child {
  border-bottom: none;
}

#sitemap_html .prop-item:hover {
  background: var(--gs-light);
  color: var(--gs-orange);
}

#sitemap_html .prop-item:hover .parr {
  opacity: 1;
}

#sitemap_html .prop-item .pico {
  color: var(--gs-orange);
  font-size: 0.78rem;
  flex-shrink: 0;
}

#sitemap_html .prop-item .pname {
  font-weight: 600;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#sitemap_html .prop-item .ploc {
  color: var(--gs-muted);
  font-size: 0.75rem;
  white-space: nowrap;
  flex-shrink: 0;
}

#sitemap_html .prop-item .parr {
  color: var(--gs-orange);
  font-size: 0.72rem;
  opacity: 0;
  transition: opacity 0.12s;
  flex-shrink: 0;
}

#sitemap_html .show-more-wrap {
  padding: 11px 20px;
  text-align: center;
  border-top: 1px solid var(--gs-border);
}

#sitemap_html .btn-show-more {
  background: none;
  border: 1px solid var(--gs-border);
  border-radius: 7px;
  padding: 7px 20px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gs-muted);
  cursor: pointer;
  transition: all 0.2s;
}

#sitemap_html .btn-show-more:hover {
  border-color: var(--gs-orange);
  color: var(--gs-orange);
}

/* Sidebar */
#sitemap_html .smap-sidebar {
  position: sticky;
  top: 20px;
}

#sitemap_html .sb-link {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 18px;
  border-bottom: 1px solid var(--gs-border);
  text-decoration: none;
  color: var(--gs-dark);
  font-size: 0.83rem;
  transition: background 0.12s;
}

#sitemap_html .sb-link:last-child {
  border-bottom: none;
}

#sitemap_html .sb-link:hover {
  background: var(--gs-light);
  color: var(--gs-orange);
}

#sitemap_html .sb-link i {
  color: var(--gs-orange);
  font-size: 0.85rem;
  width: 14px;
}

#sitemap_html .sb-badge {
  margin-left: auto;
  background: var(--gs-light);
  border-radius: 10px;
  padding: 1px 9px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gs-muted);
}

/* XML card */
#sitemap_html .xml-card {
  padding: 18px;
}

#sitemap_html .xml-link {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--gs-light);
  border: 1px solid var(--gs-border);
  border-radius: 8px;
  padding: 9px 13px;
  text-decoration: none;
  color: var(--gs-dark);
  font-size: 0.8rem;
  font-weight: 600;
  transition: border-color 0.2s;
  margin-top: 10px;
}

#sitemap_html .xml-link:hover {
  border-color: var(--gs-orange);
}

#sitemap_html .xml-link .ext {
  margin-left: auto;
  color: var(--gs-muted);
  font-size: 0.7rem;
}

/* Contact card */
#sitemap_html .contact-card {
  padding: 18px;
  text-align: center;
}

#sitemap_html .contact-ico {
  width: 42px;
  height: 42px;
  background: rgba(255, 107, 53, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 11px;
}

#sitemap_html .btn-gs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: var(--gs-orange);
  color: #fff !important;
  border: none;
  border-radius: 8px;
  padding: 10px 22px;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  width: 100%;
  transition: opacity 0.2s;
}

#sitemap_html .btn-gs:hover {
  opacity: 0.9;
}

/* CTA */
#sitemap_html .smap-cta {
  background: linear-gradient(135deg, var(--gs-dark) 0%, var(--gs-navy) 100%);
  border-radius: var(--gs-radius);
  padding: 40px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: 24px;
}

#sitemap_html .smap-cta::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255, 107, 53, 0.1);
  top: -70px;
  right: -55px;
  pointer-events: none;
}

#sitemap_html .smap-cta h3 {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 800;
}

#sitemap_html .smap-cta p {
  color: rgba(255, 255, 255, 0.55);
  margin: 9px auto 20px;
  max-width: 430px;
  font-size: 0.9rem;
}

#sitemap_html .btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--gs-orange);
  color: #fff !important;
  border: none;
  border-radius: 8px;
  padding: 11px 24px;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition:
    opacity 0.2s,
    transform 0.2s;
}

#sitemap_html .btn-cta:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

#sitemap_html .btn-cta-out {
  background: transparent !important;
  border: 2px solid rgba(255, 255, 255, 0.25) !important;
  color: rgba(255, 255, 255, 0.85) !important;
}

#sitemap_html .btn-cta-out:hover {
  border-color: #fff !important;
  color: #fff !important;
}

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
  #sitemap_html .smap-hero .container {
    margin-top: 50px;
  }
  #sitemap_html .smap-sidebar {
    display: none;
  }
}

@media (max-width: 767px) {
  #sitemap_html .smap-hero {
    padding: 38px 0 28px;
  }

  #sitemap_html .smap-body {
    padding: 28px 0 44px;
  }

  #sitemap_html .links-grid {
    grid-template-columns: 1fr 1fr;
  }

  #sitemap_html .smap-cta {
    padding: 28px 20px;
  }

  #sitemap_html .smap-cta h3 {
    font-size: 1.2rem;
  }
}

@media (max-width: 575px) {
  #sitemap_html .links-grid {
    grid-template-columns: 1fr;
  }

  #sitemap_html .smap-card-head {
    padding: 13px 15px;
  }

  #sitemap_html .smap-link,
  #sitemap_html .prop-item {
    padding: 12px 15px;
  }

  #sitemap_html .stat .v {
    font-size: 0.9rem;
  }

  #sitemap_html .stat .l {
    font-size: 0.63rem;
  }

  #sitemap_html .smap-cta {
    padding: 24px 16px;
  }

  #sitemap_html .cta-btn-wrap {
    flex-direction: column;
    align-items: stretch;
  }

  #sitemap_html .cta-btn-wrap .btn-cta {
    justify-content: center;
  }
}
