/* --- 13. Medical Practice Footer --- */
.site-footer {
    background: #1e293b;
    color: #cbd5e1;
    margin-top: auto;
    /* Single font-family for the entire footer — no serif/sans-serif clash */
    font-family: var(--font-heading);
    font-size: var(--font-size-footer);
    font-weight: 400;
    line-height: 1.6;
}

.footer-main-area {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding: 80px var(--iatrics-safe-padding);
}

.footer-heading {
    color: #f8fafc!important;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
}
.footer-heading::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--medical-accent);
}
.footer-branding .footer-logo {
    max-width: 180px;
    height: auto;
    margin-bottom: 15px;
    filter: brightness(0) invert(1); /* Makes dark logos white for footer */
}

.footer-dr-name {
    color: #f8fafc;
    font-size: 1.5rem;
    letter-spacing: -0.02em;
    margin-bottom: 5px;
    display: block;
}

.footer-specialty {
    color: var(--medical-accent);
    font-size: var(--font-size-nav);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 15px;
}

.footer-tagline {
    
    max-width: 320px;
    color: #cbd5e1!important;
    
}

/* Social Icons in Footer */
.footer-social-links { display: flex; gap: 15px; margin-top: 20px; }
.footer-social-links a {
    color: #f8fafc;
    background: rgba(255,255,255,0.1);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
}
.footer-social-links a:hover {
    background: var(--medical-accent);
    transform: translateY(-3px);
}

/* Footer Navigation */
#footer-menu { list-style: none; padding: 0; margin: 0; }
#footer-menu li { margin-bottom: 12px; }
#footer-menu a { color: #cbd5e1; text-decoration: none; transition: color 0.2s; }
#footer-menu a:hover { color: #f8fafc; }

/* Contact Details — reset <address> italic browser default */
address.footer-address { font-style: normal; }
.footer-address, .footer-phone, .footer-email {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
}
.footer-address .dashicons, 
.footer-phone .dashicons, 
.footer-email .dashicons {
    color: var(--medical-accent);
    margin-top: 3px;
}
.footer-contact a { color: inherit; text-decoration: none; }
.footer-contact a:hover { color: #f8fafc; }

/* Academic credentials line — same weight/size as all footer body text */
.footer-cred-academic {
    margin-bottom: 16px;
	color: #cbd5e1!important;
}

/* Registry / membership rows — label + value, uniform style */
.footer-registry-stack { display: flex; flex-direction: column; gap: 4px; }
.footer-registry-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin: 0;
}
.footer-registry-label {
    color: #94a3b8;   /* muted so it reads as a label, not competing text */
    min-width: 48px;
    flex-shrink: 0;
}
.footer-registry-val {
    font-variant-numeric: tabular-nums;
	color: #94a3b8!important;
}

/* Bottom Bar */
.footer-bottom-bar {
    background: #0f172a;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    
}
.footer-bottom-bar p {color:#f8fafc;}
.bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-legal-links a { color: #64748b; text-decoration: none; margin-left: 20px; }
.footer-legal-links a:hover { color: #f8fafc; }

/* Mobile Adjustments for Footer */
@media (max-width: 1024px) {
    .footer-main-area {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .footer-main-area { grid-template-columns: 1fr; gap: 40px; }
    .bottom-inner { flex-direction: column; gap: 15px; text-align: center; }
    .footer-legal-links a { margin: 0 10px; }
    .footer-column {
        padding-bottom: 30px;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        margin-bottom: 30px;
        padding-left:3px;
    }
    .footer-column:last-child {
        border-bottom: none;
    }
}
.entry-footer {display:none;}