.tab-container {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}

.tablinks {
    flex: 1 1 100%;
    padding: 10px 15px;
    cursor: pointer;
    border: none;
    background-color: #f1f1f1;
    text-align: left;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.tablinks:hover {
    background-color: #e0e0e0;
    /* transform: scale(1.02); */
}

.tablinks.active {
    background-color: var(--brand-color);
    /* transform: scale(1.05); */
    color: white;
}

.toggle-sign {
    display: inline-block;
    transition: transform 0.3s ease;
}

.tablinks.active .toggle-sign {
    transform: rotate(180deg);
}

.tabcontent {
    padding: 15px;
    border: 1px solid #ccc;
    margin: 10px 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    box-shadow: none;
    opacity: 0;
    visibility: hidden;
    display: none; /* Ensure it's hidden by default */
}

.tabcontent.active {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    display: block; /* Show when active */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width:479px) {
    .footer-links {
        font-size: 14px;
    }
    .tabcontent.active {
        width: 100%;
    }
}

@media screen and (max-width:767px) and (min-width:480px) {
    .footer-links {
        display: flex;
        font-size: 14px;
        line-height: 1.6;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .footer-column {
        width: 48%;
        padding: 0px 4px;
        box-sizing: border-box;
    }
}

@media (min-width:768px) {
    .tab {
        display: flex;
        flex-wrap: nowrap;
    }

    .tablinks {
        flex: 1 1 auto;
    }

    .footer-links {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
    }

    .footer-column {
        flex: 0 0 100%;
        max-width: 280px;
    }

    .footer-column ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-column li {
        margin-bottom: 5px;
    }

    .toggle-sign {
        display: none; /* Hide toggle signs on desktop */
    }
}

@media (max-width:767px) {
    .tab {
        display: flex;
        flex-wrap: wrap;
    }

    .toggle-sign {
        float: right;
    }

    .tabcontent {
        padding: 15px;
        font-size: 13px;
        opacity: 0;
        transform: translateY(-10px);
        transition: opacity 0.3s ease, transform 0.3s ease;
        visibility: hidden;
        display: none;
    }
}

.near-hotels {
    margin: 12px;
}
