/* ===== NEW FOOTER DESIGN ===== */
.section-conversion {
    padding: 8rem 5% 4rem !important;
    width: 100% !important;
    box-sizing: border-box !important;
    position: relative !important;
    overflow: hidden;
}

.section-conversion::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.84) 28%, rgba(255, 255, 255, 0.34) 62%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
    pointer-events: none;
}

.travel-dreams-parent,
.stip {
    position: relative;
    z-index: 2;
}

.stip {
    color: rgba(1, 40, 48, 0.72);
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.stip-track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 22s linear infinite;
    will-change: transform;
}

.item-heading {
    color: rgba(1, 40, 48, 0.72);
}



.item-heading {
    display: flex;
    align-items: center;
    gap: 1rem;
    line-height: 1;
    white-space: nowrap;
    min-height: 1.5rem;
    width: max-content;
}

.item-heading-piece,
.item-heading-sep {
    display: inline-flex;
    align-items: center;
    line-height: 1;
    white-space: nowrap;
}

.item-heading-piece {
    letter-spacing: 0.01em;
}

.item-heading-sep {
    opacity: 0.7;
    margin: 0 0.25rem;
}

.site-footer-bar {
    background-color: #000;
    color: #fff;
    padding: 4rem 5% 2rem;
    font-family: 'Inter', sans-serif;
    width: 100% !important;
    box-sizing: border-box !important;
}


.footer-inner-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 3rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-col-heading {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    margin: 0 0 1.5rem 0;
    text-transform: capitalize;
}

.footer-nav-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-nav-links a:hover {
    color: #ddd;
}

.footer-social-icons {
    display: flex;
    gap: 1rem;
}

.footer-social-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #fff;
    transition: all 0.3s ease;
}

.footer-social-circle:hover {
    background-color: #fff;
}

.footer-social-circle:hover svg,
.footer-social-circle:hover svg path {
    fill: #000;
    stroke: #000;
}

.footer-bottom-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 1.5rem auto 0;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
}

@media screen and (max-width: 768px) {
    .site-footer-bar {
        padding: 3rem 2rem 1.5rem;
    }

    .footer-inner-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-bottom-bar {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        text-align: center;
    }

    .footer-bottom-middle {
        display: none;
    }
}