.profile-page {
    padding: 26px 0 100px;
    background: linear-gradient(180deg, #f7f8fc 0%, #ffffff 32%, #f7f8fc 100%);
}

.profile-wrap {
    width: min(1260px, calc(100% - 32px));
    margin: 0 auto;
}

.profile-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
    color: #475569;
    font-size: 14px;
}

.profile-topline strong {
    color: #111827;
}

.profile-topline__badge {
    padding: 8px 12px;
    border-radius: 999px;
    background: #eff6ff;
    color: #1d4ed8;
    font-weight: 700;
}

.profile-hero-card,
.profile-gallery-board,
.profile-section,
.notice-card,
.platform-disclaimer {
    background: #fff;
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 28px;
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.06);
}

.profile-hero-card {
    padding: 22px 22px 28px;
}

.profile-name {
    margin: 0;
    color: #c21872;
    font-size: 26px;
    font-weight: 700;
}

.profile-pills {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 14px;
}

.profile-pills span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid #d7dce4;
    color: #334155;
    font-weight: 600;
}

.profile-headline {
    margin: 18px 0 0;
    max-width: 1100px;
    font-size: clamp(30px, 4vw, 56px);
    line-height: 1.06;
    color: #0f172a;
}

.profile-hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-width: 260px;
    padding: 18px 22px;
    border-radius: 18px;
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}

.hero-btn--call { background: linear-gradient(135deg, #d61f7a 0%, #b61567 100%); }
.hero-btn--wa { background: linear-gradient(135deg, #2ecc71 0%, #22c55e 100%); }
.hero-btn--tg { background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%); }

.profile-gallery-board {
    position: relative;
    margin-top: 20px;
    padding: 4px;
    overflow: hidden;
}

.profile-gallery-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 4px;
}

.profile-gallery-grid.is-multi {
    grid-template-columns: minmax(0, 1.15fr) repeat(2, minmax(0, 0.7fr));
}

.profile-gallery-tile {
    position: relative;
    border: none;
    padding: 0;
    margin: 0;
    background: #e5e7eb;
    min-height: 260px;
    cursor: pointer;
    overflow: hidden;
}

.profile-gallery-tile::after,
.related-card__media::after {
    content: "CityWallah.com";
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 7%;
    text-align: center;
    color: rgba(255, 255, 255, 0.48);
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.36);
    font-size: clamp(28px, 5vw, 64px);
    font-weight: 900;
    letter-spacing: 0.03em;
    line-height: 1;
    pointer-events: none;
    z-index: 2;
}

.profile-gallery-tile.is-main {
    grid-row: span 2;
    min-height: 540px;
}

.profile-gallery-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.profile-gallery-nav,
.profile-gallery-dots {
    display: none;
}

.profile-gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 50%;
    background: rgba(17, 24, 39, 0.74);
    color: #fff;
    z-index: 4;
    cursor: pointer;
}

.profile-gallery-nav--prev { left: 12px; }
.profile-gallery-nav--next { right: 12px; }

.profile-gallery-dots {
    position: absolute;
    left: 50%;
    bottom: 12px;
    transform: translateX(-50%);
    gap: 8px;
    z-index: 4;
}

.profile-gallery-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.55);
    cursor: pointer;
}

.profile-gallery-dot.is-active {
    background: #fff;
    transform: scale(1.18);
}

.profile-section {
    margin-top: 22px;
    padding: 26px;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.section-title i {
    font-size: 30px;
    color: #0f172a;
}

.section-title h2 {
    margin: 0;
    font-size: 24px;
    color: #0f172a;
}

.profile-text {
    color: #0f172a;
    line-height: 1.68;
    font-size: 16px;
    white-space: pre-line;
}

.tag-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.tag-row span {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid #d7dce4;
    background: #fff;
    color: #111827;
    font-weight: 500;
}

.tag-row--services span {
    background: #f8fafc;
}

.share-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
    margin-top: 26px;
    padding-top: 10px;
    border-top: 1px solid #e5e7eb;
}

.share-box {
    text-align: center;
}

.share-box h3 {
    margin: 0 0 18px;
    font-size: 18px;
    color: #334155;
}

.share-icons {
    display: flex;
    justify-content: center;
    gap: 26px;
}

.share-icons a,
.report-link {
    color: #c21872;
    font-size: 18px;
    text-decoration: none;
}

.share-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.share-icons a i,
.report-link i {
    font-size: 38px;
}

.report-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-weight: 500;
    border: none;
    background: transparent;
    cursor: pointer;
}

.city-linkout {
    padding: 28px 0 18px;
    text-align: center;
}

.city-linkout a {
    text-decoration: none;
    color: #334155;
    font-size: 22px;
}

.city-linkout strong {
    color: #c21872;
}

.notice-card {
    padding: 24px 28px;
    border-color: rgba(194, 24, 114, 0.45);
}

.notice-card p,
.notice-card li,
.platform-disclaimer p {
    color: #334155;
    line-height: 1.7;
    font-size: 16px;
}

.security-card {
    position: relative;
    margin-top: 24px;
    padding: 28px 24px;
    border-radius: 22px;
    background: linear-gradient(135deg, #364668 0%, #445477 100%);
    color: #fff;
    text-align: center;
}

.security-chip {
    position: absolute;
    left: 18px;
    top: -16px;
    padding: 8px 14px;
    border-radius: 999px;
    background: #facc15;
    color: #0f172a;
    font-weight: 700;
}

.security-card h2 {
    margin: 0 0 12px;
    font-size: 28px;
}

.security-card p {
    margin: 0;
    font-size: 18px;
    color: rgba(255,255,255,0.95);
}

.platform-disclaimer {
    margin-top: 20px;
    padding: 24px 28px;
}

.platform-disclaimer h3 {
    margin: 0 0 16px;
    font-size: 27px;
    color: #1f2937;
}

.platform-disclaimer p {
    margin: 0 0 16px;
}

.platform-disclaimer p:last-child {
    margin-bottom: 0;
}

.related-strip {
    margin-top: 30px;
}

.related-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.profile-chip {
    margin: 0 0 8px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 12px;
    color: #2563eb;
    font-weight: 700;
}

.related-head h2 {
    margin: 0;
    font-size: 32px;
}

.related-head a {
    color: #2563eb;
    text-decoration: none;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.related-card {
    overflow: hidden;
    border-radius: 24px;
    background: #fff;
    border: 1px solid rgba(148, 163, 184, 0.16);
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.08);
}

.related-card__media {
    display: block;
    aspect-ratio: 4 / 4.2;
    background: #f8fafc;
}

.related-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.related-card__body {
    padding: 16px;
}

.related-card__body h3 {
    margin: 0 0 10px;
    font-size: 22px;
}

.related-card__body h3 a {
    text-decoration: none;
    color: #0f172a;
}

.related-card__body p {
    margin: 0;
    color: #475569;
    line-height: 1.7;
}

.lightbox {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(2, 6, 23, 0.82);
    z-index: 9998;
}

.lightbox.is-open {
    display: flex;
}

.lightbox img {
    max-width: min(94vw, 1180px);
    max-height: 88vh;
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(2, 6, 23, 0.45);
}

.lightbox__close {
    position: absolute;
    top: 18px;
    right: 22px;
    border: none;
    background: transparent;
    color: #fff;
    font-size: 42px;
    cursor: pointer;
}

@media (max-width: 900px) {
    .profile-hero-actions,
    .share-strip,
    .related-head {
        grid-template-columns: 1fr;
        display: grid;
    }

    .hero-btn {
        min-width: 0;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .profile-wrap {
        width: min(100% - 18px, 1260px);
    }

    .profile-topline {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }

    .profile-hero-card,
    .profile-section,
    .notice-card,
    .platform-disclaimer {
        border-radius: 18px;
    }

    .profile-headline {
        font-size: 33px;
    }

    .profile-gallery-board {
        padding: 0;
        border-radius: 18px;
    }

    .profile-gallery-grid,
    .profile-gallery-grid.is-multi {
        display: flex;
        flex-wrap: nowrap;
        gap: 0;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .profile-gallery-grid::-webkit-scrollbar {
        display: none;
    }

    .profile-gallery-tile,
    .profile-gallery-tile.is-main {
        flex: 0 0 100%;
        width: 100%;
        min-width: 100%;
        min-height: 440px;
        grid-row: auto;
        scroll-snap-align: start;
    }

    .profile-gallery-nav {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .profile-gallery-dots {
        display: flex;
    }

    .section-title h2 {
        font-size: 22px;
    }

    .profile-section,
    .notice-card,
    .platform-disclaimer {
        padding: 22px 18px;
    }

    .security-card {
        padding: 24px 16px;
        border-radius: 18px;
    }

    .platform-disclaimer h3 {
        font-size: 22px;
    }
}

@media (max-width: 560px) {
    .profile-hero-actions {
        display: none;
    }

    .profile-page {
        padding-bottom: 130px;
    }

    .profile-name {
        font-size: 22px;
    }

    .profile-headline {
        font-size: 28px;
    }

    .profile-pills span {
        width: 100%;
        justify-content: flex-start;
    }

    .profile-gallery-tile,
    .profile-gallery-tile.is-main {
        min-height: 380px;
    }

    .profile-gallery-nav {
        width: 34px;
        height: 34px;
    }

    .profile-gallery-nav--prev { left: 10px; }
    .profile-gallery-nav--next { right: 10px; }

    .mobile-contact-bar {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
        background: rgba(255,255,255,0.96);
        border-top: 1px solid #e5e7eb;
        box-shadow: 0 -10px 24px rgba(15, 23, 42, 0.08);
        z-index: 9997;
    }

    .mobile-contact-bar__item {
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 6px;
        min-height: 50px;
        border-radius: 14px;
        text-decoration: none;
        color: #fff;
        font-size: 12px;
        font-weight: 700;
    }

    .mobile-contact-bar__item i {
        font-size: 18px;
    }

    .mobile-contact-bar__item.is-call { background: #d61f7a; }
    .mobile-contact-bar__item.is-wa { background: #22c55e; }
    .mobile-contact-bar__item.is-tg { background: #0284c7; }
}

@media (min-width: 561px) {
    .mobile-contact-bar {
        display: none;
    }
}


.report-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 10000;
}

.report-modal.is-open {
    display: flex;
}

.report-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.62);
}

.report-modal__dialog {
    position: relative;
    width: min(100%, 560px);
    max-height: min(88vh, 760px);
    overflow: auto;
    padding: 26px;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.24);
    z-index: 1;
}

.report-modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: #f8fafc;
    color: #0f172a;
    font-size: 24px;
    cursor: pointer;
}

.report-modal__dialog h3 {
    margin: 0 0 10px;
    font-size: 32px;
    color: #0f172a;
}

.report-modal__dialog p {
    margin: 0 0 18px;
    color: #475569;
    line-height: 1.7;
}

.report-modal__dialog label {
    display: block;
    margin: 14px 0 8px;
    color: #0f172a;
    font-weight: 600;
}

.report-modal__dialog select,
.report-modal__dialog input,
.report-modal__dialog textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #d7dce4;
    border-radius: 14px;
    font: inherit;
    color: #0f172a;
    background: #fff;
}

.report-modal__dialog textarea {
    min-height: 140px;
    resize: vertical;
}

.report-modal__submit {
    margin-top: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    padding: 14px 18px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(135deg, #d61f7a 0%, #b61567 100%);
    color: #fff;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.report-modal__message {
    margin-top: 14px;
    min-height: 22px;
    font-size: 14px;
    font-weight: 600;
}

.report-modal__message.is-success {
    color: #15803d;
}

.report-modal__message.is-error {
    color: #b91c1c;
}

@media (max-width: 560px) {
    .report-modal {
        padding: 12px;
    }

    .report-modal__dialog {
        padding: 22px 16px 18px;
        border-radius: 18px;
    }

    .report-modal__dialog h3 {
        font-size: 28px;
        padding-right: 24px;
    }

    .report-modal__submit {
        width: 100%;
    }
}

.related-carousel {
    position: relative;
}

.related-carousel__viewport {
    overflow: hidden;
}

.related-carousel__track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 4px 2px 8px;
}

.related-carousel__track::-webkit-scrollbar {
    display: none;
}

.related-card--slide {
    flex: 0 0 calc(33.333% - 14px);
    min-width: calc(33.333% - 14px);
}

.related-carousel__nav {
    position: absolute;
    top: 42%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.78);
    color: #fff;
    cursor: pointer;
    z-index: 3;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.18);
}

.related-carousel__nav--prev {
    left: -12px;
}

.related-carousel__nav--next {
    right: -12px;
}

@media (max-width: 980px) {
    .related-card--slide {
        flex: 0 0 calc(50% - 10px);
        min-width: calc(50% - 10px);
    }
}

@media (max-width: 560px) {
    .related-card--slide {
        flex: 0 0 78%;
        min-width: 78%;
    }

    .related-carousel__nav {
        width: 34px;
        height: 34px;
        top: 38%;
    }

    .related-carousel__nav--prev {
        left: -4px;
    }

    .related-carousel__nav--next {
        right: -4px;
    }
}

.related-card__media {
    position: relative;
}

.related-card__premium {
    position: absolute;
    top: 12px;
    right: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
    color: #ea580c;
    border: 1px solid #fdba74;
    font-size: 11px;
    font-weight: 800;
    box-shadow: 0 10px 18px rgba(251, 146, 60, 0.18);
}

.related-card__city {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
    color: #2563eb;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.related-card__city i {
    font-size: 12px;
}

.related-card--slide {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.related-card--slide:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 42px rgba(15, 23, 42, 0.12);
}



