/* =========================================
   FOOTER - VELO LUXURY FOOTER
========================================= */

.velo-footer {
    position: relative;
    overflow: hidden;
    padding: clamp(64px, 6vw, 92px) 0 34px;
    border-top: 1px solid rgba(7, 16, 31, 0.08);
    background:
        radial-gradient(circle at 12% 0%, rgba(69, 217, 255, 0.1), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
    color: #07101f;
}

.velo-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.72), transparent 54%),
        linear-gradient(35deg, rgba(69, 217, 255, 0.045) 1px, transparent 1px);
    background-size: auto, 180px 180px;
}

.velo-footer__inner {
    position: relative;
    z-index: 1;
}

.velo-footer__grid {
    display: grid;
    grid-template-columns: minmax(280px, 1.45fr) minmax(150px, 0.75fr) minmax(190px, 0.9fr) minmax(260px, 1fr);
    gap: clamp(36px, 5vw, 86px);
    align-items: start;
}

/* Brand */
.velo-footer__brand {
    max-width: 430px;
}

.velo-footer__logo-link {
    display: inline-flex;
    align-items: center;
    line-height: 0;
    text-decoration: none;
}

.velo-footer__logo {
    display: block;
    width: clamp(150px, 12vw, 215px);
    height: auto;
    max-height: 78px;
    object-fit: contain;
    margin-bottom: 28px;
}

.velo-footer__brand p {
    max-width: 360px;
    margin: 0;

    font-size: clamp(0.98rem, 1vw, 1.08rem);
    font-weight: 500;
    line-height: 1.72;

    color: rgba(28, 49, 72, 0.76);
}

/* Columns */
.velo-footer__column h2 {
    margin: 0 0 24px;

    font-family: "Jura", Arial, sans-serif;
    font-size: clamp(0.92rem, 0.95vw, 1.08rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.12em;
    text-transform: uppercase;

    color: #07101f;
}

.velo-footer__list,
.velo-footer__contact-list {
    display: grid;
    gap: 12px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.velo-footer__list li,
.velo-footer__contact-list li {
    padding: 0;
    margin: 0;
}

.velo-footer__list a,
.velo-footer__contact-list a,
.velo-footer__contact-list span {
    font-family: "Bai Jamjuree", Arial, sans-serif;
    font-size: clamp(0.95rem, 0.95vw, 1.08rem);
    font-weight: 500;
    line-height: 1.45;
    color: rgba(28, 49, 72, 0.82);
    text-decoration: none;
}

.velo-footer__list a {
    position: relative;
    display: inline-flex;
    width: fit-content;
    transition:
        color 0.25s ease,
        transform 0.25s ease,
        text-shadow 0.25s ease;
}

.velo-footer__list a:hover {
    color: #008fe8;
    text-shadow: 0 0 16px rgba(69, 217, 255, 0.26);
    transform: translateX(4px);
}

/* Contact */
.velo-footer__contact-list {
    gap: 16px;
}

.velo-footer__contact-list li {
    display: grid;
    grid-template-columns: 26px 1fr;
    gap: 14px;
    align-items: start;
}

.velo-footer__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 26px;
    height: 26px;
    color: #07101f;
}

.velo-footer__icon svg,
.velo-footer__socials svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.velo-footer__contact a {
    transition:
        color 0.25s ease,
        text-shadow 0.25s ease;
}

.velo-footer__contact a:hover {
    color: #008fe8;
    text-shadow: 0 0 16px rgba(69, 217, 255, 0.24);
}

/* Socials */
.velo-footer__socials {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-top: 34px;
}

.velo-footer__socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;

    color: #07101f;
    text-decoration: none;

    transition:
        color 0.25s ease,
        transform 0.25s ease,
        filter 0.25s ease;
}

.velo-footer__socials a:hover {
    color: #008fe8;
    transform: translateY(-2px);
    filter: drop-shadow(0 0 12px rgba(69, 217, 255, 0.35));
}

/* Bottom */
.velo-footer__bottom {
    margin-top: clamp(42px, 5vw, 68px);
    padding-top: 26px;
    border-top: 1px solid rgba(7, 16, 31, 0.12);
    text-align: center;
}

.velo-footer__bottom p {
    margin: 0;

    font-family: "Jura", Arial, sans-serif;
    font-size: clamp(0.78rem, 0.82vw, 0.95rem);
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;

    color: rgba(7, 16, 31, 0.58);
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1100px) {
    .velo-footer__grid {
        grid-template-columns: 1.4fr 1fr;
        gap: 46px 64px;
    }

    .velo-footer__brand {
        max-width: 480px;
    }
}

@media (max-width: 720px) {
    .velo-footer {
        padding: 58px 0 30px;
    }

    .velo-footer__grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .velo-footer__brand,
    .velo-footer__brand p {
        max-width: 100%;
    }

    .velo-footer__logo {
        width: 165px;
        max-height: 68px;
        margin-bottom: 22px;
    }

    .velo-footer__column h2 {
        margin-bottom: 18px;
    }

    .velo-footer__socials {
        margin-top: 26px;
    }

    .velo-footer__bottom {
        text-align: left;
    }

    .velo-footer__bottom p {
        line-height: 1.6;
    }
}