/* ================================
   BUSINESS SECTION EXTRA CSS
   Card design unchanged
================================ */

.business-item {
    display: none;
}

.business-item.show {
    display: block;
    animation: businessCardReveal 0.45s ease both;
}

@keyframes businessCardReveal {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.business-card div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.business-card span {
    display: block;
}

/* ================================
   EXPLORE BUTTON
================================ */

.business-explore-btn {
    position: relative;
    isolation: isolate;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    min-width: 150px;
    height: 54px;
    margin-top: 24px;
    padding: 7px 7px 7px 22px;
    border-radius: 999px;
    text-decoration: none;
    overflow: hidden;
    color: #ffffff;
    background: linear-gradient(135deg, #28d9e4, #64f184);
    border: 1px solid rgba(255, 255, 255, 0.28);
    box-shadow:
        0 18px 44px rgba(32, 217, 232, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.34);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.business-explore-btn::before {
    content: "";
    position: absolute;
    inset: 3px;
    z-index: -2;
    border-radius: inherit;
    background: linear-gradient(
        135deg,
        rgba(1, 25, 34, 0.2),
        rgba(1, 25, 34, 0.04)
    );
    transition: opacity 0.3s ease;
}

.business-explore-btn::after {
    content: "";
    position: absolute;
    top: -45%;
    left: -75%;
    z-index: -1;
    width: 55%;
    height: 190%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.55),
        transparent
    );
    transform: rotate(22deg);
    transition: left 0.65s ease;
}

.business-explore-label {
    position: relative;
    z-index: 2;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 950;
    line-height: 1;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    text-shadow: 0 1px 10px rgba(0, 19, 27, 0.42);
}

.business-explore-icon {
    position: relative;
    z-index: 2;
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    border-radius: 50%;
    background: #08293a;
    color: #c9faff;
    box-shadow:
        0 10px 24px rgba(0, 0, 0, 0.28),
        inset 0 0 0 1px rgba(255, 255, 255, 0.12);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
    transform: translateZ(0);
    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease;
}

.business-explore-icon svg {
    display: block;
    width: 21px;
    height: 21px;
    stroke: currentColor;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.business-explore-btn:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.44);
    box-shadow:
        0 26px 66px rgba(32, 217, 232, 0.38),
        0 0 30px rgba(105, 231, 111, 0.22);
}

.business-explore-btn:hover::after {
    left: 120%;
}

.business-explore-btn:hover .business-explore-icon {
    transform: translateX(5px) rotate(-10deg);
    background: #00131b;
    color: #ffffff;
}

.business-explore-btn:focus-visible {
    outline: 3px solid rgba(32, 217, 232, 0.55);
    outline-offset: 4px;
}

/* ================================
   PAGINATION
================================ */

.business-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 42px;
    flex-wrap: wrap;
}

.business-page-btn,
.business-page-arrow {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.075);
    color: #ffffff;
    cursor: pointer;
    font: inherit;
    font-weight: 900;
    transition:
        transform 0.25s ease,
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.business-page-arrow {
    font-size: 20px;
}

.business-page-btn:hover,
.business-page-arrow:hover,
.business-page-btn.active {
    color: #00131b;
    border-color: transparent;
    background: linear-gradient(135deg, var(--cyan), var(--green));
    transform: translateY(-3px);
    box-shadow: 0 14px 34px rgba(32, 217, 232, 0.22);
}

.business-page-arrow:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    transform: none;
    background: rgba(255, 255, 255, 0.04);
    color: #ffffff;
    border-color: var(--line);
    box-shadow: none;
}

/* ================================
   RESPONSIVE
================================ */

@media (max-width: 640px) {
    .business-explore-btn {
        width: 100%;
        height: 56px;
        justify-content: space-between;
        margin-top: 22px;
    }

    .business-explore-label {
        font-size: 13px;
    }

    .business-explore-icon {
        flex-basis: 42px;
        width: 42px;
        height: 42px;
        min-width: 42px;
        min-height: 42px;
    }

    .business-explore-icon svg {
        width: 22px;
        height: 22px;
    }

    .business-pagination {
        margin-top: 30px;
        gap: 8px;
    }

    .business-page-btn,
    .business-page-arrow {
        width: 40px;
        height: 40px;
        font-size: 13px;
    }

    .business-page-arrow {
        font-size: 18px;
    }
}