
    .site-footer {
        background: #3f1b0b;
        color: #f5e9dc;
        margin-top: 50px;
    }


    /* Footer headings */

    .footer-title {
        color: #ffffff;
        font-size: 19px;
        font-weight: 700;
        margin-bottom: 7px;
    }


    .footer-line {
        width: 45px;
        height: 3px;
        background: #d88900;
        margin-bottom: 20px;
        border-radius: 3px;
    }


    /* Footer text */

    .footer-text {
        color: #e4d2c0;
        font-size: 14px;
        line-height: 1.8;
        margin-bottom: 12px;
    }


    /* Important links */

    .footer-links {
        list-style: none;
        padding: 0;
        margin: 0;
    }


    .footer-links li {
        margin-bottom: 9px;
    }


    .footer-links a {
        color: #e4d2c0;
        text-decoration: none;
        font-size: 14px;
        transition: 0.2s;
    }


    .footer-links a::before {
        content: "›";
        margin-right: 8px;
        color: #d88900;
        font-weight: bold;
    }


    .footer-links a:hover {
        color: #ffffff;
        padding-left: 4px;
    }


    /* Contact */

    .contact-item {
        display: flex;
        gap: 12px;
        margin-bottom: 17px;
        color: #e4d2c0;
        font-size: 14px;
        line-height: 1.6;
    }


    .contact-item strong {
        color: #ffffff;
    }


    .contact-item a {
        color: #e4d2c0;
        text-decoration: none;
    }


    .contact-item a:hover {
        color: #ffffff;
    }


    .contact-icon {
        width: 28px;
        flex-shrink: 0;
        font-size: 18px;
        text-align: center;
    }


    /* Social media */

    .social-section {
        margin-top: 20px;
    }


    .social-section h6 {
        color: #ffffff;
        font-size: 15px;
        margin-bottom: 12px;
    }


    .social-links {
        display: flex;
        gap: 9px;
    }


    .social-icon {
        width: 38px;
        height: 38px;

        display: flex;
        align-items: center;
        justify-content: center;

        border: 1px solid rgba(255,255,255,0.3);
        border-radius: 50%;

        color: #ffffff;
        text-decoration: none;

        font-size: 17px;
        font-weight: 600;

        transition: all 0.2s ease;
    }


    .social-icon:hover {
        background: #d88900;
        border-color: #d88900;
        color: #ffffff;
        transform: translateY(-2px);
    }


    /* Footer bottom */

    .footer-bottom {
        border-top: 1px solid rgba(255,255,255,0.15);
        padding: 17px 0;
        color: #cdb8a4;
        font-size: 12px;
    }


    .footer-bottom a {
        color: #cdb8a4;
        text-decoration: none;
    }


    .footer-bottom a:hover {
        color: #ffffff;
    }


    .footer-separator {
        margin: 0 8px;
        opacity: 0.5;
    }


    /* Mobile */

    @media (max-width: 767.98px) {

        .site-footer {
            margin-top: 30px;
        }

        .footer-title {
            font-size: 18px;
        }

        .footer-text {
            font-size: 13px;
        }

        .footer-bottom {
            font-size: 11px;
        }

    }

/* =========================
   CONTACT ICONS
========================= */

.contact-icon {
    width: 28px;
    min-width: 28px;
    font-size: 18px;
    color: #d88900;
    text-align: center;
    line-height: 1.5;
}

.contact-icon i {
    vertical-align: middle;
}


/* =========================
   SOCIAL ICONS
========================= */

.social-links {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 38px;
    height: 38px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;

    color: #ffffff;
    background: transparent;

    text-decoration: none;

    font-size: 17px;

    transition: all 0.2s ease;
}

.social-icon:hover {
    background: #d88900;
    border-color: #d88900;
    color: #ffffff;
    transform: translateY(-2px);
}

.social-icon i {
    line-height: 1;
}