/* ═══════════════════════════════════════════════════════
   FOOTER — Cardiwan Car Rental  (nft-)
   ═══════════════════════════════════════════════════════ */

.nft-bg-wrap, .nft-footer, .nft-wa,
.nft-bg-wrap *, .nft-footer *, .nft-wa * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ═══════════════════════════════════════
   FOOTER SHELL
   ═══════════════════════════════════════ */
.nft-footer {
    background: #0f0f0f;
    position: relative;
    overflow: hidden;
}

/* Background image */
.nft-bg-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
    line-height: 0;
}
.nft-bg-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center top;
}
.nft-bg-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(8, 8, 8, 0.88) 0%,
        rgba(8, 8, 8, 0.84) 70%,
        rgba(8, 8, 8, 0.95) 100%
    );
}

/* All content above the bg */
.nft-inner,
.nft-bottom-wrap {
    position: relative;
    z-index: 1;
}

/* ═══════════════════════════════════════
   SCROLL REVEAL
   ═══════════════════════════════════════ */
.nft-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s cubic-bezier(.4,0,.2,1),
                transform 0.65s cubic-bezier(.4,0,.2,1);
}
.nft-reveal.nft-in {
    opacity: 1;
    transform: translateY(0);
}
.nft-d1 { transition-delay: 0.12s; }
.nft-d2 { transition-delay: 0.24s; }

/* ═══════════════════════════════════════
   INNER GRID
   ═══════════════════════════════════════ */
.nft-inner {
    max-width: 1500px;
    margin: 0 auto;
    padding: 72px 5% 56px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.3fr 1fr;
    gap: 50px;
    align-items: start;
}

/* ── Brand column ── */
.nft-logo-link { display: inline-block; margin-bottom: 20px; }
.nft-logo {
    width: 68px;
    height: 68px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    display: block;
}
.nft-desc {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 24px;
}

/* Social icons row */
.nft-social {
    display: flex;
    gap: 10px;
    align-items: center;
}
.nft-soc-btn {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: border-color 0.25s, color 0.25s, background 0.25s;
    flex-shrink: 0;
}
.nft-soc-btn:hover {
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}
.nft-soc-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* ── Column headings ── */
.nft-col-title {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 28px;
    padding-bottom: 14px;
    position: relative;
}
.nft-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 2px;
}

/* ── Quick links ── */
.nft-links {
    list-style: none;
    padding: 0;
}
.nft-links li {
    margin-bottom: 12px;
}
.nft-links a {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.22s, gap 0.22s;
}
.nft-links a::before {
    content: '';
    display: inline-block;
    width: 14px;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    transition: width 0.22s, background 0.22s;
    flex-shrink: 0;
}
.nft-links a:hover {
    color: #fff;
    gap: 12px;
}
.nft-links a:hover::before {
    width: 20px;
    background: rgba(255, 255, 255, 0.7);
}

/* ── Contact list ── */
.nft-contact-list {
    list-style: none;
    padding: 0;
}
.nft-ci {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
}
.nft-ci-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}
.nft-ci-icon svg {
    width: 16px;
    height: 16px;
    color: rgba(255, 255, 255, 0.5);
    fill: rgba(255, 255, 255, 0.5);
}
.nft-ci a,
.nft-ci span {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color 0.2s;
    word-break: break-word;
}
.nft-ci a:hover { color: #fff; }

/* ── Bottom copyright bar ── */
.nft-bottom-wrap {
    position: relative;
    z-index: 1;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 5%;
}
.nft-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 22px 0 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.nft-bottom p {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.28);
    text-align: center;
}

/* ═══════════════════════════════════════
   WHATSAPP FLOAT
   ═══════════════════════════════════════ */
.nft-wa {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s cubic-bezier(.34,1.56,.64,1), box-shadow 0.3s ease;
}
.nft-wa:hover {
    transform: scale(1.12);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.55);
}
.nft-wa svg {
    width: 28px;
    height: 28px;
    fill: #fff;
    color: #fff;
}

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 1024px) {
    .nft-inner {
        gap: 48px;
    }
}

@media (max-width: 900px) {
    .nft-inner {
        grid-template-columns: 1fr 1fr;
        gap: 40px 48px;
        padding: 60px 5% 48px;
    }
    .nft-brand {
        grid-column: 1 / -1;
    }
    .nft-desc { max-width: 520px; }
}

@media (max-width: 600px) {
    .nft-inner {
        grid-template-columns: 1fr;
        padding: 48px 6% 40px;
        gap: 36px;
        text-align: center;
    }
    .nft-desc { max-width: 100%; }
    .nft-logo-link { display: block; text-align: center; }
    .nft-logo { margin: 0 auto 20px; }
    .nft-social { justify-content: center; }
    .nft-col-title { text-align: center; }
    .nft-col-title::after { left: 50%; transform: translateX(-50%); }
    .nft-links a { justify-content: center; }
    .nft-ci { justify-content: center; }
    .nft-ci a, .nft-ci span { text-align: center; }
    .nft-bottom { padding: 18px 0 24px; }
    .nft-wa {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 16px;
    }
    .nft-wa svg { width: 24px; height: 24px; }
}

@media (max-width: 400px) {
    .nft-inner { padding: 40px 5% 36px; }
    .nft-col-title { font-size: 11px; }
    .nft-links a, .nft-ci a, .nft-ci span { font-size: 13px; }
}
