:root {
    --blue: #1e66ff;
    --navy: #0f172a;
    --dark: #111827;
    --muted: #64748b;
    --light: #f6f8fc;
    --white: #ffffff;
    --border: #e5e7eb;
    --shadow: 0 22px 55px rgba(15, 23, 42, 0.12);
    --radius: 24px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Inter, Arial, sans-serif;
    background: var(--light);
    color: var(--dark);
}

a {
    text-decoration: none;
    color: inherit;
}

.rj-header {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 50;
}

.rj-nav {
    max-width: 1240px;
    margin: auto;
    padding: 14px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.rj-logo img {
    height: 46px;
    display: block;
}

.rj-nav nav {
    display: flex;
    align-items: center;
    gap: 26px;
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
}

.nav-btn,
.cta-btn {
    background: var(--blue);
    color: white;
    padding: 13px 20px;
    border-radius: 999px;
    font-weight: 800;
    box-shadow: 0 12px 28px rgba(30,102,255,0.25);
}

.hero {
    min-height: 560px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 90px 22px;
    overflow: hidden;
    background:
            radial-gradient(circle at top right, rgba(236,72,153,0.20), transparent 32%),
            radial-gradient(circle at bottom left, rgba(34,211,238,0.16), transparent 30%),
            linear-gradient(145deg, rgba(17,24,39,0.94), rgba(21,26,46,0.88));
    background-size: cover;
    background-position: center;
}

.hero::before {
    content: "";
    position: absolute;
    width: 720px;
    height: 720px;
    background: rgba(255,255,255,0.07);
    border-radius: 160px;
    transform: rotate(35deg);
    right: -220px;
    top: -260px;
}

.hero-content {
    position: relative;
    max-width: 1050px;
    text-align: center;
    color: white;
}

.eyebrow,
.section-heading span,
.cta-section span {
    display: inline-block;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 12px;
    color: #bfdbfe;
    margin-bottom: 14px;
}

.hero h1 {
    font-size: clamp(38px, 6vw, 76px);
    line-height: 1;
    max-width: 980px;
    margin: auto;
    letter-spacing: -0.06em;
}

.hero p {
    max-width: 680px;
    margin: 24px auto 34px;
    color: #dbeafe;
    font-size: 18px;
    line-height: 1.7;
}

.search-panel {
    background: rgba(255,255,255,0.98);
    color: var(--navy);
    border-radius: 28px;
    padding: 16px;
    display: grid;
    grid-template-columns: 1.4fr 0.8fr auto;
    gap: 14px;
    box-shadow: var(--shadow);
    text-align: left;
}

.search-field {
    background: #f8fafc;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 12px 15px;
}

.search-field label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 900;
    color: var(--muted);
    margin-bottom: 6px;
}

.search-field input,
.search-field select {
    width: 100%;
    border: none;
    background: transparent;
    outline: none;
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
}

.search-panel button {
    border: none;
    border-radius: 18px;
    background: var(--navy);
    color: white;
    padding: 0 24px;
    font-weight: 900;
    cursor: pointer;
}

.stats-strip {
    max-width: 1050px;
    margin: -46px auto 40px;
    position: relative;
    z-index: 5;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: hidden;
}

.stats-strip div {
    padding: 28px;
    text-align: center;
    border-right: 1px solid var(--border);
}

.stats-strip div:last-child {
    border-right: none;
}

.stats-strip strong {
    display: block;
    color: var(--blue);
    font-size: 34px;
    font-weight: 950;
}

.stats-strip span {
    color: var(--muted);
    font-weight: 800;
    font-size: 14px;
}

.section {
    max-width: 1240px;
    margin: auto;
    padding: 50px 22px;
}

.section-heading {
    text-align: center;
    margin-bottom: 34px;
}

.section-heading span {
    color: var(--blue);
}

.section-heading h2 {
    font-size: clamp(30px, 4vw, 48px);
    color: var(--navy);
    letter-spacing: -0.04em;
}

.section-heading p {
    color: var(--muted);
    margin-top: 12px;
    font-weight: 600;
}

.category-row {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    padding: 0 10px 10px;
    overflow: visible;
    scrollbar-width: none;
}

.category-row::-webkit-scrollbar {
    display: none;
}

.category-pill {
    flex: 0 0 auto;
    min-width: max-content;
    border: 1px solid var(--border);
    background: white;
    color: var(--navy);
    padding: 14px 20px;
    border-radius: 999px;
    font-weight: 850;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(15,23,42,0.06);
    transition: 0.25s ease;
}

.category-pill:hover,
.category-pill.active {
    background: var(--blue);
    color: white;
    border-color: var(--blue);
    transform: translateY(-2px);
}

.business-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.business-card {
    background: white;
    border-radius: var(--radius);
    box-shadow: 0 14px 35px rgba(15,23,42,0.08);
    overflow: hidden;
    border: 1px solid rgba(226,232,240,0.9);
    transition: 0.25s ease;
}

.business-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.card-banner {
    height: 120px;
    position: relative;
}

.card-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
            linear-gradient(45deg, rgba(255,255,255,0.08) 25%, transparent 25%),
            linear-gradient(-45deg, rgba(255,255,255,0.08) 25%, transparent 25%);
    background-size: 70px 70px;
}

.card-logo {
    width: 82px;
    height: 82px;
    border-radius: 24px;
    background: white;
    padding: 8px;
    position: absolute;
    left: 22px;
    bottom: -35px;
    z-index: 2;
    box-shadow: 0 12px 30px rgba(15,23,42,0.22);
}

.card-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 18px;
}

.card-body {
    padding: 48px 22px 22px;
}

.card-title-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.card-title-row h3 {
    color: var(--navy);
    font-size: 18px;
    line-height: 1.25;
}

.rating {
    color: #f59e0b;
    font-size: 12px;
    white-space: nowrap;
}

.location {
    color: var(--muted);
    font-size: 14px;
    margin: 10px 0 18px;
    min-height: 34px;
    line-height: 1.5;
}

.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.card-tags span {
    background: #eff6ff;
    color: var(--blue);
    padding: 7px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 850;
}

.card-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.book-btn,
.view-btn {
    padding: 12px 10px;
    border-radius: 14px;
    text-align: center;
    font-weight: 900;
    font-size: 13px;
}

.book-btn {
    background: var(--blue);
    color: white;
}

.view-btn {
    background: #f1f5f9;
    color: var(--navy);
}

.cta-section {
    max-width: 1180px;
    margin: 60px auto;
    padding: 46px;
    border-radius: 34px;
    background: linear-gradient(135deg, var(--navy), var(--blue));
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    box-shadow: var(--shadow);
}

.cta-section h2 {
    font-size: clamp(30px, 4vw, 48px);
    letter-spacing: -0.05em;
}

.cta-section p {
    color: #dbeafe;
    margin-top: 12px;
    max-width: 680px;
    line-height: 1.7;
}

.cta-btn {
    background: white;
    color: var(--blue);
    white-space: nowrap;
}

.empty-state {
    grid-column: 1 / -1;
    background: white;
    border-radius: var(--radius);
    padding: 50px;
    text-align: center;
    box-shadow: var(--shadow);
}

.empty-state h3 {
    color: var(--navy);
    font-size: 26px;
}

.empty-state p {
    color: var(--muted);
    margin-top: 10px;
}

.rj-footer {
    text-align: center;
    padding: 30px 22px;
    color: var(--muted);
    font-weight: 700;
}

.hidden {
    display: none;
}

@media (max-width: 1100px) {
    .business-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 850px) {
    .rj-nav nav {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: 70px 18px;
    }

    .search-panel {
        grid-template-columns: 1fr;
    }

    .search-panel button {
        padding: 16px;
    }

    .stats-strip {
        margin: -30px 18px 20px;
        grid-template-columns: 1fr;
    }

    .stats-strip div {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .category-row {
        justify-content: center;
        gap: 10px;
        padding-left: 0;
        padding-right: 0;
    }

    .category-pill {
        padding: 12px 17px;
        font-size: 13px;
    }

    .business-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-section {
        margin: 40px 18px;
        padding: 32px;
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 560px) {
    .rj-logo img {
        height: 38px;
    }

    .nav-btn {
        padding: 11px 15px;
        font-size: 13px;
    }

    .hero h1 {
        font-size: 38px;
    }

    .hero p {
        font-size: 16px;
    }

    .section {
        padding: 38px 18px;
    }

    .category-row {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        max-width: 420px;
        margin: 0 auto;
    }

    .category-pill {
        width: 100%;
        min-width: 0;
        padding: 13px 12px;
        text-align: center;
        font-size: 13px;
    }

    .business-grid {
        grid-template-columns: 1fr;
    }

    .card-actions {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 380px) {
    .category-row {
        grid-template-columns: 1fr;
        max-width: 260px;
    }
}
