/* ????????????????????????????????????????????????????
   sitemap.css  —  Styles for Home/Sitemap page
   PDPortal / PublicDial Services
???????????????????????????????????????????????????? */

/* ?? Section wrapper ?? */
.sitemap_section { padding: 70px 0 90px; background: #f4f5fb; }

/* ?? Stat counters ?? */
.sitemap_stats {
    display: flex;
    justify-content: center;
    gap: 30px;
 margin-bottom: 44px;
  flex-wrap: wrap;
}
.sitemap_stat {
    background: #fff;
    border-radius: 8px;
    padding: 16px 28px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(26,35,126,.07);
    border-top: 3px solid #e65100;
    min-width: 120px;
    transition: transform .25s, box-shadow .25s;
}
.sitemap_stat:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 22px rgba(26,35,126,.13);
}
.sitemap_stat h3 { font-size: 26px; font-weight: 800; color: #1a237e; margin: 0; }
.sitemap_stat p  { font-size: 11px; color: #888; margin: 4px 0 0; text-transform: uppercase; letter-spacing: 1px; }

/* ?? Root node ?? */
.sitemap_tree_root {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}
.sitemap_tree_root_box {
    background: linear-gradient(135deg,#1a237e,#e65100);
    color: #fff;
  padding: 16px 40px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 800;
    font-family: 'Sen', sans-serif;
    letter-spacing: .5px;
    box-shadow: 0 4px 18px rgba(26,35,126,.25);
    text-align: center;
}
.sitemap_tree_root_box small {
    display: block;
    font-size: 11px;
    font-weight: 400;
  opacity: .8;
    letter-spacing: 1px;
    margin-top: 3px;
}

/* ?? Card ?? */
.sitemap_card {
  background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(26,35,126,.08);
    margin-bottom: 28px;
    height: 100%;
    transition: box-shadow .3s, transform .3s;
}
.sitemap_card:hover {
    box-shadow: 0 8px 32px rgba(26,35,126,.15);
    transform: translateY(-3px);
}

/* ?? Card header ?? */
.sitemap_card_header {
    background: linear-gradient(90deg,#1a237e,#283593);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-left: 5px solid #e65100;
}
.sitemap_card_header i  { font-size: 20px; color: #ffb300; width: 28px; text-align: center; }
.sitemap_card_header h4 { font-size: 15px; font-weight: 700; color: #fff; margin: 0; font-family: 'Sen',sans-serif; letter-spacing: .4px; }

/* ?? Card body ?? */
.sitemap_card_body { padding: 10px 0; }

/* ?? Main page link ?? */
.sitemap_link {
  display: flex;
align-items: center;
    padding: 9px 20px;
    border-bottom: 1px solid #f0f1f8;
    text-decoration: none !important;
    transition: all .25s;
    gap: 10px;
}
.sitemap_link:last-child { border-bottom: none; }
.sitemap_link i    { font-size: 12px; color: #e65100; flex-shrink: 0; }
.sitemap_link span { font-size: 13px; color: #444; font-weight: 600; }
.sitemap_link:hover        { background: #fff3e0; padding-left: 26px; }
.sitemap_link:hover span      { color: #e65100; }

/* ?? Sub-page link ?? */
.sitemap_sublink {
    display: flex;
    align-items: center;
    padding: 7px 20px 7px 38px;
    border-bottom: 1px solid #f0f1f8;
  text-decoration: none !important;
    transition: all .25s;
    gap: 10px;
}
.sitemap_sublink:last-child { border-bottom: none; }
.sitemap_sublink i    { font-size: 10px; color: #1a237e; flex-shrink: 0; }
.sitemap_sublink span { font-size: 12px; color: #666; }
.sitemap_sublink:hover        { background: #f4f5fb; padding-left: 44px; }
.sitemap_sublink:hover span   { color: #1a237e; }

/* ?? XML note bar ?? */
.xml_note {
    background: #1a237e;
    border-radius: 8px;
    padding: 18px 24px;
    margin-top: 36px;
    display: flex;
    align-items: center;
    gap: 16px;
}
.xml_note i { font-size: 28px; color: #ffb300; flex-shrink: 0; }
.xml_note p { margin: 0; color: rgba(255,255,255,.85); font-size: 13px; line-height: 1.7; }
.xml_note a { color: #ffb300; font-weight: 700; }
