/* ============================================================
   PARDAFAS ONLINE — FOOTER CSS
   style.css को पुरानो footer section DELETE गरेर
   यो section थप्नुहोस् (line ~1673 देखि ~1763 सम्म replace)
   ============================================================ */


/* ----------------------------------------
   OLD CLASSES — खाली राखिएको (backward compat)
   पुरानो HTML हट्यो, यी classes अब unused छन्
---------------------------------------- */
.preFooterSection,
.footerAbout,
.footerAbout h2,
.footerAbout h3,
.footerAbout ul,
.footerAbout ul li,
.footerAbout ul li strong,
.footerFbPlugins,
.footerLogo,
.companyDetail,
.companyDetail p,
ul.teamMembers li,
ul.teamMembers li strong,
.copyrightSection,
.copyrightSection p,
.copyrightSection a,
.copyrightSection a:hover { all: unset; }


/* ============================================================
   NEW FOOTER STYLES
   ============================================================ */

/* ---- Outer wrapper ---- */
.pf-footer {
    margin-top: 40px;
    font-family: 'Mukta', sans-serif;
}

/* ---- Top brand strip ---- */
.pf-footer-topstrip {
    background: #003f7a;
    border-top: 4px solid #b8202f;
    padding: 22px 0 18px;
}

.pf-footer-brand {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.pf-footer-logo {
    height: 44px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    display: block;
}

.pf-footer-tagline {
    color: rgba(255,255,255,0.6);
    font: 400 15px 'Mukta', sans-serif;
    margin: 0;
    letter-spacing: 0.3px;
}

/* ---- Main content area ---- */
.pf-footer-main {
    background: #00468a;
    padding: 40px 0 30px;
}

.pf-footer-col {
    padding-right: 10px;
    margin-bottom: 30px;
}

/* ---- Section headings ---- */
.pf-footer-heading {
    color: #ffffff;
    font: 600 19px 'Mukta', sans-serif;
    margin: 0 0 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid #b8202f;
    display: inline-block;
}

.pf-footer-subheading {
    color: #ffc34d;
    font: 600 16px 'Mukta', sans-serif;
    margin: 0 0 8px;
}

/* ---- About text ---- */
.pf-footer-about-text {
    color: rgba(255,255,255,0.72);
    font: 400 15px/26px 'Mukta', sans-serif;
    margin-bottom: 18px;
}

/* ---- Registration list ---- */
.pf-footer-reg-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    overflow: hidden;
}

.pf-footer-reg-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 14px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-size: 14px;
    gap: 10px;
}

.pf-footer-reg-list li:last-child {
    border-bottom: none;
}

.pf-reg-label {
    color: rgba(255,255,255,0.6);
    font-size: 13.5px;
}

.pf-reg-value {
    color: #ffc34d;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
}

/* ---- Contact block ---- */
.pf-footer-contact-block {
    background: rgba(0,0,0,0.15);
    border-radius: 6px;
    padding: 14px 16px;
    border-left: 3px solid #b8202f;
}

.pf-footer-contact-item {
    color: rgba(255,255,255,0.8);
    font: 400 14.5px 'Mukta', sans-serif;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.5;
}

.pf-footer-contact-item:last-child {
    margin-bottom: 0;
}

.pf-footer-contact-item svg {
    flex-shrink: 0;
    margin-top: 3px;
    stroke: #ffc34d;
}

.pf-footer-contact-item a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    word-break: break-all;
}

.pf-footer-contact-item a:hover {
    color: #ffc34d;
    text-decoration: none;
}

/* ---- Facebook widget wrapper ---- */
.pf-footer-fb-wrap {
    background: rgba(0,0,0,0.15);
    border-radius: 6px;
    overflow: hidden;
    display: inline-block;
    max-width: 100%;
}

/* ---- Team list ---- */
.pf-footer-team-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pf-footer-team-list li {
    padding: 9px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.pf-footer-team-list li:last-child {
    border-bottom: none;
}

.pf-team-role {
    color: rgba(255,255,255,0.52);
    font: 400 13px 'Mukta', sans-serif;
    line-height: 1.3;
}

.pf-team-name {
    color: rgba(255,255,255,0.9);
    font: 500 15.5px 'Mukta', sans-serif;
    line-height: 1.3;
}

.pf-team-name em {
    font-style: normal;
    color: rgba(255,255,255,0.5);
    font-size: 13px;
    margin-left: 4px;
}

/* ---- Quick links ---- */
.pf-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px 0;
}

.pf-footer-links li {
    width: 50%;
}

.pf-footer-links li a {
    color: rgba(255,255,255,0.7);
    font: 400 15px 'Mukta', sans-serif;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.2s;
    padding: 4px 0;
}

.pf-footer-links li a::before {
    content: '›';
    color: #b8202f;
    font-size: 18px;
    line-height: 1;
}

.pf-footer-links li a:hover {
    color: #ffc34d;
    text-decoration: none;
}

/* ---- Copyright bar ---- */
.pf-footer-copyright {
    background: #b8202f;
    padding: 16px 0;
}

.pf-copyright-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

.pf-copyright-inner p {
    color: rgba(255,255,255,0.9);
    font: 400 14px 'Mukta', sans-serif;
    margin: 0;
}

.pf-copyright-inner a {
    color: #ffffff;
    text-decoration: none;
}

.pf-copyright-inner a:hover {
    color: #ffe0a0;
    text-decoration: none;
}

.pf-copyright-credit {
    color: rgba(255,255,255,0.7) !important;
    font-size: 13px !important;
}


/* ---- Responsive ---- */
@media (max-width: 768px) {
    .pf-footer-topstrip {
        padding: 16px 0 14px;
    }

    .pf-footer-brand {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .pf-footer-main {
        padding: 28px 0 10px;
    }

    .pf-footer-links li {
        width: 50%;
    }

    .pf-copyright-inner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .pf-footer-links li {
        width: 100%;
    }
}
