
/* --- Footer --- */
.footer { background-color: var(--darkest-gray); color: #adb5bd; padding: 4rem 0; font-size: 0.9rem; margin-top: 3rem; }
.footer .container { max-width: 1140px; margin: 0 auto; padding: 0 15px; text-align: left; }
.footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2.5rem; margin-bottom: 3rem; }
.footer-section h2 { color: var(--white-color); font-size: 1.1rem; margin-bottom: 1.25rem; font-weight: 600; border-bottom: 1px solid #495057; padding-bottom: 0.5rem; }
.footer-section p, .footer-section ul { margin-bottom: 1rem; font-size: 0.875rem; color: #adb5bd;}
.footer-section ul { list-style: none; padding-left: 0; }
.footer-section ul li { margin-bottom: 0.6rem; }
.footer-section ul li a { color: #adb5bd; }
.footer-section ul li a:hover { color: var(--white-color); text-decoration: underline; }
.footer-contact p { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.75rem;}
.footer-contact .icon { background-color: transparent; margin-right: 0.5rem; opacity: 0.8; width: 16px; height: 16px;}
.footer-disclaimer { font-size: 0.8rem; color: var(--dark-gray); margin-top: 1rem; border-top: 1px solid #495057; padding-top: 1rem;}
.footer-bottom { border-top: 1px solid #495057; padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; font-size: 0.85rem; color: var(--dark-gray); }
.footer-bottom-right { display: flex; align-items: center; gap: 1.5rem; } /* Copyright and Social Links alignment */
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a:hover span { opacity: 1; transform: scale(1.1); }


/* Tablet & Mobile (992px and below) */
@media (max-width: 992px) {
    .footer-content { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
}

/* Mobile (768px and below) */
@media (max-width: 768px) {
    .footer-content { grid-template-columns: 1fr; text-align: center; }
    .footer-section h4 { margin-top: 1.5rem; text-align: center; border-bottom: none; }
    .footer-section ul { text-align: center; }
    .footer-contact p { justify-content: center; }
    .footer-bottom { flex-direction: column; gap: 1rem; }
    .footer-social { margin-top: 0.5rem; justify-content: center; }
    .footer-bottom-right { flex-direction: column; align-items: center; gap: 1rem; }
}
