/* ==========================================================================
   Devine Tiles — Footer
   ========================================================================== */

.dt-footer {
    background: var(--dt-black);
    color: rgba(255, 255, 255, .6);
    font-size: 14px;
    line-height: 1.7;
}

/* ===== MAIN FOOTER ===== */
.dt-footer__main {
    padding: 72px 0 48px;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}
.dt-footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 48px;
}

/* Footer Column: Brand */
.dt-footer__brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    text-decoration: none;
}
.dt-footer__brand-logo img { height: 38px; width: auto; }
.dt-footer__brand-name {
    font-family: var(--dt-font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--dt-white);
}
.dt-footer__brand-name span { color: var(--dt-primary); }
.dt-footer__brand-desc {
    color: rgba(255, 255, 255, .45);
    font-size: 14px;
    line-height: 1.75;
    margin-bottom: 24px;
}
.dt-footer__social {
    display: flex;
    gap: 10px;
}
.dt-footer__social a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .45);
    transition: all .3s;
}
.dt-footer__social a:hover {
    border-color: var(--dt-primary);
    background: rgba(244, 134, 31, .1);
    color: var(--dt-primary);
}
.dt-footer__social svg { width: 16px; height: 16px; fill: currentColor; }

/* Footer Column: Links */
.dt-footer__heading {
    font-family: var(--dt-font-heading);
    font-size: 17px;
    font-weight: 600;
    color: var(--dt-white);
    margin-bottom: 20px;
}
.dt-footer__links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.dt-footer__links a {
    color: rgba(255, 255, 255, .45);
    text-decoration: none;
    font-size: 14px;
    transition: all .3s;
    display: flex;
    align-items: center;
    gap: 6px;
}
.dt-footer__links a:hover { color: var(--dt-primary); transform: translateX(3px); }
.dt-footer__links a::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    flex-shrink: 0;
    transition: background .3s;
}
.dt-footer__links a:hover::before { background: var(--dt-primary); }

/* Footer Column: Contact */
.dt-footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, .45);
    text-decoration: none;
    transition: color .3s;
}
a.dt-footer__contact-item:hover { color: var(--dt-primary); }
.dt-footer__contact-item:last-child { margin-bottom: 0; }
.dt-footer__contact-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .04);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}
.dt-footer__contact-icon svg {
    width: 16px;
    height: 16px;
    stroke: var(--dt-primary);
    fill: none;
    stroke-width: 2;
}
.dt-footer__contact-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .3);
    margin-bottom: 2px;
}
.dt-footer__contact-value {
    color: rgba(255, 255, 255, .6);
    font-size: 14px;
}

/* ===== FOOTER BOTTOM ===== */
.dt-footer__bottom {
    padding: 24px 0;
}
.dt-footer__bottom .dt-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}
.dt-footer__copy {
    font-size: 13px;
    color: rgba(255, 255, 255, .3);
}
.dt-footer__copy a { color: var(--dt-primary); text-decoration: none; }
.dt-footer__copy a:hover { text-decoration: underline; }
.dt-footer__bottom-links {
    display: flex;
    gap: 24px;
}
.dt-footer__bottom-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, .3);
    text-decoration: none;
    transition: color .3s;
}
.dt-footer__bottom-links a:hover { color: var(--dt-primary); }
.dt-footer__payments {
    display: flex;
    gap: 8px;
    align-items: center;
}
.dt-footer__payments img {
    height: 24px;
    width: auto;
    opacity: .4;
    transition: opacity .3s;
}
.dt-footer__payments img:hover { opacity: .7; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .dt-footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 768px) {
    .dt-footer__main { padding: 48px 0 32px; }
    .dt-footer__grid { grid-template-columns: 1fr; gap: 32px; }
    .dt-footer__bottom .dt-container { flex-direction: column; text-align: center; }
    .dt-footer__bottom-links { justify-content: center; }
    .dt-footer__payments { justify-content: center; }
}
