@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Nunito:wght@800&family=Poppins:wght@600;700;800&display=swap');

:root {
    --bc-accent: #dc2a6b;
    --bc-blue: #2e7dd1;
    --bc-purple: #6a3fb5;
    --bc-orange: #f58634;
    --bc-teal: #1fb6c9;
    --bc-page: #f6f7f9;
    --bc-surface: #ffffff;
    --bc-surface-soft: #f1f3f7;
    --bc-border: #e7eaf0;
    --bc-text: #1e2230;
    --bc-muted: #5b6273;
    --bc-subtle: #9aa1b2;
    --bc-footer: #171a24;
    --bc-radius-sm: 10px;
    --bc-radius-md: 16px;
    --bc-radius-lg: 24px;
    --bc-shadow: 0 18px 48px -8px rgba(46, 26, 74, 0.14);
    --bc-container: 1140px;
}

html.bc-home-shell .main-header,
html.bc-home-shell .main-footer,
html.bc-home-shell .map-modal-wrap {
    display: none !important;
}

html.bc-home-shell #wrapper {
    padding: 0 !important;
    margin: 0 !important;
}

html.bc-home-shell #main,
html.bc-home-shell #wrapper,
html.bc-home-shell body {
    background: var(--bc-page);
}

.bc-home-page,
.bc-home-page * {
    box-sizing: border-box;
}

.bc-home-page {
    min-height: 100vh;
    overflow: hidden;
    background: var(--bc-page);
    color: var(--bc-text);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    letter-spacing: 0;
}

.bc-home-page a {
    color: inherit;
    text-decoration: none;
}

.bc-home-page button {
    font: inherit;
}

.bc-container {
    width: min(var(--bc-container), calc(100% - 48px));
    margin: 0 auto;
}

.bc-header {
    position: sticky;
    top: 0;
    z-index: 40;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 76px;
    padding: 0 48px;
    background: var(--bc-surface);
    border-bottom: 1px solid rgba(231, 234, 240, 0.75);
}

.bc-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: max-content;
}

.bc-logo__mark {
    position: relative;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: conic-gradient(from 30deg, var(--bc-teal), var(--bc-blue), var(--bc-purple), var(--bc-accent), var(--bc-orange), var(--bc-teal));
}

.bc-logo__mark::before {
    content: "";
    position: absolute;
    inset: 6px;
    border-radius: inherit;
    background: var(--bc-surface);
}

.bc-logo__mark::after {
    content: "";
    position: absolute;
    left: 10px;
    top: 7px;
    width: 10px;
    height: 14px;
    border-radius: 10px 10px 10px 2px;
    background: linear-gradient(135deg, var(--bc-purple), var(--bc-accent));
    transform: rotate(45deg);
}

.bc-logo__word {
    color: var(--bc-text);
    font-family: Nunito, Inter, sans-serif;
    font-size: 22px;
    font-weight: 800;
    line-height: 1;
}

.bc-logo--dark .bc-logo__word {
    color: #ffffff;
}

.bc-nav {
    display: flex;
    align-items: center;
    gap: 34px;
}

.bc-nav a,
.bc-link-button {
    color: var(--bc-muted);
    font-size: 15px;
    font-weight: 600;
    transition: color 0.18s ease;
}

.bc-nav a:hover,
.bc-link-button:hover {
    color: var(--bc-text);
}

.bc-header__actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.bc-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 22px;
    border: 0;
    border-radius: var(--bc-radius-sm);
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.bc-button:hover {
    transform: translateY(-1px);
}

.bc-button--primary {
    color: #ffffff;
    background: var(--bc-accent);
    box-shadow: 0 12px 22px rgba(220, 42, 107, 0.22);
}

.bc-button--light {
    color: var(--bc-text);
    background: #ffffff;
}

.bc-button--ghost {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.32);
}

.bc-nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 1px solid var(--bc-border);
    border-radius: 12px;
    background: #ffffff;
}

.bc-nav-toggle span {
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: var(--bc-text);
}

.bc-hero {
    background: linear-gradient(90deg, #ffffff 0%, #f4f1fa 100%);
    padding: 72px 0 84px;
}

.bc-hero__inner {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 22px;
    max-width: 920px;
    text-align: center;
}

.bc-eyebrow,
.bc-mini-label,
.bc-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
}

.bc-eyebrow {
    padding: 7px 14px;
    color: var(--bc-muted);
    background: #ffffff;
    border: 1px solid var(--bc-border);
}

.bc-eyebrow i {
    color: var(--bc-accent);
}

.bc-hero h1,
.bc-section-head h2,
.bc-business-card h2 {
    margin: 0;
    color: var(--bc-text);
    font-family: Poppins, Inter, sans-serif;
    font-weight: 700;
    letter-spacing: 0;
}

.bc-hero h1 {
    max-width: 880px;
    font-size: 52px;
    line-height: 1.1;
}

.bc-hero__copy {
    max-width: 620px;
    margin: 0;
    color: var(--bc-muted);
    font-size: 18px;
    line-height: 1.5;
}

.bc-search-card {
    width: min(860px, 100%);
    overflow: hidden;
    border-radius: var(--bc-radius-lg);
    background: var(--bc-surface);
    box-shadow: var(--bc-shadow);
}

.bc-search-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 14px 16px 0;
}

.bc-search-tabs button {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 40px;
    padding: 0 16px;
    border: 0;
    border-radius: var(--bc-radius-sm);
    color: var(--bc-muted);
    background: transparent;
    font-weight: 700;
    cursor: pointer;
}

.bc-search-tabs button.is-active {
    color: var(--bc-text);
    background: var(--bc-surface-soft);
}

.bc-search-tabs button.is-active i {
    color: var(--bc-accent);
}

.bc-search-livewire {
    padding: 14px;
}

.bc-search-livewire .main-search-input-tabs,
.bc-search-livewire .tabs-container,
.bc-search-livewire .tab,
.bc-search-livewire .tab-content,
.bc-search-livewire .main-search-input-wrap,
.bc-search-livewire .main-search-input {
    float: none !important;
    width: 100% !important;
}

.bc-search-livewire .tabs-menu {
    display: none !important;
}

.bc-search-livewire .main-search-input {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
    align-items: center;
    gap: 0;
    min-height: 70px;
    padding: 0 !important;
    position: relative !important;
    overflow: visible !important;
    border: 1px solid var(--bc-border);
    border-radius: var(--bc-radius-md);
    background: #ffffff;
    box-shadow: none;
}

.bc-search-livewire .main-search-input-item {
    position: relative;
    display: flex;
    align-items: center;
    float: none !important;
    width: 100% !important;
    min-width: 0;
    height: auto !important;
    min-height: 70px;
    margin: 0 !important;
    padding: 0 18px !important;
    box-sizing: border-box !important;
    overflow: visible !important;
    border-right: 1px solid var(--bc-border);
}

.bc-search-livewire .main-search-input-item.location {
    border-right: 0;
}

.bc-search-livewire .main-search-input-item::before {
    display: none !important;
    content: none !important;
}

.bc-search-livewire .main-search-input-item label {
    position: static !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    min-width: 28px;
    height: 44px;
    margin: 0 8px 0 0;
    color: var(--bc-accent);
    line-height: 1;
    z-index: 3;
}

.bc-search-livewire .main-search-input-item label i {
    display: block;
    line-height: 1;
}

.bc-search-livewire .main-search-input input,
.bc-search-livewire .main-search-input select,
.bc-search-livewire .main-search-input .chosen-container,
.bc-search-livewire .main-search-input .chosen-single {
    width: 100% !important;
    height: 44px !important;
    border: 0 !important;
    background: transparent !important;
    color: var(--bc-text) !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    box-shadow: none !important;
}

.bc-search-livewire .main-search-input input[type="text"] {
    position: static !important;
    inset: auto !important;
    display: block !important;
    float: none !important;
    flex: 1 1 auto;
    width: 100% !important;
    min-width: 0;
    max-width: none !important;
    height: auto !important;
    min-height: 44px;
    padding: 0 !important;
    margin: 0 !important;
    line-height: 1.35 !important;
    pointer-events: auto !important;
    z-index: 2;
}

.bc-search-livewire .main-search-input > input[type="hidden"] {
    display: none !important;
}

.bc-search-livewire .main-search-input-item > a {
    display: none !important;
}

.bc-search-livewire .main-search-input input::placeholder {
    color: var(--bc-subtle);
}

.bc-search-livewire .main-search-input .chosen-single span {
    color: var(--bc-text);
}

.bc-search-livewire .main-search-button {
    position: static !important;
    width: auto !important;
    min-width: 150px;
    height: 70px !important;
    border: 0 !important;
    border-radius: 0 var(--bc-radius-md) var(--bc-radius-md) 0 !important;
    background: var(--bc-accent) !important;
    color: #ffffff !important;
    font-size: 15px !important;
    font-weight: 800 !important;
}

.bc-quick-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding-top: 6px;
}

.bc-quick-tags span {
    color: var(--bc-subtle);
    font-weight: 700;
}

.bc-quick-tags button {
    min-height: 34px;
    padding: 0 14px;
    border: 1px solid var(--bc-border);
    border-radius: 999px;
    color: var(--bc-muted);
    background: #ffffff;
    font-weight: 700;
    cursor: pointer;
}

.bc-section {
    padding: 80px 0;
    background: var(--bc-page);
}

.bc-section--white {
    background: #ffffff;
}

.bc-section-head {
    margin-bottom: 40px;
}

.bc-section-head--center {
    max-width: 760px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.bc-section-head--split {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
}

.bc-section-head--split > div:first-child {
    max-width: 680px;
}

.bc-section-head h2,
.bc-business-card h2 {
    font-size: 36px;
    line-height: 1.15;
}

.bc-section-head p {
    max-width: 560px;
    margin: 14px auto 0;
    color: var(--bc-muted);
    font-size: 17px;
    line-height: 1.5;
}

.bc-section-head--split p {
    margin-left: 0;
}

.bc-mini-label {
    margin-bottom: 12px;
    color: var(--bc-accent);
}

.bc-category-grid,
.bc-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.bc-feature-card,
.bc-step-card {
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-width: 0;
    border-radius: var(--bc-radius-lg);
}

.bc-feature-card {
    min-height: 390px;
    padding: 28px;
    border: 1px solid var(--bc-border);
    background: #ffffff;
}

.bc-feature-card h3,
.bc-step-card h3,
.bc-city-card h3 {
    margin: 0;
    color: var(--bc-text);
    font-family: Poppins, Inter, sans-serif;
    font-size: 21px;
    font-weight: 700;
    line-height: 1.25;
}

.bc-feature-card p,
.bc-step-card p,
.bc-city-card p {
    margin: 6px 0 0;
    color: var(--bc-muted);
    font-size: 15px;
    line-height: 1.5;
}

.bc-feature-card > a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: auto;
    color: var(--bc-accent);
    font-weight: 800;
}

.bc-icon-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: var(--bc-radius-md);
    font-size: 22px;
}

.bc-icon-box--rose {
    color: var(--bc-accent);
    background: #fce9f1;
}

.bc-icon-box--blue {
    color: var(--bc-blue);
    background: #e7f0fb;
}

.bc-icon-box--orange {
    color: var(--bc-orange);
    background: #fdeee0;
}

.bc-icon-box--purple {
    color: var(--bc-purple);
    background: #efe9f7;
}

.bc-check-list {
    display: grid;
    gap: 11px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.bc-check-list li {
    position: relative;
    padding-left: 24px;
    color: var(--bc-muted);
    font-size: 14px;
    font-weight: 600;
}

.bc-check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--bc-accent);
}

.bc-check-list li::after {
    content: "";
    position: absolute;
    left: 4px;
    top: 8px;
    width: 6px;
    height: 3px;
    border-left: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    transform: rotate(-45deg);
}

.bc-view-toggle {
    display: inline-flex;
    gap: 4px;
    padding: 5px;
    border: 1px solid var(--bc-border);
    border-radius: 999px;
    background: #ffffff;
}

.bc-view-toggle button {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 38px;
    padding: 0 16px;
    border: 0;
    border-radius: 999px;
    color: var(--bc-muted);
    background: transparent;
    font-weight: 800;
    cursor: pointer;
}

.bc-view-toggle button.is-active {
    color: #ffffff;
    background: var(--bc-text);
}

.bc-discover-grid {
    display: grid;
    grid-template-columns: minmax(0, 600px) minmax(0, 1fr);
    gap: 24px;
    min-height: 752px;
}

.bc-discover-grid[data-active-view] {
    grid-template-columns: 1fr;
}

.bc-discover-grid[data-active-view="list"] [data-bc-panel="map"],
.bc-discover-grid[data-active-view="map"] [data-bc-panel="list"] {
    display: none;
}

.bc-list-panel,
.bc-map-panel {
    overflow: hidden;
    border: 1px solid var(--bc-border);
    border-radius: var(--bc-radius-lg);
    background: #ffffff;
}

.bc-filter-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 20px;
    border-bottom: 1px solid var(--bc-border);
}

.bc-filter-bar strong {
    font-size: 15px;
}

.bc-filter-bar span {
    color: var(--bc-subtle);
    font-size: 13px;
    font-weight: 700;
}

.bc-recent-list {
    display: grid;
}

.bc-recent-card {
    display: grid;
    grid-template-columns: 168px minmax(0, 1fr);
    gap: 18px;
    padding: 18px 20px;
    border-bottom: 1px solid var(--bc-border);
    background: #ffffff;
    transition: background 0.18s ease, transform 0.18s ease;
}

.bc-recent-card:hover {
    background: #fbfcfe;
    transform: translateX(2px);
}

.bc-recent-card:last-child {
    border-bottom: 0;
}

.bc-recent-card img {
    width: 168px;
    height: 118px;
    border-radius: 16px;
    object-fit: cover;
}

.bc-recent-card__content {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 8px;
    justify-content: center;
}

.bc-recent-card__meta,
.bc-recent-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.bc-recent-card__meta span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--bc-accent);
    font-size: 12px;
    font-weight: 800;
}

.bc-recent-card__meta strong {
    padding: 5px 9px;
    border-radius: 999px;
    color: var(--bc-blue);
    background: #e7f0fb;
    font-size: 11px;
    font-weight: 800;
}

.bc-recent-card h3 {
    margin: 0;
    overflow: hidden;
    color: var(--bc-text);
    font-family: Poppins, Inter, sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.bc-recent-card p {
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    color: var(--bc-muted);
    font-size: 13.5px;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.bc-recent-card__footer {
    color: var(--bc-subtle);
    font-size: 13px;
    font-weight: 700;
}

.bc-recent-card__footer i {
    color: var(--bc-accent);
}

.bc-empty-state {
    display: grid;
    place-items: center;
    gap: 12px;
    min-height: 280px;
    padding: 32px;
    color: var(--bc-muted);
    text-align: center;
}

.bc-empty-state i {
    color: var(--bc-accent);
    font-size: 28px;
}

.bc-empty-state p {
    margin: 0;
    font-weight: 700;
}

.bc-list-panel .slw-sec,
.bc-popular section {
    padding: 0 !important;
    background: transparent !important;
}

.bc-list-panel .section-title,
.bc-popular .section-title,
.bc-list-panel .tc-pagination_wrap,
.bc-list-panel .listing-carousel-button,
.bc-popular .listing-filters,
.bc-popular .btn.dec_btn {
    display: none !important;
}

.bc-list-panel .listing-slider-wrap,
.bc-list-panel .listing-slider,
.bc-list-panel .swiper-container,
.bc-list-panel .swiper-wrapper,
.bc-list-panel .swiper-slide {
    float: none !important;
    width: 100% !important;
}

.bc-list-panel .swiper-wrapper {
    display: grid !important;
    gap: 0;
    transform: none !important;
}

.bc-list-panel .swiper-slide {
    border-bottom: 1px solid var(--bc-border);
}

.bc-list-panel .listing-slider-item,
.bc-list-panel .listing-item,
.bc-list-panel .geodir-category-listing {
    float: none !important;
    width: 100% !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.bc-list-panel .geodir-category-img {
    height: 168px !important;
}

.bc-list-panel .geodir-category-opt {
    background: linear-gradient(180deg, transparent, rgba(30, 34, 48, 0.8)) !important;
}

.bc-map-panel {
    position: relative;
    min-height: 752px;
    background: linear-gradient(145deg, #e9eeea 0%, #e5ebf2 100%);
}

.bc-map-panel::before,
.bc-map-panel::after {
    content: "";
    position: absolute;
    border-radius: 14px;
    background: #d7e7d2;
}

.bc-map-panel::before {
    left: -30px;
    top: -20px;
    width: 150px;
    height: 140px;
}

.bc-map-panel::after {
    right: -20px;
    bottom: 72px;
    width: 260px;
    height: 240px;
}

.bc-map-street {
    position: absolute;
    z-index: 1;
    background: rgba(255, 255, 255, 0.88);
}

.bc-map-street--h1 {
    left: 0;
    top: 180px;
    width: 100%;
    height: 16px;
}

.bc-map-street--h2 {
    left: 0;
    top: 400px;
    width: 100%;
    height: 14px;
}

.bc-map-street--v1 {
    left: 32%;
    top: 0;
    width: 15px;
    height: 100%;
}

.bc-map-street--v2 {
    left: 68%;
    top: 0;
    width: 13px;
    height: 100%;
}

.bc-map-river {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(110deg, transparent 0 38%, rgba(199, 222, 236, 0.95) 39% 48%, transparent 49% 100%);
    opacity: 0.9;
}

.bc-map-pin {
    position: absolute;
    z-index: 4;
    width: 30px;
    height: 30px;
    border: 3px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 3px 8px rgba(30, 34, 48, 0.2);
}

.bc-map-pin::after {
    content: "";
    position: absolute;
    inset: 7px;
    border-radius: inherit;
    background: #ffffff;
}

.bc-map-pin--blue {
    left: 21%;
    top: 33%;
    background: var(--bc-blue);
}

.bc-map-pin--orange {
    right: 20%;
    bottom: 20%;
    background: var(--bc-orange);
}

.bc-map-pin--purple {
    right: 16%;
    top: 20%;
    background: var(--bc-purple);
}

.bc-map-pin--rose {
    left: 43%;
    top: 28%;
    background: var(--bc-accent);
}

.bc-map-pin--large {
    width: 44px;
    height: 44px;
    border-width: 4px;
}

.bc-map-action,
.bc-map-popup,
.bc-map-zoom {
    position: absolute;
    z-index: 5;
    background: #ffffff;
    box-shadow: 0 10px 28px rgba(30, 34, 48, 0.2);
}

.bc-map-action {
    top: 18px;
    left: 50%;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 999px;
    color: var(--bc-text);
    font-size: 13px;
    font-weight: 800;
    transform: translateX(-50%);
}

.bc-map-action i {
    color: var(--bc-purple);
}

.bc-map-popup {
    left: 34%;
    top: 70px;
    width: 230px;
    overflow: hidden;
    border-radius: var(--bc-radius-md);
}

.bc-map-popup img {
    display: block;
    width: 100%;
    height: 104px;
    object-fit: cover;
}

.bc-map-popup div {
    display: grid;
    gap: 6px;
    padding: 14px;
}

.bc-map-popup strong {
    font-size: 15px;
}

.bc-map-popup span {
    color: var(--bc-muted);
    font-size: 13px;
    font-weight: 700;
}

.bc-map-popup i {
    color: var(--bc-orange);
}

.bc-map-zoom {
    top: 18px;
    right: 18px;
    overflow: hidden;
    border: 1px solid var(--bc-border);
    border-radius: var(--bc-radius-sm);
    box-shadow: none;
}

.bc-map-zoom span {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    color: var(--bc-text);
    font-size: 20px;
    font-weight: 700;
}

.bc-map-zoom span + span {
    border-top: 1px solid var(--bc-border);
}

.bc-city-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.bc-city-card {
    overflow: hidden;
    border-radius: var(--bc-radius-lg);
    background: #ffffff;
    border: 1px solid var(--bc-border);
    box-shadow: 0 18px 45px rgba(30, 34, 48, 0.06);
}

.bc-city-card img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.bc-city-card__body {
    display: grid;
    gap: 8px;
    padding: 20px;
}

.bc-city-card span {
    width: fit-content;
    padding: 6px 10px;
    border-radius: 999px;
    color: var(--bc-accent);
    background: #fce9f1;
    font-size: 12px;
    font-weight: 800;
}

.bc-step-card {
    padding: 30px;
    background: var(--bc-page);
}

.bc-step-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bc-step-card__top strong {
    color: #e7f0fb;
    font-family: Poppins, Inter, sans-serif;
    font-size: 34px;
    font-weight: 800;
}

.bc-step-card:nth-child(2) .bc-step-card__top strong {
    color: #efe9f7;
}

.bc-step-card:nth-child(3) .bc-step-card__top strong {
    color: #fce9f1;
}

.bc-popular {
    background: #ffffff;
    padding-top: 0;
}

.bc-popular .container,
.bc-popular .big-container {
    width: 100% !important;
    max-width: none !important;
    padding: 0 !important;
}

.bc-popular .grid-item-holder,
.bc-popular .gallery-items,
.bc-popular .row {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    float: none !important;
    width: 100% !important;
}

.bc-popular .gallery-item {
    position: static !important;
    float: none !important;
    width: 100% !important;
    padding: 0 !important;
}

.bc-popular .listing-item,
.bc-popular .geodir-category-listing {
    float: none !important;
    width: 100% !important;
    margin: 0 !important;
    border-radius: var(--bc-radius-lg) !important;
    overflow: hidden !important;
    box-shadow: 0 18px 45px rgba(30, 34, 48, 0.08) !important;
}

.bc-business {
    padding-top: 80px;
}

.bc-business-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 48px;
    align-items: center;
    padding: 56px;
    overflow: hidden;
    border-radius: var(--bc-radius-lg);
    background: linear-gradient(105deg, var(--bc-purple) 0%, var(--bc-accent) 55%, var(--bc-orange) 100%);
}

.bc-business-card h2 {
    max-width: 580px;
    color: #ffffff;
    font-size: 34px;
}

.bc-business-card p {
    max-width: 520px;
    margin: 14px 0 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 16px;
    line-height: 1.55;
}

.bc-business-card__content {
    display: grid;
    gap: 18px;
}

.bc-business-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 6px;
}

.bc-pill {
    padding: 7px 14px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
}

.bc-stat-list {
    display: grid;
    gap: 14px;
}

.bc-stat {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    padding: 16px;
    border-radius: var(--bc-radius-md);
    background: rgba(255, 255, 255, 0.15);
}

.bc-stat > i {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: var(--bc-radius-sm);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.2);
    font-size: 18px;
}

.bc-stat strong {
    display: block;
    color: #ffffff;
    font-family: Poppins, Inter, sans-serif;
    font-size: 22px;
    line-height: 1.1;
}

.bc-stat span {
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
    line-height: 1.4;
}

.bc-footer {
    padding: 64px 0 28px;
    background: var(--bc-footer);
}

.bc-footer__top {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    padding-bottom: 40px;
}

.bc-footer__brand {
    display: grid;
    gap: 16px;
    width: 320px;
}

.bc-footer__brand p {
    margin: 0;
    color: var(--bc-subtle);
    font-size: 14.5px;
    line-height: 1.55;
}

.bc-socials {
    display: flex;
    gap: 10px;
    padding-top: 6px;
}

.bc-socials a {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: var(--bc-radius-sm);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

.bc-footer__links {
    display: grid;
    grid-template-columns: repeat(4, max-content);
    gap: 64px;
}

.bc-footer__links div {
    display: grid;
    gap: 14px;
}

.bc-footer__links h3 {
    margin: 0;
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.bc-footer__links a {
    color: var(--bc-subtle);
    font-size: 14.5px;
}

.bc-footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #787f90;
    font-size: 13.5px;
}

@media (max-width: 1180px) {
    .bc-header {
        padding: 0 24px;
    }

    .bc-container {
        width: min(var(--bc-container), calc(100% - 32px));
    }

    .bc-nav {
        gap: 18px;
    }

    .bc-discover-grid {
        grid-template-columns: 1fr;
    }

    .bc-map-panel {
        min-height: 560px;
    }

    .bc-footer__top,
    .bc-business-card {
        grid-template-columns: 1fr;
    }

    .bc-footer__top {
        flex-direction: column;
    }

    .bc-footer__links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .bc-header {
        min-height: 68px;
        flex-wrap: wrap;
        gap: 12px;
        padding: 13px 16px;
    }

    .bc-nav-toggle {
        display: inline-flex;
        margin-left: auto;
    }

    .bc-nav,
    .bc-header__actions {
        display: none;
        width: 100%;
    }

    .bc-header.is-open .bc-nav,
    .bc-header.is-open .bc-header__actions {
        display: flex;
    }

    .bc-header.is-open .bc-nav {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
        padding-top: 10px;
    }

    .bc-header.is-open .bc-header__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .bc-hero {
        padding: 48px 0 56px;
    }

    .bc-hero h1 {
        font-size: 38px;
        line-height: 1.14;
    }

    .bc-hero__copy {
        font-size: 16px;
    }

    .bc-search-livewire .main-search-input {
        grid-template-columns: 1fr;
        overflow: hidden;
    }

    .bc-search-livewire .main-search-input-item {
        border-right: 0;
        border-bottom: 1px solid var(--bc-border);
    }

    .bc-search-livewire .main-search-button {
        width: 100% !important;
        border-radius: 0 0 var(--bc-radius-md) var(--bc-radius-md) !important;
    }

    .bc-category-grid,
    .bc-steps,
    .bc-city-grid,
    .bc-popular .grid-item-holder,
    .bc-popular .gallery-items,
    .bc-popular .row {
        grid-template-columns: 1fr;
    }

    .bc-section {
        padding: 56px 0;
    }

    .bc-section-head--split {
        align-items: flex-start;
        flex-direction: column;
    }

    .bc-business-card {
        padding: 32px 24px;
    }
}

@media (max-width: 640px) {
    .bc-container {
        width: min(100% - 24px, var(--bc-container));
    }

    .bc-hero h1 {
        font-size: 31px;
    }

    .bc-section-head h2,
    .bc-business-card h2 {
        font-size: 28px;
    }

    .bc-feature-card,
    .bc-step-card {
        padding: 22px;
    }

    .bc-map-panel {
        min-height: 420px;
    }

    .bc-map-popup {
        left: 18px;
        top: 70px;
        width: 210px;
    }

    .bc-recent-card {
        grid-template-columns: 1fr;
        padding: 16px;
    }

    .bc-recent-card img {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
    }

    .bc-footer__links {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .bc-footer__bottom {
        flex-direction: column;
    }
}
