/* ===== SITE FOOTER ===== */

/* Kill any old footer styles bleeding from style.css */
footer.site-footer,
footer.site-footer * { box-sizing: border-box; }

.site-footer {
    background: #0f1c2e;
    position: relative;
    margin-top: 0;
}

/* Gold top accent — frames the footer at the top */
.footer-top-bar {
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #c8a45c 25%, #f0d98a 50%, #c8a45c 75%, transparent 100%);
}

.footer-main {
    padding: 24px 0 12px;
}

.footer-col {
    margin-bottom: 10px;
}

/* ── Brand block ── */
.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}
.footer-logo {
    width: 44px;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.85;
}
.footer-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.footer-brand-name1 {
    color: rgba(255,255,255,0.9);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}
.footer-brand-name2 {
    color: #c8a45c;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}
.footer-desc {
    color: rgba(255,255,255,0.48);
    font-size: 12.5px;
    line-height: 1.65;
    margin-bottom: 12px;
}

/* ── Social icon buttons ── */
.footer-social {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.fsoc-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.09);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.55);
    font-size: 14px;
    transition: all 0.28s ease;
    text-decoration: none;
}
.fsoc-btn:hover       { color: #fff; text-decoration: none; transform: translateY(-2px); }
.fsoc-btn.phone:hover  { background: #c8a45c; border-color: #c8a45c; }
.fsoc-btn.wa:hover     { background: #25D366; border-color: #25D366; }
.fsoc-btn.mail:hover   { background: #c8a45c; border-color: #c8a45c; }

/* ── Column headings ── */
.footer-heading {
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 12px;
    padding-bottom: 8px;
    position: relative;
}
.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 28px;
    height: 2px;
    background: #c8a45c;
    border-radius: 2px;
}

/* ── Nav list ── */
.footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-nav-list li {
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.footer-nav-list li:last-child { border-bottom: none; }
.footer-nav-list li a {
    color: rgba(255,255,255,0.55);
    font-size: 12.5px;
    padding: 5px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s;
    text-decoration: none;
}
.footer-nav-list li a i {
    color: #c8a45c;
    font-size: 10px;
    transition: transform 0.25s;
    flex-shrink: 0;
}
.footer-nav-list li a:hover {
    color: #c8a45c;
    padding-left: 4px;
    text-decoration: none;
}
.footer-nav-list li a:hover i { transform: translateX(3px); }

/* ── Contact list ── */
.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.fc-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.fc-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 6px;
    background: rgba(200,164,92,0.09);
    border: 1px solid rgba(200,164,92,0.16);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
    transition: all 0.28s;
}
.fc-icon i { color: #c8a45c; font-size: 13px; }
.fc-item:hover .fc-icon { background: #c8a45c; border-color: #c8a45c; }
.fc-item:hover .fc-icon i { color: #fff; }
.fc-text {
    color: rgba(255,255,255,0.6);
    font-size: 12.5px;
    line-height: 1.7;
}
.fc-text a { color: rgba(255,255,255,0.7); transition: color 0.25s; }
.fc-text a:hover { color: #c8a45c; text-decoration: none; }
.fc-text .fc-small { color: rgba(255,255,255,0.35); font-size: 11px; }

/* ── Copyright bar — gold fading line as bottom bookend ── */
.footer-bottom {
    background: #0b1624;
    padding: 14px 0;
    position: relative;
}
.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(200,164,92,0.35) 15%,
        #c8a45c 40%,
        #f0d98a 50%,
        #c8a45c 60%,
        rgba(200,164,92,0.35) 85%,
        transparent 100%
    );
}
.footer-bottom .copyright {
    background: transparent;
    border-top: none;
    color: rgba(255,255,255,0.32);
    font-size: 12.5px;
    margin: 0;
    padding: 0;
    line-height: 30px;
}
.footer-bottom .copyright span {
    color: #c8a45c;
    font-weight: 600;
}
.footer-legal {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: right;
    line-height: 30px;
}
.footer-legal li { display: inline-block; margin-left: 16px; }
.footer-legal li a {
    color: rgba(255,255,255,0.32);
    font-size: 11.5px;
    transition: color 0.25s;
    text-decoration: none;
}
.footer-legal li a:hover { color: #c8a45c; text-decoration: none; }
.footer-legal li:not(:last-child)::after {
    content: '|';
    color: rgba(255,255,255,0.12);
    margin-left: 16px;
}

@media (max-width: 767px) {
    .footer-main { padding: 20px 0 8px; }
    .footer-legal { text-align: center; margin-top: 4px; }
    .footer-bottom .copyright { text-align: center; line-height: 1.6; }
    .footer-legal li:first-child { margin-left: 0; }
}
