:root {
    --blue: #1e66ff;
    --navy: #0f172a;
    --dark: #111827;
    --muted: #64748b;
    --light: #f6f8fc;
    --white: #ffffff;
    --border: #e5e7eb;
    --soft-blue: #eff6ff;
    --business-primary: #1e66ff;
    --business-secondary: #0f172a;
    --shadow: 0 24px 65px rgba(15, 23, 42, 0.14);
    --small-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
    --radius: 26px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Inter, Arial, sans-serif;
    background:
            radial-gradient(circle at top left, rgba(30, 102, 255, 0.08), transparent 34%),
            var(--light);
    color: var(--dark);
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.rj-header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.88);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: 0.3s ease;
}

.rj-header.scrolled {
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
}

.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;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 22px;
    font-size: 14px;
    font-weight: 800;
    color: var(--navy);
}

.nav-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    opacity: 0.86;
    transition: 0.25s ease;
}

.nav-links a:hover {
    opacity: 1;
    color: var(--business-primary);
    transform: translateY(-1px);
}

.profile-menu-toggle {
    display: none;
    border: none;
    background: var(--navy);
    color: white;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    font-size: 17px;
    cursor: pointer;
}

.nav-btn,
.profile-book-btn,
.sidebar-book-btn {
    background: linear-gradient(135deg, var(--business-primary), var(--blue));
    color: white;
    padding: 13px 20px;
    border-radius: 999px;
    font-weight: 900;
    box-shadow: 0 14px 30px rgba(30, 102, 255, 0.25);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    transition: 0.25s ease;
}

.nav-btn:hover,
.profile-book-btn:hover,
.sidebar-book-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 38px rgba(30, 102, 255, 0.34);
}

.profile-page {
    overflow: hidden;
}

.profile-hero {
    position: relative;
    padding-bottom: 96px;
}

.profile-banner {
    min-height: 390px;
    background-size: cover;
    background-position: center;
    border-bottom-left-radius: 46px;
    border-bottom-right-radius: 46px;
    position: relative;
    overflow: hidden;
    transform: scale(1.02);
}

.profile-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
            radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.22), transparent 34%),
            radial-gradient(circle at 82% 10%, rgba(255, 255, 255, 0.12), transparent 25%),
            linear-gradient(to bottom, transparent 30%, rgba(15, 23, 42, 0.25));
}

.floating-orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(2px);
    opacity: 0.65;
    pointer-events: none;
    animation: floatOrb 8s ease-in-out infinite;
}

.orb-one {
    width: 140px;
    height: 140px;
    background: rgba(255, 255, 255, 0.18);
    top: 120px;
    left: 8%;
}

.orb-two {
    width: 90px;
    height: 90px;
    background: rgba(30, 102, 255, 0.25);
    top: 210px;
    right: 10%;
    animation-delay: 1.2s;
}

@keyframes floatOrb {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-18px);
    }
}

.profile-shell {
    max-width: 1180px;
    margin: -92px auto 0;
    padding: 0 22px;
    position: relative;
    z-index: 3;
}

.profile-main-card {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.76);
    border-radius: 36px;
    box-shadow: var(--shadow);
    padding: 28px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
    backdrop-filter: blur(20px);
}

.profile-logo-wrap {
    position: relative;
    width: fit-content;
}

.profile-logo {
    width: 122px;
    height: 122px;
    border-radius: 32px;
    background: white;
    border: 4px solid var(--business-primary);
    padding: 10px;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.2);
    transition: 0.25s ease;
}

.profile-logo:hover {
    transform: rotate(-2deg) scale(1.03);
}

.profile-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 22px;
}

.verified-badge {
    position: absolute;
    right: -8px;
    bottom: -6px;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: #22c55e;
    color: white;
    display: grid;
    place-items: center;
    border: 4px solid white;
    box-shadow: 0 10px 20px rgba(34, 197, 94, 0.25);
}

.profile-info h1 {
    color: var(--navy);
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1;
    letter-spacing: -0.06em;
    margin: 10px 0 15px;
}

.profile-category,
.profile-section-heading span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    background: var(--soft-blue);
    color: var(--business-primary);
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 950;
}

.profile-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 750;
}

.profile-meta span {
    background: #f8fafc;
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 8px 12px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.profile-meta i,
.rating-star {
    color: #f59e0b;
}

.profile-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 205px;
}

.profile-back-btn {
    background: #f1f5f9;
    color: var(--navy);
    padding: 13px 20px;
    border-radius: 999px;
    font-weight: 900;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: 0.25s ease;
}

.profile-back-btn:hover {
    background: #e2e8f0;
    transform: translateY(-2px);
}

.profile-content {
    max-width: 1180px;
    margin: -54px auto 0;
    padding: 0 22px 74px;
    position: relative;
    z-index: 4;
}

.profile-grid-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 370px;
    gap: 26px;
    align-items: start;
}

.profile-left,
.profile-sidebar {
    display: grid;
    gap: 24px;
}

.profile-card {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(226, 232, 240, 0.92);
    border-radius: var(--radius);
    box-shadow: var(--small-shadow);
    padding: 28px;
    transition: 0.25s ease;
}

.profile-card:hover {
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.11);
}

.profile-section-heading {
    margin-bottom: 22px;
}

.split-heading {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: flex-end;
}

.profile-section-heading h2,
.profile-card > h2 {
    margin-top: 10px;
    color: var(--navy);
    font-size: clamp(24px, 3vw, 35px);
    letter-spacing: -0.045em;
    line-height: 1.08;
}

.small-book-link {
    color: var(--business-primary);
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.about-text {
    color: var(--muted);
    line-height: 1.85;
    font-size: 16px;
    font-weight: 550;
}

.service-groups {
    display: grid;
    gap: 18px;
}

.service-group {
    border: 1px solid var(--border);
    border-radius: 22px;
    overflow: hidden;
    background: #fbfdff;
}

.service-group-header {
    width: 100%;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, var(--business-secondary), var(--business-primary));
    color: white;
    padding: 18px 20px;
    font-size: 17px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.service-group-header span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.service-group-header .fa-chevron-down {
    transition: 0.25s ease;
}

.service-group.closed .service-group-header .fa-chevron-down {
    transform: rotate(-90deg);
}

.service-group-body {
    max-height: 1600px;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.service-group.closed .service-group-body {
    max-height: 0;
}

.service-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 16px;
    padding: 20px;
    border-bottom: 1px solid var(--border);
    background: white;
    transition: 0.25s ease;
}

.service-row:hover {
    background: #f8fbff;
    transform: translateX(3px);
}

.service-row:last-child {
    border-bottom: none;
}

.service-icon {
    width: 42px;
    height: 42px;
    border-radius: 16px;
    background: var(--soft-blue);
    color: var(--business-primary);
    display: grid;
    place-items: center;
}

.service-copy h4 {
    color: var(--navy);
    font-size: 17px;
    margin-bottom: 6px;
}

.service-copy p {
    color: var(--muted);
    line-height: 1.6;
    font-size: 14px;
    margin-bottom: 8px;
}

.service-copy span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--business-primary);
    background: var(--soft-blue);
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 900;
}

.service-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 10px;
    min-width: 100px;
}

.service-price strong {
    color: var(--navy);
    font-size: 18px;
}

.service-price a {
    background: var(--business-primary);
    color: white;
    padding: 9px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
    box-shadow: 0 10px 22px rgba(30, 102, 255, 0.22);
}

.staff-grid-profile {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.staff-profile-card {
    display: flex;
    gap: 14px;
    align-items: center;
    background: #f8fafc;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 14px;
    transition: 0.25s ease;
}

.staff-profile-card:hover {
    transform: translateY(-4px);
    background: white;
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
}

.staff-profile-card img {
    width: 72px;
    height: 72px;
    border-radius: 22px;
    object-fit: cover;
    background: white;
    border: 1px solid var(--border);
}

.staff-profile-card h3 {
    color: var(--navy);
    font-size: 16px;
    margin-bottom: 4px;
}

.staff-profile-card p {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
}

.sticky-card {
    position: sticky;
    top: 94px;
}

.booking-panel {
    background:
            radial-gradient(circle at top right, rgba(30, 102, 255, 0.12), transparent 35%),
            white;
}

.side-icon {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--business-primary), var(--blue));
    color: white;
    display: grid;
    place-items: center;
    font-size: 20px;
    box-shadow: 0 14px 26px rgba(30, 102, 255, 0.24);
    margin-bottom: 14px;
}

.profile-sidebar .profile-card h2 {
    margin-top: 0;
    font-size: 26px;
}

.profile-sidebar .profile-card p {
    color: var(--muted);
    line-height: 1.7;
    margin: 12px 0 18px;
    font-weight: 550;
}

.sidebar-book-btn {
    width: 100%;
    margin-bottom: 22px;
}

.contact-list {
    display: grid;
    gap: 14px;
    margin-top: 16px;
}

.contact-list div {
    background: #f8fafc;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 14px;
    display: grid;
    gap: 6px;
}

.contact-list strong {
    color: var(--navy);
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.contact-list strong i {
    color: var(--business-primary);
}

.contact-list span,
.contact-list a {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.45;
    font-weight: 650;
    word-break: break-word;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.social-links a {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    background: var(--soft-blue);
    color: var(--business-primary);
    border-radius: 999px;
    font-size: 17px;
    transition: 0.25s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
    background: var(--business-primary);
    color: white;
}

.hours-list {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: center;
    background: #f8fafc;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 13px 14px;
}

.hours-row strong {
    color: var(--navy);
    font-size: 14px;
}

.hours-row span {
    color: var(--muted);
    font-weight: 750;
    font-size: 14px;
}

.hours-row .closed {
    color: #ef4444;
}

.mini-empty {
    background: #f8fafc;
    border: 1px dashed #cbd5e1;
    border-radius: 18px;
    padding: 24px;
    text-align: center;
    color: var(--muted);
}

.mini-empty i {
    font-size: 26px;
    color: var(--business-primary);
    margin-bottom: 10px;
}

.mini-empty p {
    font-weight: 700;
}

.rj-footer {
    text-align: center;
    padding: 30px 22px;
    color: var(--muted);
    font-weight: 700;
    background: var(--light);
}

.reveal-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-up.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1040px) {
    .profile-main-card {
        grid-template-columns: auto 1fr;
    }

    .profile-actions {
        grid-column: 1 / -1;
        flex-direction: row;
        min-width: 0;
    }

    .profile-actions a {
        flex: 1;
    }

    .profile-grid-layout {
        grid-template-columns: 1fr;
    }

    .sticky-card {
        position: static;
    }
}

@media (max-width: 800px) {
    .rj-nav {
        padding: 12px 16px;
    }

    .rj-logo img {
        height: 38px;
    }

    .profile-menu-toggle {
        display: grid;
        place-items: center;
    }

    .nav-links {
        position: absolute;
        top: 68px;
        left: 16px;
        right: 16px;
        background: white;
        border: 1px solid var(--border);
        border-radius: 22px;
        box-shadow: var(--shadow);
        padding: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 12px;
        border-radius: 14px;
        background: #f8fafc;
    }

    .nav-btn {
        padding: 11px 15px;
        font-size: 13px;
    }

    .profile-banner {
        min-height: 290px;
        border-bottom-left-radius: 30px;
        border-bottom-right-radius: 30px;
    }

    .profile-shell {
        margin-top: -72px;
        padding: 0 16px;
    }

    .profile-main-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 22px;
        border-radius: 28px;
    }

    .profile-logo-wrap,
    .profile-category {
        margin: auto;
    }

    .profile-logo {
        width: 106px;
        height: 106px;
    }

    .profile-meta {
        justify-content: center;
    }

    .profile-actions {
        flex-direction: column;
    }

    .profile-content {
        margin-top: -54px;
        padding: 0 16px 54px;
    }

    .profile-card {
        padding: 22px;
        border-radius: 22px;
    }

    .split-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .staff-grid-profile {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .profile-hero {
        padding-bottom: 74px;
    }

    .profile-info h1 {
        font-size: 34px;
    }

    .profile-meta span {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .service-row {
        grid-template-columns: 1fr;
    }

    .service-icon {
        display: none;
    }

    .service-price {
        align-items: stretch;
    }

    .service-price a {
        text-align: center;
    }

    .hours-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .nav-btn i {
        display: none;
    }
}