﻿
:root {
    --vc-bg: #101a2c;
    --vc-card-bg: #16223a;
    --vc-border: rgba(255,255,255,.08);

    --vc-accent: #f97316;
    --vc-accent-hover: #ea580c;
    --vc-accent-soft: rgba(249,115,22,.14);
    --vc-accent-gradient: linear-gradient(180deg, var(--vc-accent), #fb923c);

    --vc-text: #f8fafc;
    --vc-text-dim: rgba(248,250,252,.68);
    --vc-text-dimmer: rgba(248,250,252,.5);

    --vc-font-display: 'Clash Display', 'DM Sans', 'Poppins', sans-serif;
    --vc-font-body: 'DM Sans', 'Poppins', sans-serif;

    --vc-radius-sm: 8px;
    --vc-radius-md: 12px;
}

.container {
    max-width: 85% !important;
}

.vc-footer {
    background: var(--vc-bg);
    color: var(--vc-text-dim);
    font-family: var(--vc-font-body);
    font-size: .9rem;
}

.vc-footer-body {
    padding: 3.5rem 0 2.75rem;
}

/* ── Link / info cards */
.vc-footer-card {
    background: var(--vc-card-bg);
    border: 1px solid var(--vc-border);
    border-radius: var(--vc-radius-md);
    padding: 1.9rem 1.7rem;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 26px rgba(0,0,0,.22);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

    .vc-footer-card:hover {
        transform: translateY(-4px);
        border-color: rgba(249,115,22,.3);
        box-shadow: 0 16px 34px rgba(0,0,0,.3);
    }

/* Logo card */
.vc-footer-logo {
    height: 64px;
    display: block;
}

.vc-footer-tagline {
    display: flex;
    flex-direction: column; /* Show items one below another */
    align-items: flex-start;
    gap: 4px;
    line-height: 1.5;
    color: var(--vc-text-dimmer);
}

    .vc-footer-tagline span:first-child {
        font-weight: 400;
        
        text-transform: uppercase;
    }

    .vc-footer-tagline span:last-child {
        font-size: .85rem;
    }

/* Headings */
.vc-footer-heading {
    font-family: var(--vc-font-display);
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 1.4rem;
}

/* Links */
.vc-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .vc-footer-links li {
        margin-bottom: .8rem;
    }

        .vc-footer-links li:last-child {
            margin-bottom: 0;
        }

    .vc-footer-links a {
        color: var(--vc-text-dim);
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 7px;
        transition: color .18s, padding-left .18s;
    }

        .vc-footer-links a i {
            font-size: 11px;
            color: var(--vc-accent);
            transition: transform .18s;
        }

        .vc-footer-links a:hover {
            color: var(--vc-accent);
            padding-left: 4px;
        }

            .vc-footer-links a:hover i {
                transform: translateX(2px);
            }

/* Contact */
.vc-contact-item {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: .9rem;
}

    .vc-contact-item:last-child {
        margin-bottom: 0;
    }

    .vc-contact-item i {
        width: 30px;
        height: 30px;
        border-radius: var(--vc-radius-sm);
        background: var(--vc-accent-soft);
        color: var(--vc-accent);
        font-size: .95rem;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .vc-contact-item a {
        color: var(--vc-text-dim);
        text-decoration: none;
        transition: color .18s;
    }

        .vc-contact-item a:hover {
            color: var(--vc-accent);
        }

/* ── Bottom bar ───────────────────────────────────────────────────────── */
.vc-footer-bottom {
    border-top: 1px solid var(--vc-border);
    padding: 1.5rem 0;
    font-size: .82rem;
    color: var(--vc-text-dimmer);
}

    .vc-footer-bottom a {
        color: var(--vc-text-dim);
        transition: color .18s;
    }

        .vc-footer-bottom a:hover {
            color: var(--vc-accent);
        }

.vc-social {
    display: flex;
    align-items: center;
    gap: 8px;
}

.vc-social-btn {
    width: 34px;
    height: 34px;
    border-radius: var(--vc-radius-sm);
    background: rgba(255,255,255,.07);
    border: 1px solid var(--vc-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--vc-text-dim);
    transition: all .22s;
}

    .vc-social-btn:hover {
        background: var(--vc-accent);
        border-color: var(--vc-accent);
        color: #fff;
        transform: translateY(-2px);
    }
.vc-social a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--vc-text-dim);
    text-decoration: none;
    transition: color .2s ease;
}

    .vc-social a:hover {
        color: var(--vc-accent);
    }

.vc-footer-tagline-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--vc-accent);
    flex-shrink: 0;
    display: inline-block;
}
.vc-footer-heart {
    color: var(--vc-accent);
}


@media (max-width: 991.98px) {
    .vc-footer-card {
        padding: 1.7rem 1.5rem;
    }
}

/* Mobile */
@media (max-width: 767.98px) {
    .vc-footer-body {
        padding: 2.5rem 0 2rem;
    }

    .vc-footer-card {
        padding: 1.5rem 1.25rem;
    }

    .vc-footer-bottom {
        text-align: center;
    }
}

/* Reduced-motion */
@media (prefers-reduced-motion: reduce) {
    .vc-footer-card,
    .vc-footer-links a,
    .vc-footer-links a i,
    .vc-social-btn {
        transition: none;
    }
}