/* Heritage Marketing Footer Redesign - Clean & Premium */

/* Footer Wrapper Enhancements */
.footer-bg-wrapper {
    position: relative;
    background-color: #1a1a1a;
    /* Same black as About Us header */
    padding-top: 80px;
    /* Standard padding */
    overflow: hidden;
    color: #ffffff;
    border-top: 4px solid #bfa37c;
    /* Premium Gold Top Border */
}

/* SVG Styling - Removed/Hidden */
.footer-bg-wrapper #footer-svg {
    display: none;
}

/* Widget Area Styling */
.footer-widget-area {
    position: relative;
    z-index: 3;
    padding-bottom: 60px;
}

/* Widget Titles */
.footer-widget h4.widget-title {
    font-family: "Playfair Display", serif;
    font-size: 22px;
    color: #ffffff;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.footer-widget h4.widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #bfa37c;
    /* Gold accent */
}

/* About Widget Text Overrides */
.about-company-widget .widget-content p {
    font-family: "Jost", sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #ffffff !important;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Contact Info List */
.about-company-widget .ct-info-list li {
    margin-bottom: 15px;
    font-size: 15px;
    display: flex;
    align-items: flex-start;
}

/* Icons/Labels (Office, Phone, Email) */
.about-company-widget .ct-info-list li span[style*="font-weight: bold"] {
    color: #bfa37c !important;
    /* Gold for labels */
    margin-right: 10px;
    min-width: 60px;
}

/* Contact Details Text */
.about-company-widget .ct-info-list li span:not([style*="font-weight: bold"]),
.about-company-widget .ct-info-list li a {
    color: #ffffff !important;
    opacity: 0.9;
    text-decoration: none;
    transition: color 0.3s ease;
}

.about-company-widget .ct-info-list li a:hover {
    color: #bfa37c !important;
    opacity: 1;
}

/* Logo Handling */
.footer-logo img {
    filter: brightness(0) invert(1);
    /* Make logo pure white */
    opacity: 0.9;
}

/* Quick Links Widget */
.footer-nav-widget .widget-content ul.widget-menu li {
    margin-bottom: 12px;
}

.footer-nav-widget .widget-content ul.widget-menu li a {
    font-family: "Jost", sans-serif;
    font-size: 16px;
    color: #ffffff !important;
    opacity: 0.8;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
    text-decoration: none;
}

.footer-nav-widget .widget-content ul.widget-menu li a:hover {
    color: #bfa37c !important;
    opacity: 1;
    padding-left: 5px;
}

/* Copyright Area */
.copyright-area {
    background-color: #0d0d0d;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.copyright-area .copyright-text p {
    font-size: 14px;
    color: #cccccc !important;
    margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .footer-bg-wrapper {
        padding-top: 60px;
    }

    .footer-widget {
        margin-bottom: 40px;
    }
}

/* Fix for flex issue in style.css causing title and content to be side-by-side */
.footer-nav-widget {
    display: block !important;
}

/* Ensure icons are gold */
.about-company-widget .ct-info-list li span i,
.about-company-widget .ct-info-list li i {
    color: #bfa37c !important;
}

/* Ensure no float interference */
.footer-widget h4.widget-title {
    width: 100%;
    display: block;
}