/* File: wp-content/themes/gtmotor/assets/css/footer.css */

/* Main Footer Container */
.footer-section {
    background: #333333;
    color: #ffffff;
    padding: 40px 0 20px;
    text-align: left; /* Reset from center if inherited */
    position: relative;
    z-index: 10;
    margin-top: auto;
}

/* Widget / Content Area */
.site-footer-row {
    color: #F7D002;
}

/* Headings */
.footer-heading {
    margin: 0 0 12px 0;
    font-family: "Figtree", sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #F7D002; /* Ensure heading is yellow */
}

/* Separator Line */
.footer-hr {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    margin: 8px 0 16px 0;
    opacity: 1;
}

/* Main Paragraph Text */
.footer-paragraph {
    color: rgba(255, 255, 255, 0.8);
    font-family: "Figtree", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin: 0 0 16px 0;
}

.footer-paragraph strong {
    font-weight: 700;
    color: #fff;
}

/* Small Print / Disclaimer */
.footer-paragraph-small {
    color: rgba(255, 255, 255, 0.6);
    font-family: "Figtree", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.6;
    margin-top: 32px;
}

.footer-paragraph-small a {
    color: #fff;
    text-decoration: underline;
}

/* Social Icons */
.socials.justify-content-left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
}

.socials a {
    display: inline-flex;
    align-items: center;
    transition: opacity 0.2s ease;
}

.socials a:hover {
    opacity: 0.8;
}

/* Helpers extracted from old styles */
.pr-14 { padding-right: 14px; }
.pr-10 { padding-right: 10px; }
.br-10 { border-radius: 10px; }

/* Bottom Copyright Bar */
.site-info.footer-copywrite {
    background-color: #000000;
    color: #ffffff;
    font-family: "Figtree", sans-serif;
    font-size: 14px;
    text-align: center;
    padding: 16px;
}

.site-info.footer-copywrite a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 4px;
}

.site-info.footer-copywrite a:hover {
    text-decoration: underline;
}

/* Mobile Adjustments */
@media (max-width: 991.98px) {
    .footer-section {
        text-align: center;
    }
    
    .site-footer-row {
        padding-left: 16px;
        padding-right: 16px;
        text-align: center;
    }

    .socials.justify-content-left {
        justify-content: center;
        margin-bottom: 24px;
    }

    .footer-heading {
        margin-top: 24px;
    }
}