﻿/* =========================================================
   SITEMAP
========================================================= */

.sitemap-section {
    padding: 65px 25px 90px;
    background: radial-gradient( circle at 95% 5%, rgba(136, 0, 0, .035), transparent 25% ), #f7f8fa;
}

.sitemap-container {
    width: min(1200px, 100%);
    margin: 0 auto;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.sitemap-section-heading {
    margin-bottom: 28px;
}

    .sitemap-section-heading > span {
        display: block;
        margin-bottom: 5px;
        color: #880000;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 1.2px;
        text-transform: uppercase;
    }

    .sitemap-section-heading h2 {
        margin: 0;
        color: #0e1a2b;
        font-size: clamp(24px, 3vw, 31px);
        font-weight: 700;
    }


/* =========================================================
   QUICK ACCESS
========================================================= */

.sitemap-quick-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 60px;
}

.sitemap-quick-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 11px 17px;
    border: 1px solid #e0e3e7;
    border-radius: 10px;
    background: #ffffff;
    color: #344054;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: border-color .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
}

    .sitemap-quick-link:hover {
        border-color: rgba(136, 0, 0, .4);
        color: #880000;
        transform: translateY(-2px);
        box-shadow: 0 5px 17px rgba(0, 0, 0, .055);
    }

.sitemap-link-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 23px;
    height: 23px;
    border-radius: 50%;
    background: rgba(136, 0, 0, .08);
    color: #880000;
    font-size: 9px;
}


/* =========================================================
   MAIN GRID
========================================================= */

.sitemap-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}


/* =========================================================
   CARD
========================================================= */

.sitemap-card {
    position: relative;
    padding: 25px 24px;
    border: 1px solid #e4e7eb;
    border-radius: 15px;
    background: #ffffff;
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

    .sitemap-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 4px;
        height: 55px;
        background: #880000;
        border-radius: 0 0 4px 0;
    }

    .sitemap-card:hover {
        transform: translateY(-3px);
        border-color: rgba(136, 0, 0, .18);
        box-shadow: 0 12px 30px rgba(15, 23, 42, .07);
    }


/* =========================================================
   CARD HEADING
========================================================= */

.sitemap-card-heading {
    position: relative;
    margin-bottom: 18px;
    padding-bottom: 15px;
    border-bottom: 1px solid #edf0f2;
}

    .sitemap-card-heading h3 {
        margin: 0;
        color: #0e1a2b;
        font-size: 18px;
        font-weight: 700;
        line-height: 1.4;
    }

        .sitemap-card-heading h3 a {
            color: inherit;
            text-decoration: none;
        }

            .sitemap-card-heading h3 a:hover {
                color: #880000;
            }


/* =========================================================
   MENU
========================================================= */

.sitemap-menu-list,
.sitemap-sub-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

    .sitemap-menu-list > li {
        margin-bottom: 7px;
    }

        .sitemap-menu-list > li:last-child {
            margin-bottom: 0;
        }


    /* =========================================================
   NORMAL CLICKABLE ITEM
========================================================= */

    .sitemap-item-link,
    .sitemap-sub-list a {
        display: flex;
        align-items: flex-start;
        gap: 7px;
        padding: 6px 4px;
        color: #525b67;
        font-size: 13px;
        line-height: 1.55;
        text-decoration: none;
        transition: color .18s ease, transform .18s ease;
    }

        .sitemap-item-link i,
        .sitemap-sub-list a i {
            margin-top: 5px;
            color: #880000;
            font-size: 8px;
        }

        .sitemap-item-link:hover,
        .sitemap-sub-list a:hover {
            color: #880000;
            transform: translateX(3px);
        }


/* =========================================================
   NON CLICKABLE MIDDLE PARENT
========================================================= */

.sitemap-parent-item {
    margin: 13px 0;
}

.sitemap-sub-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 7px 8px;
    border-radius: 6px;
    background: #f7f8fa;
    color: #263445;
    font-size: 13px;
    font-weight: 650;
}

    .sitemap-sub-heading i {
        color: #880000;
        font-size: 8px;
    }


/* =========================================================
   SUB LIST
========================================================= */

.sitemap-sub-list {
    margin: 6px 0 0 9px;
    padding-left: 12px;
    border-left: 1px solid #e1e5e9;
}

    .sitemap-sub-list li {
        margin-bottom: 2px;
    }

.sitemap-level-3 {
    margin: 5px 0;
    background: transparent;
    padding-left: 2px;
}

/* =========================================================
   FOOTER LINKS SECTION
========================================================= */

.sitemap-footer-section {
    margin-top: 65px;
    padding-top: 55px;
    border-top: 1px solid #e4e7eb;
}


.sitemap-footer-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}


.sitemap-footer-link {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 50px;
    padding: 12px 15px;
    border: 1px solid #e2e6ea;
    border-radius: 10px;
    background: #ffffff;
    color: #394452;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.45;
    text-decoration: none;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, color .2s ease;
}


    .sitemap-footer-link:hover {
        transform: translateY(-2px);
        border-color: rgba(136, 0, 0, .3);
        color: #880000;
        box-shadow: 0 7px 20px rgba(15, 23, 42, .055);
    }


.sitemap-footer-icon {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: rgba(136, 0, 0, .08);
    color: #880000;
    font-size: 9px;
}


/* =========================================================
   BOTTOM / POLICY LINKS
========================================================= */

.sitemap-bottom-section {
    margin-top: 55px;
    padding-top: 45px;
    border-top: 1px solid #e4e7eb;
}


.sitemap-bottom-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
}


    .sitemap-bottom-links a {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        padding: 9px 14px;
        border-radius: 7px;
        background: #fff;
        color: #505965;
        font-size: 13px;
        text-decoration: none;
        transition: color .2s ease, transform .2s ease;
    }


        .sitemap-bottom-links a i {
            color: #880000;
            font-size: 8px;
        }


        .sitemap-bottom-links a:hover {
            color: #880000;
            transform: translateX(2px);
        }


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1050px) {

    .sitemap-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


@media (max-width: 650px) {

    .sitemap-section {
        padding: 42px 16px 65px;
    }

    .sitemap-grid {
        grid-template-columns: 1fr;
    }

    .sitemap-card {
        padding: 22px 19px;
    }

    .sitemap-quick-links {
        gap: 9px;
        margin-bottom: 45px;
    }

    .sitemap-quick-link {
        width: 100%;
        border-radius: 9px;
    }
}


/* =========================================================
   RESPONSIVE FOOTER SITEMAP
========================================================= */

@media (max-width: 1050px) {

    .sitemap-footer-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}


@media (max-width: 800px) {

    .sitemap-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


@media (max-width: 520px) {

    .sitemap-footer-grid {
        grid-template-columns: 1fr;
    }

    .sitemap-footer-link {
        width: 100%;
    }

    .sitemap-bottom-links {
        flex-direction: column;
        gap: 5px;
    }

        .sitemap-bottom-links a {
            width: 100%;
        }
}