/* ==============================================
   GLOBAL FOOTER STYLES (Desktop & Mobile)
   Applied layout/design across all devices.
   ============================================== */

/* --- Widget Titles --- */
.footer-widget .widget-title h3 {
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 15px;
    display: block;
    padding-left: 0;
    border-left: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2); /* Solid line visible */
}

/* Remove default pseudo-elements if any */
.footer-widget .widget-title h3::before {
    display: none;
}

/* Red Accent Line sitting on top of the border */
.footer-widget .widget-title h3::after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: -1px; /* Sit right on the line */
    width: 50px; /* Accent */
    height: 3px; /* Slightly thicker accent */
    background-color: var(--primary-color, #fa5754);
}

/* --- General Link Styles --- */
.footer-widget .links-list li {
    display: block;
    margin-bottom: 0px; /* Reduced margin as requested */
}

.footer-widget .info-list li {
    display: block;
    margin-bottom: 8px;
}

.footer-widget .links-list li a {
    font-size: 14px;
    color: #dbe4ea;
    padding: 5px 0;
    display: block;
    transition: padding-left 0.2s;
    text-decoration: none;
}

.footer-widget .links-list li a:hover {
    color: var(--primary-color, #fa5754);
    padding-left: 5px;
}

/* Chevron icon before links */
.footer-widget .links-list li a::before {
    content: '\f054'; /* FontAwesome chevron-right */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 8px;
    color: var(--primary-color, #fa5754);
    font-size: 10px;
    vertical-align: middle;
}

/* --- Contact Info Specifics --- */
.footer-widget .info-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.05); /* Separator line */
}
.footer-widget .info-list li:last-child {
    border-bottom: none;
}

.footer-widget .info-list li i {
    color: var(--primary-color, #fa5754);
    margin-top: 4px; /* Align with first line of text */
    width: 20px;
    text-align: center;
    font-size: 16px; 
}

.footer-widget .info-list li a, 
.footer-widget .info-list li p,
.footer-widget .info-list li {
    color: #dbe4ea;
    font-size: 14px;
    line-height: 1.6;
}

/* --- Social Links Section --- */
.social-box .social-links {
    display: flex;
    gap: 10px; /* Spacing between icons */
    margin-top: 10px;
}
.social-box .social-links li {
    display: inline-block;
}
.social-box .social-links li a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 4px; /* Slight rounded corners */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
}
.social-box .social-links li a:hover {
    background: var(--primary-color, #fa5754);
    transform: translateY(-3px);
}

/* Reset problematic margin on social icons from older CSS */
.fab {
    margin-top: 0 !important;
}

/* --- Footer Bottom / Copyright --- */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
}
.footer-bottom .footer-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    text-align: center;
}
.footer-bottom .copyright p {
    margin: 0;
    color: #9ea0a5;
    font-size: 14px;
}
.footer-bottom .copyright a {
    color: white;
    font-weight: 500;
}
