/**
 * Talepify danışman profili — "Homy luxury" tam yeniden tasarım
 * Hero villa + yüzen profil kartı + bindirmeli arama + portföy raftı
 * Animasyonlar: Ken Burns, kademeli giriş, scroll-reveal, hover mikro etkileşim
 */

@import url("https://fonts.googleapis.com/css2?family=Great+Vibes&family=Inter:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@600;700;800&display=swap");

:root {
    --hm-red: #dc143c;
    --hm-red-hot: #ff2d55;
    --hm-red-deep: #b30f31;
    --hm-ink: #10131a;
    --hm-muted: #667085;
    --hm-line: #e9ecf2;
    --hm-bg: #f4f5f8;
    --hm-white: #fff;
    --hm-green: #16a34a;
    --hm-teal: #0d9488;
    --hm-gold: #f5b301;
    --hm-wrap: min(1400px, calc(100% - 3.2rem));
    --hm-ease: cubic-bezier(0.22, 1, 0.36, 1);
    --hm-shadow-soft: 0 12px 32px rgba(16, 19, 26, 0.07);
    --hm-shadow-card: 0 26px 70px rgba(16, 19, 26, 0.24);
    --hm-shadow-search: 0 30px 70px rgba(16, 19, 26, 0.16);
}

@media (min-width: 1200px) {
    :root { --hm-wrap: min(1400px, calc(100% - 6rem)); }
}

@media (min-width: 1600px) {
    :root { --hm-wrap: min(1480px, calc(100% - 8rem)); }
}

/* ============================== TEMEL ============================== */
html.talepify-profile-html,
html:has(body.talepify-profile-page) {
    max-width: 100%;
    width: 100%;
}

body.talepify-profile-page {
    margin: 0;
    background: transparent;
    color: var(--hm-ink);
    font-family: Inter, system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden !important;
    max-width: 100%;
    width: 100%;
}

body.talepify-profile-page .wow-bg {
    width: 100% !important;
    max-width: 100%;
    left: 0;
    right: 0;
}

body.talepify-profile-page *,
body.talepify-profile-page *::before,
body.talepify-profile-page *::after { box-sizing: border-box; }

body.talepify-profile-page .up { z-index: 80; }
.navbar-custom .btn-primary-custom.d-inline-flex { display: inline-flex; align-items: center; }
.navbar-custom .me-2 { margin-right: 0.45rem; }

.talepify-profile-page main,
.talepify-profile-page .talepify-minimal-footer,
.talepify-profile-page .tp-foot {
    position: relative;
    z-index: 1;
}

.tp-bg-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(48px);
    opacity: 0.55;
}

.tp-bg-orb--a {
    width: min(52vw, 520px);
    height: min(52vw, 520px);
    top: -12%;
    right: -10%;
    background: rgba(220, 20, 60, 0.22);
}

.tp-bg-orb--b {
    width: min(36vw, 340px);
    height: min(36vw, 340px);
    bottom: 8%;
    left: -8%;
    background: rgba(59, 130, 246, 0.12);
}

.tp-wrap { width: var(--hm-wrap); max-width: 100%; margin: 0 auto; }

.t-profile-content-wrap[hidden],
#talepify-profile-state[hidden],
#talepify-shared-state[hidden] { display: none !important; }

body.talepify-profile-page .t-profile-content-wrap {
    opacity: 0;
    transition: opacity 0.62s var(--hm-ease);
}

body.talepify-profile-page .t-profile-content-wrap.is-ready {
    opacity: 1;
}

.t-profile-loading-state.t-profile-booting.is-leaving {
    opacity: 0;
    pointer-events: none;
    animation: none;
}

.t-profile-loading-state.t-profile-booting.is-leaving::before,
.t-profile-loading-state.t-profile-booting.is-leaving::after {
    animation: none;
}

body.talepify-profile-page main .container {
    width: var(--hm-wrap);
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
}

body.talepify-profile-page .talepify-minimal-footer .container {
    width: min(1260px, calc(100% - 3.2rem));
    max-width: 1260px;
    margin-left: auto;
    margin-right: auto;
}

.tp-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
}

/* ============================== ANİMASYON TANIMLARI ============================== */
@keyframes hmSpin { to { transform: rotate(360deg); } }

@keyframes hmKen {
    from { transform: scale(1.04); }
    to { transform: scale(1.12) translate3d(-1.2%, -0.8%, 0); }
}

@keyframes hmKenMobile {
    from { transform: scale(1.08) translate3d(0, 6%, 0); }
    to { transform: scale(1.13) translate3d(-0.8%, 5%, 0); }
}

@keyframes hmRiseIn {
    from { opacity: 0; filter: blur(14px); transform: translate3d(0, 28px, 0); }
    to { opacity: 1; filter: none; transform: none; }
}

@keyframes hmPopIn {
    from { opacity: 0; filter: blur(12px); transform: translate3d(0, 22px, 0) scale(0.96); }
    to { opacity: 1; filter: none; transform: none; }
}

@keyframes tpCardIn {
    from {
        opacity: 0;
        filter: blur(16px);
        transform: translate3d(0, 36px, 0) rotateX(10deg) scale(0.94);
    }
    to {
        opacity: 1;
        filter: none;
        transform: none;
    }
}

@keyframes hmPulseRing {
    0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.55); }
    70% { box-shadow: 0 0 0 22px rgba(255, 255, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

/* Scroll-reveal */
[data-reveal] {
    opacity: 0;
    filter: blur(18px);
    transform: translate3d(0, 42px, 0) rotateX(8deg);
    transform-origin: center 80%;
    transition:
        opacity 0.85s ease,
        filter 0.95s var(--hm-ease),
        transform 1s var(--hm-ease);
    will-change: opacity, transform, filter;
}

[data-reveal].is-in {
    opacity: 1;
    filter: none;
    transform: none;
}

.tp-listing,
.property-block_one,
.tp-district-card,
.talepify-review-card {
    animation: tpCardIn 0.75s var(--hm-ease) both;
    animation-delay: calc(var(--tp-i, 0) * 0.07s);
    transform-origin: center bottom;
}

@media (hover: hover) and (pointer: fine) {
    .tp-tilt {
        transform-style: preserve-3d;
        transition: transform 0.18s ease, box-shadow 0.35s var(--hm-ease);
        will-change: transform;
    }
    .tp-tilt.is-tilting {
        transition: transform 0.08s ease, box-shadow 0.35s var(--hm-ease);
    }
}

/* ============================== YÜKLENME / HATA ============================== */
html:has(body.talepify-profile-booting),
body.talepify-profile-booting {
    background: #8b1028;
    overflow: hidden;
}

body.talepify-profile-booting .navbar-wrapper,
body.talepify-profile-booting .mobile-menu-overlay,
body.talepify-profile-booting .wow-bg,
body.talepify-profile-booting .up,
body.talepify-profile-booting .cursor,
body.talepify-profile-booting .talepify-minimal-footer,
body.talepify-profile-booting .tp-foot {
    display: none !important;
}

.t-profile-loading-state {
    min-height: 72vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 1.5rem 3rem;
}

.t-profile-loading-state.t-profile-booting {
    position: fixed;
    inset: 0;
    z-index: 10050;
    min-height: 100vh;
    min-height: 100dvh;
    padding: 0;
    overflow: hidden;
    background:
        radial-gradient(ellipse 80% 70% at 18% 8%, rgba(255, 90, 120, 0.72), transparent 58%),
        radial-gradient(ellipse 70% 60% at 92% 88%, rgba(90, 8, 28, 0.85), transparent 52%),
        radial-gradient(ellipse 50% 45% at 50% 42%, rgba(220, 20, 60, 0.5), transparent 62%),
        linear-gradient(155deg, #5a0a1c 0%, #dc143c 48%, #3f0714 100%);
    background-size: 140% 140%;
    animation: tpBootWash 9s ease-in-out infinite;
    transition: opacity 0.5s ease;
}

.t-profile-loading-state.t-profile-booting::before,
.t-profile-loading-state.t-profile-booting::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(72px);
    pointer-events: none;
}

.t-profile-loading-state.t-profile-booting::before {
    width: min(72vw, 640px);
    height: min(72vw, 640px);
    top: -18%;
    left: -16%;
    background: rgba(255, 110, 140, 0.7);
    animation: tpBootOrb 8.5s ease-in-out infinite;
}

.t-profile-loading-state.t-profile-booting::after {
    width: min(58vw, 520px);
    height: min(58vw, 520px);
    right: -18%;
    bottom: -22%;
    background: rgba(70, 0, 22, 0.85);
    animation: tpBootOrb 10s ease-in-out infinite reverse;
}

@keyframes tpBootWash {
    0%, 100% { background-position: 0% 40%; }
    50% { background-position: 100% 60%; }
}

@keyframes tpBootOrb {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
    50% { transform: translate3d(28px, -36px, 0) scale(1.12); }
}

@keyframes tpBootPulse {
    0%, 100% { opacity: 0.72; }
    50% { opacity: 1; }
}

.t-loader-glass {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem 2.6rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: var(--hm-shadow-soft);
    animation: hmPopIn 0.55s var(--hm-ease) both;
}

.t-profile-booting .t-loader-glass {
    position: relative;
    z-index: 1;
    padding: 0;
    border-radius: 0;
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    gap: 1.35rem;
    animation: none;
}

.t-loader-spinner {
    width: 42px;
    height: 42px;
    border: 3px solid rgba(220, 20, 60, 0.14);
    border-top-color: var(--hm-red);
    border-radius: 50%;
    animation: hmSpin 0.8s linear infinite;
}

.t-profile-booting .t-loader-spinner {
    width: 46px;
    height: 46px;
    border: 2.5px solid rgba(255, 255, 255, 0.22);
    border-top-color: #fff;
}

.t-loader-glass p { margin: 0; font-weight: 700; }

.t-profile-booting .t-loader-glass p {
    color: #fff;
    font-family: "Plus Jakarta Sans", Inter, sans-serif;
    font-size: 1.08rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
    animation: tpBootPulse 1.7s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
    .t-profile-loading-state.t-profile-booting,
    .t-profile-loading-state.t-profile-booting::before,
    .t-profile-loading-state.t-profile-booting::after,
    .t-profile-booting .t-loader-glass p {
        animation: none;
    }
}

.talepify-share-error,
.talepify-share-empty {
    max-width: 34rem;
    margin: 1.5rem auto;
    padding: 1.8rem 1.6rem;
    text-align: center;
    background: #fff;
    border-radius: 20px;
    box-shadow: var(--hm-shadow-soft);
}

.talepify-share-error h3,
.talepify-share-empty h3 { margin: 0 0 0.4rem; font-family: "Plus Jakarta Sans", Inter, sans-serif; }
.talepify-share-error p,
.talepify-share-empty p { margin: 0; color: var(--hm-muted); line-height: 1.6; }

.talepify-share-error-button {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: 1.1rem;
    padding: 0.75rem 1.2rem;
    border-radius: 999px;
    background: var(--hm-red);
    color: #fff !important;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.2s var(--hm-ease), box-shadow 0.2s;
}

.talepify-share-error-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(220, 20, 60, 0.3);
}

/* ============================== HERO ============================== */
.tp-hero {
    position: relative;
    color: var(--hm-ink);
    isolation: isolate;
    overflow: visible;
    perspective: 1400px;
    background: transparent;
}

.tp-hero__media {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 6%;
    left: 22%;
    width: auto;
    height: auto;
    transform: none;
    z-index: 0;
    overflow: visible;
    pointer-events: none;
    animation: hmPopIn 1s var(--hm-ease) 0.08s both;
    -webkit-mask-image: linear-gradient(
        90deg,
        transparent 0%,
        rgba(0, 0, 0, 0.18) 12%,
        rgba(0, 0, 0, 0.55) 26%,
        #000 44%,
        #000 100%
    );
    mask-image: linear-gradient(
        90deg,
        transparent 0%,
        rgba(0, 0, 0, 0.18) 12%,
        rgba(0, 0, 0, 0.55) 26%,
        #000 44%,
        #000 100%
    );
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
}

.tp-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: right 58%;
    display: block;
    filter: none;
    animation: hmKen 22s ease-in-out 0.9s alternate infinite;
}

.tp-hero__media::after {
    content: none;
}

.tp-hero__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.4rem;
    padding: 8.1rem 0 2.2rem;
}

.tp-hero__copy {
    position: relative;
    z-index: 3;
}

@media (min-width: 1040px) {
    .tp-hero__inner {
        grid-template-columns: minmax(0, 1fr) 308px;
        grid-template-rows: auto auto;
        grid-template-areas:
            "copy card"
            "search search";
        column-gap: 1.35rem;
        row-gap: 1.15rem;
        padding: 9.4rem 0 2.4rem;
        align-items: start;
        overflow: visible;
    }

    .tp-hero__copy {
        grid-area: copy;
        align-self: center;
        padding: 0.4rem 0.4rem 0.2rem 0;
        min-height: 0;
    }
}

/* Kademeli giriş — içerik görünür olunca oynar */
.tp-hero__intro > * { animation: hmRiseIn 0.8s var(--hm-ease) both; }
.tp-hero__intro > *:nth-child(1) { animation-delay: 0.05s; }
.tp-hero__intro > *:nth-child(2) { animation-delay: 0.14s; }
.tp-hero__intro > *:nth-child(3) { animation-delay: 0.24s; }
.tp-hero__intro > *:nth-child(4) { animation-delay: 0.34s; }

.tp-loc-kicker {
    display: none;
    align-items: center;
    gap: 0.4rem;
    margin: 0 0 0.7rem;
    color: #98a0ad;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.tp-loc-kicker i { color: var(--hm-red); font-size: 0.78rem; }

.tp-script {
    margin: 0 0 0.3rem;
    font-family: "Great Vibes", cursive;
    font-size: clamp(2.1rem, 3.6vw, 2.9rem);
    color: #ea4c68;
    line-height: 1;
}

.tp-hero__title {
    margin: 0 0 0.95rem;
    font-family: "Plus Jakarta Sans", Inter, sans-serif;
    font-size: clamp(2.2rem, 4.9vw, 3.9rem);
    font-weight: 800;
    letter-spacing: -0.045em;
    line-height: 1.04;
    color: var(--hm-ink);
}

.tp-hero__title em {
    font-style: normal;
    color: var(--hm-red);
}

.tp-hero__bio {
    margin: 0 0 1.65rem;
    max-width: 30rem;
    color: #4a5261;
    font-size: 0.99rem;
    line-height: 1.68;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* --- İstatistik barı: tek koyu fade, kutular yok --- */
.tp-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    max-width: 42rem;
    padding: 0.72rem 1.1rem 0.72rem 0.85rem;
    border-radius: 16px;
    background: linear-gradient(90deg,
        rgba(16, 19, 26, 0.78) 0%,
        rgba(16, 19, 26, 0.52) 48%,
        rgba(16, 19, 26, 0.18) 78%,
        rgba(16, 19, 26, 0) 100%);
}

.tp-stat {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    min-width: 0;
    padding: 0.2rem 0.85rem;
    border: 0;
    background: none;
    box-shadow: none;
    border-radius: 0;
    color: #fff;
    position: relative;
    animation: hmPopIn 0.7s var(--hm-ease) both;
}

.tp-stat:hover {
    transform: none;
    box-shadow: none;
}

.tp-stat + .tp-stat::before {
    content: "";
    position: absolute;
    left: 0;
    top: 16%;
    bottom: 16%;
    width: 1px;
    background: rgba(255, 255, 255, 0.22);
}

.tp-stat:nth-child(1) { animation-delay: 0.4s; }
.tp-stat:nth-child(2) { animation-delay: 0.5s; }
.tp-stat:nth-child(3) { animation-delay: 0.6s; }
.tp-stat:nth-child(4) { animation-delay: 0.7s; }

.tp-stat i {
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: transparent;
    border: 1.5px solid rgba(255, 90, 110, 0.85);
    color: #ff6b82;
    font-size: 0.74rem;
}

.tp-stat div { min-width: 0; }

.tp-stat strong {
    display: block;
    font-family: "Plus Jakarta Sans", Inter, sans-serif;
    font-size: 0.92rem;
    font-weight: 800;
    line-height: 1.15;
    color: #fff;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tp-stat span {
    display: block;
    font-size: 0.62rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tp-stat em {
    font-style: normal;
    font-weight: inherit;
}

.tp-stat__sm { display: none; }

.talepify-profile-openapp { display: none !important; }
.tp-loc { display: none; }

/* ============================== YÜZEN PROFİL KARTI ============================== */
.tp-card {
    position: relative;
    z-index: 6;
    width: 100%;
    max-width: 22.5rem;
    margin: 0 auto;
    padding: 1.35rem 1.25rem 1.25rem;
    border-radius: 28px;
    background: #fff;
    color: var(--hm-ink);
    border: 1px solid rgba(16, 19, 26, 0.06);
    box-shadow: 0 28px 64px rgba(16, 19, 26, 0.16);
    text-align: center;
    animation: hmPopIn 0.95s var(--hm-ease) 0.18s both;
}

.tp-card__identity { min-width: 0; }

.tp-hero-avatar,
#talepify-profile-avatar {
    position: relative;
    width: 88px;
    height: 88px;
    margin: 0 auto 0.95rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #fff;
    box-shadow:
        0 0 0 1px rgba(220, 20, 60, 0.16),
        0 12px 26px rgba(16, 19, 26, 0.12);
    background: #f3f4f7;
}

#talepify-profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 42%;
    display: block;
}

@media (min-width: 1040px) {
    .tp-card {
        grid-area: card;
        align-self: start;
        width: 308px;
        max-width: none;
        margin: 0;
        padding: 0 1.2rem 1.2rem;
        overflow: hidden;
        z-index: 8;
    }

    .tp-hero-avatar,
    #talepify-profile-avatar {
        width: calc(100% + 2.4rem);
        height: 300px;
        margin: 0 -1.2rem 1.05rem;
        border: 0;
        border-radius: 0;
        box-shadow: none;
    }

    #talepify-profile-avatar img {
        object-fit: cover;
        object-position: center top;
    }

    .tp-hero-avatar::after,
    #talepify-profile-avatar::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 40px;
        background: linear-gradient(180deg, transparent, #fff);
        pointer-events: none;
    }

    .tp-hero-contact { flex-direction: row; }
    .talepify-contact-btn {
        width: auto;
        flex: 1;
        min-height: 44px;
        font-size: 0.82rem;
    }
}

.tp-person__name {
    margin: 0 auto 0.22rem;
    max-width: 100%;
    font-family: "Plus Jakarta Sans", Inter, sans-serif;
    font-size: 1.22rem;
    font-weight: 800;
    letter-spacing: -0.035em;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.32rem;
    line-height: 1.2;
    overflow-wrap: break-word;
}

.talepify-verified-badge {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    background: var(--hm-red);
    color: #fff;
    font-size: 0.48rem;
}

.tp-hero-office-badge {
    margin: 0;
    color: #8a6a70;
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.tp-card__office {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.28rem 0.4rem;
    width: 100%;
    margin: 0.45rem 0 1.05rem;
    padding: 0;
    color: var(--hm-muted);
}

.tp-card__office[hidden] { display: none !important; }

.tp-card__office strong {
    font-family: "Plus Jakarta Sans", Inter, sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--hm-ink);
    overflow-wrap: anywhere;
}

.tp-card__office span {
    font-size: 0.78rem;
    font-weight: 500;
}

.tp-card__office span::before {
    content: "·";
    margin-right: 0.4rem;
    color: #c8b6b8;
}

.tp-hero-contact {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.talepify-contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    width: 100%;
    min-height: 46px;
    padding: 0.6rem 0.85rem;
    border-radius: 999px;
    border: 0;
    font-family: Inter, sans-serif;
    font-weight: 700;
    font-size: 0.86rem;
    text-decoration: none;
    cursor: pointer;
    color: #fff !important;
    background: var(--hm-red);
    box-shadow: 0 10px 22px rgba(220, 20, 60, 0.22);
    transition: background 0.2s, transform 0.2s var(--hm-ease), box-shadow 0.2s;
}

.talepify-contact-btn:hover:not(:disabled):not(.is-disabled) {
    background: var(--hm-red-deep);
    transform: translateY(-1px);
    box-shadow: 0 14px 26px rgba(220, 20, 60, 0.28);
}

.talepify-contact-btn:active:not(:disabled):not(.is-disabled) {
    transform: translateY(0);
}

.talepify-contact-btn.whatsapp {
    background: #fff;
    color: var(--hm-ink) !important;
    border: 1px solid #e4e7ee;
    box-shadow: none;
}

.talepify-contact-btn.whatsapp i {
    color: var(--hm-green);
    font-size: 1rem;
}

.talepify-contact-btn.whatsapp:hover:not(.is-disabled) {
    background: #fafbfc;
    border-color: #d5d9e2;
    color: var(--hm-ink) !important;
    box-shadow: none;
}

.talepify-contact-btn.is-disabled,
.talepify-contact-btn:disabled { opacity: 0.45; cursor: not-allowed; }

.talepify-call-inner { display: inline-flex; align-items: center; gap: 0.45rem; max-width: 100%; }

.talepify-call-number-display {
    font-size: 0.8rem;
    letter-spacing: -0.01em;
    white-space: nowrap;
}

.talepify-call-reveal-btn.is-revealed .talepify-call-primary { display: none; }
.talepify-call-reveal-btn.is-revealed .talepify-call-number-display { display: inline; }

.tp-hero-socials {
    display: flex;
    justify-content: center;
    gap: 0.35rem;
    margin-top: 1rem;
}

.talepify-social-btn {
    width: 32px;
    height: 32px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    border: 0;
    background: transparent;
    color: #8b919c;
    text-decoration: none;
    font-size: 0.82rem;
    transition: color 0.2s, transform 0.2s var(--hm-ease);
}

.talepify-social-btn:hover:not(.is-disabled) {
    color: var(--hm-red);
    transform: translateY(-1px);
    background: transparent;
    box-shadow: none;
}

.talepify-social-btn.is-disabled { opacity: 0.28; cursor: default; }

body.talepify-profile-page i.fas.fa-phone {
    display: inline-block;
    transform: scaleX(-1);
}

/* ============================== ARAMA ============================== */
.tp-search-dock {
    position: relative;
    z-index: 4;
    grid-column: 1;
}

@media (min-width: 1040px) {
    .tp-search-dock {
        grid-area: search;
        grid-column: 1 / -1;
        grid-row: 2;
        margin: 0;
        padding: 0;
        z-index: 4;
        width: 100%;
        min-width: 0;
    }
}

.tp-search {
    position: relative;
    width: 100%;
    padding: 0;
    background: none;
    border: 0;
    box-shadow: none;
    animation: hmPopIn 0.85s var(--hm-ease) 0.42s both;
}

.tp-search__tabs {
    display: flex;
    gap: 0.28rem;
    margin: 0 0 -1px 0;
    padding: 0;
    background: none;
    position: relative;
    z-index: 2;
}

.tp-status-tab {
    appearance: none;
    background: #e9ebf0;
    border: 1px solid transparent;
    border-bottom: 0;
    padding: 0.82rem 2.85rem 0.9rem;
    border-radius: 16px 16px 0 0;
    font-family: "Plus Jakarta Sans", Inter, sans-serif;
    font-weight: 800;
    font-size: 0.86rem;
    letter-spacing: -0.02em;
    color: #6b7280;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.tp-status-tab:hover { color: var(--hm-ink); }
.tp-status-tab.is-active {
    background: #fff;
    color: var(--hm-red);
    box-shadow: 0 -6px 18px rgba(16, 19, 26, 0.05);
}

.tp-search__body {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    padding: 1.05rem 1.2rem 1.1rem;
    border-radius: 0 24px 24px 24px;
    background: #fff;
    border: 1px solid #eceef2;
    box-shadow: 0 20px 50px rgba(16, 19, 26, 0.1);
}

.tp-search__filter-toggle { display: none; }

.tp-search__extras { order: 1; }
.tp-search__pills { order: 3; }

.tp-search__toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.7rem;
}

.tp-search__hint {
    margin: 0;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #b0b6c0;
}

.tp-search__clear {
    appearance: none;
    border: 0;
    background: none;
    padding: 0;
    font-family: Inter, sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    color: #8b919c;
    cursor: pointer;
}

.tp-search__clear:hover { color: var(--hm-red); }

.tp-search__bar {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.7rem;
    align-items: end;
}

.tp-col {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.32rem;
}

.tp-col > span {
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #9aa1ad;
}

.tp-field,
.tp-select {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    min-width: 0;
    min-height: 50px;
    padding: 0 0.9rem;
    border-radius: 14px;
    background: #f6f7f9;
    border: 1px solid transparent;
}

.tp-field:focus-within,
.tp-select:focus-within {
    background: #fff;
    border-color: rgba(220, 20, 60, 0.28);
    box-shadow: 0 0 0 3px rgba(220, 20, 60, 0.08);
}

.tp-field i,
.tp-select i { color: #8b929c; font-size: 0.78rem; }

.tp-select__caret {
    margin-left: auto;
    font-size: 0.58rem !important;
    color: #8b929c !important;
    pointer-events: none;
}

.tp-field input,
.tp-select select,
.tp-select input {
    width: 100%;
    min-width: 0;
    border: 0;
    background: transparent;
    outline: none;
    font: 600 0.86rem Inter, sans-serif;
    color: var(--hm-ink);
    appearance: none;
    -webkit-appearance: none;
}

.tp-select select { cursor: pointer; }

.tp-field input::placeholder,
.tp-select input::placeholder { color: #8b929c; }

.tp-select input::-webkit-outer-spin-button,
.tp-select input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.tp-select input[type="number"] { -moz-appearance: textfield; appearance: textfield; }

.tp-search__apply {
    min-height: 50px;
    padding: 0 1.25rem;
    border: 0;
    border-radius: 14px;
    background: var(--hm-red);
    color: #fff;
    font-family: Inter, sans-serif;
    font-weight: 800;
    font-size: 0.88rem;
    cursor: pointer;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    box-shadow: 0 10px 20px rgba(220, 20, 60, 0.22);
    transition: transform 0.22s var(--hm-ease), background 0.2s;
}

.tp-search__apply:hover {
    background: var(--hm-red-deep);
    transform: translateY(-1px);
}

@media (min-width: 900px) {
    .tp-search__bar {
        grid-template-columns: minmax(0, 1.7fr) minmax(140px, 1fr) minmax(110px, 0.75fr) minmax(110px, 0.75fr) auto;
    }
}

.tp-search__pills {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.95rem;
    min-width: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.tp-search__pills::-webkit-scrollbar { display: none; }

.talepify-type-filter-btn {
    appearance: none;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 0.42rem;
    border: 1px solid #e8eaef;
    background: #fff;
    color: #3d4450;
    border-radius: 999px;
    padding: 0.42rem 0.85rem 0.42rem 0.42rem;
    font-family: Inter, sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.talepify-type-filter-btn i {
    width: 26px;
    height: 26px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #f4f5f8;
    color: #6b7280;
    font-size: 0.68rem;
    transition: background 0.2s, color 0.2s;
}

.talepify-type-filter-btn:hover {
    border-color: rgba(220, 20, 60, 0.28);
    color: var(--hm-red);
}

.talepify-type-filter-btn:hover i {
    background: rgba(220, 20, 60, 0.08);
    color: var(--hm-red);
}

.talepify-type-filter-btn.active {
    background: var(--hm-red);
    border-color: var(--hm-red);
    color: #fff;
    box-shadow: 0 8px 16px rgba(220, 20, 60, 0.18);
}

.talepify-type-filter-btn.active i {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

/* ============================== ÖNE ÇIKAN PORTFÖYLER ============================== */
.tp-feat {
    position: relative;
    padding: 3rem 0 1.4rem;
    scroll-margin-top: calc(96px + env(safe-area-inset-top, 0px));
    background-image:
        linear-gradient(115deg, rgba(220, 20, 60, 0.045) 1px, transparent 1px),
        linear-gradient(25deg, rgba(16, 19, 26, 0.035) 1px, transparent 1px);
    background-size: 42px 42px;
    background-color: transparent;
}

.tp-feat__head {
    display: block;
    margin-bottom: 1.45rem;
}

.tp-feat__head h2 {
    margin: 0;
    font-family: "Plus Jakarta Sans", Inter, sans-serif;
    font-size: clamp(1.85rem, 3.2vw, 2.55rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.12;
    color: var(--hm-ink);
}

.tp-feat__head h2 em {
    font-style: normal;
    color: var(--hm-red);
}

.tp-feat__count {
    margin: 0.4rem 0 0;
    color: #7b8494;
    font-size: 0.92rem;
    font-weight: 600;
}

.tp-feat__all { display: none; }


.tp-feat__track-wrap { position: relative; }

.tp-portfolios-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: minmax(0, auto);
    gap: 1.15rem 1rem;
    overflow: visible;
    padding: 0.25rem 0.1rem 1.2rem;
}

.tp-portfolios-grid::-webkit-scrollbar { display: none; }

.tp-portfolios-grid:has(.talepify-share-empty) {
    display: block;
    overflow: visible;
    padding-right: 0;
}

.tp-feat__next { display: none; }

/* Eski portföy kartı — profil ve paylaşım sayfasında aynı */
.tp-portfolios-grid > .property-block_one {
    min-width: 0;
    margin-bottom: 0;
}

.property-block_one-inner.talepify-property-card {
    --tp-property-card-radius: 20px;
    --tp-property-image-radius: 14px;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--hm-line);
    border-radius: var(--tp-property-card-radius);
    text-decoration: none;
    color: inherit;
    box-shadow: 0 10px 30px rgba(16, 19, 26, 0.06);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s;
}

.property-block_one-inner.talepify-property-card:hover {
    transform: translateY(-8px);
    border-color: rgba(220, 20, 60, 0.2);
    box-shadow: 0 22px 44px rgba(16, 19, 26, 0.12);
}

.property-block_one-inner .image {
    align-self: center;
    position: relative;
    isolation: isolate;
    width: calc(100% - 16px);
    height: 268px;
    margin: 8px 8px 10px;
    overflow: hidden;
    border-radius: var(--tp-property-image-radius);
    background: #f1f5f9;
}

.property-block_one-inner .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: inherit;
    transition: transform 0.6s ease;
}

.property-block_one-inner:hover .image img {
    transform: scale(1.05);
}

.property-block_one-inner .image .talepify-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 0.875rem;
    font-weight: 600;
}

.property-badges-wrapper {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}

.property-badges-wrapper .property-badge-status {
    position: static;
    padding: 4px 12px;
    border-radius: 8px;
    background: var(--hm-red);
    color: #fff;
    font-family: "Plus Jakarta Sans", Inter, sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.property-badges-wrapper .property-badge-status.kiralik {
    background: #0ea5e9;
}

.property-block_one-inner .category {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: var(--hm-ink);
    padding: 6px 14px;
    border-radius: 8px;
    font-family: "Plus Jakarta Sans", Inter, sans-serif;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.property-block_one-inner .lower-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 6px 14px 22px;
}

.property-block_one-inner h5 {
    margin: 0 0 10px;
    font-family: "Plus Jakarta Sans", Inter, sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.4;
    color: var(--hm-ink);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.property-block_one-inner .location {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: auto;
    color: var(--hm-muted);
    font-size: 0.95rem;
}

.property-block_one-inner .location i { color: var(--hm-red); }

.property-block_one-inner .property-block_one-info {
    display: flex;
    gap: 15px;
    list-style: none;
    margin: 20px 0;
    padding: 15px 0;
    border-top: 1px solid var(--hm-line);
    border-bottom: 1px solid var(--hm-line);
}

.property-block_one-inner .property-block_one-info li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--hm-ink);
    font-size: 0.9rem;
    font-weight: 600;
}

.property-block_one-inner .property-block_one-info li i {
    color: var(--hm-red);
    font-size: 14px;
}

.property-block_one-inner .tp-card-price-row {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.property-block_one-inner .price {
    font-family: "Plus Jakarta Sans", Inter, sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--hm-red);
}

@media (max-width: 767px) {
    .property-block_one-inner .image {
        width: calc(100% - 12px);
        height: 168px;
        margin: 6px 6px 8px;
    }
    .property-block_one-inner .lower-content { padding: 6px 14px 16px; }
    .property-block_one-inner h5 { font-size: 1rem; margin-bottom: 8px; }
    .property-block_one-inner .location { font-size: 0.8rem; }
    .property-block_one-inner .property-block_one-info {
        flex-wrap: wrap;
        gap: 8px;
        margin: 10px 0;
        padding: 10px 0;
    }
    .property-block_one-inner .property-block_one-info li { font-size: 0.8rem; }
    .property-block_one-inner .price { font-size: 1.2rem; }
    .property-badges-wrapper { top: 10px; left: 10px; gap: 4px; }
    .property-badges-wrapper .property-badge-status { padding: 3px 8px; font-size: 10px; }
    .property-block_one-inner .category { padding: 4px 10px; font-size: 10px; }
}

@media (hover: none) {
    .property-block_one-inner.talepify-property-card:hover {
        transform: none;
    }
    .property-block_one-inner:hover .image img {
        transform: none;
    }
}

.tp-listing {
    position: relative;
    min-width: 0;
    perspective: 900px;
}

.tp-listing::before {
    content: "";
    position: absolute;
    left: 14%;
    right: 14%;
    top: 42%;
    bottom: -6%;
    border-radius: 22px;
    background-image: var(--tp-cover);
    background-size: cover;
    background-position: center;
    filter: blur(26px) saturate(1.15);
    opacity: 0.22;
    z-index: 0;
    pointer-events: none;
}

.tp-listing__card {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    border-radius: 22px;
    background: #fff;
    color: var(--hm-ink);
    text-decoration: none;
    box-shadow: 0 16px 36px rgba(16, 19, 26, 0.1);
    transition: transform 0.35s var(--hm-ease), box-shadow 0.35s var(--hm-ease);
}

.tp-listing__card:hover {
    transform: translateY(-8px) rotateX(3deg);
    box-shadow: 0 28px 54px rgba(16, 19, 26, 0.16);
}

.tp-listing__media {
    position: relative;
    aspect-ratio: 16 / 11;
    overflow: hidden;
    background: #e8eaee;
    flex: 0 0 auto;
}

.tp-listing__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s var(--hm-ease);
}

.tp-listing__card:hover .tp-listing__media img { transform: scale(1.06); }

.tp-listing__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.16) 0%, transparent 38%);
    pointer-events: none;
}

.tp-listing__media .property-badge-status,
.tp-listing__badge {
    position: absolute;
    top: 0.8rem;
    left: 0.8rem;
    z-index: 2;
    padding: 0.3rem 0.62rem;
    border-radius: 999px;
    background: var(--hm-red);
    color: #fff;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
}

.property-badge-status.kiralik { background: var(--hm-teal); }

.tp-listing__heart {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    z-index: 2;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: #6b7280;
    font-size: 0.82rem;
    pointer-events: none;
    box-shadow: 0 8px 18px rgba(16, 19, 26, 0.12);
}

.tp-listing__card:hover .tp-listing__heart { color: var(--hm-red); }

.talepify-card-placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    color: var(--hm-muted);
    font-size: 0.85rem;
}

.tp-listing__body {
    position: relative;
    z-index: 2;
    flex: 0 0 auto;
    margin: 0;
    padding: 0.95rem 1.05rem 1.05rem;
    background: #fff;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.tp-listing__body h3 {
    margin: 0 0 0.55rem;
    font-family: "Plus Jakarta Sans", Inter, sans-serif;
    font-size: 0.98rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.35;
    color: var(--hm-ink);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tp-listing__loc {
    margin: 0 0 0.35rem;
    color: var(--hm-muted);
    font-size: 0.78rem;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tp-listing__loc i { color: var(--hm-red); margin-right: 0.25rem; font-size: 0.7rem; }

.tp-listing__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem 0.85rem;
    margin: 0 0 0.7rem;
    padding: 0 0 0.7rem;
    border: 0;
    border-bottom: 1px solid var(--hm-line);
    list-style: none;
    font-size: 0.74rem;
    font-weight: 700;
    color: #4b5563;
}

.tp-listing__meta li { padding: 0; background: none; border-radius: 0; }

.tp-listing__meta i { color: var(--hm-red); margin-right: 0.22rem; }

.tp-listing__price-row { display: block; }

.tp-listing__price {
    font-family: "Plus Jakarta Sans", Inter, sans-serif;
    font-size: 1.12rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--hm-red);
}

.tp-listing__go { display: none; }


.tp-feat__next {
    display: none;
    position: absolute;
    top: 38%;
    right: 0;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 12px 28px rgba(16, 19, 26, 0.18);
    color: var(--hm-ink);
    cursor: pointer;
    z-index: 2;
    transition: transform 0.22s var(--hm-ease), box-shadow 0.22s, background 0.2s, color 0.2s;
}

.tp-feat__next:hover {
    background: var(--hm-red);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(220, 20, 60, 0.3);
}

.tp-loadmore-wrap { display: flex; justify-content: center; margin-top: 0.35rem; padding-bottom: 0.4rem; }

.tp-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    min-height: 50px;
    padding: 0 1.45rem;
    border-radius: 999px;
    border: 1px solid rgba(220, 20, 60, 0.18);
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    font-family: Inter, sans-serif;
    font-weight: 800;
    font-size: 0.9rem;
    color: var(--hm-ink);
    cursor: pointer;
    box-shadow: 0 12px 28px rgba(16, 19, 26, 0.08);
    transition: border-color 0.2s, color 0.2s, transform 0.2s var(--hm-ease), box-shadow 0.2s, background 0.2s;
}

.tp-btn-ghost i { font-size: 0.72rem; color: var(--hm-red); }

.tp-btn-ghost:hover:not(:disabled) {
    border-color: rgba(220, 20, 60, 0.4);
    color: var(--hm-red);
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(220, 20, 60, 0.12);
}

.tp-spinner {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid rgba(220, 20, 60, 0.2);
    border-top-color: var(--hm-red);
    border-radius: 50%;
    animation: hmSpin 0.7s linear infinite;
    vertical-align: -2px;
}

/* ============================== BÖLGE UZMANLIĞI ============================== */
.tp-region {
    padding: 2.5rem 0 1.2rem;
    scroll-margin-top: 110px;
}

.tp-region__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: center;
}

@media (min-width: 900px) {
    .tp-region__grid { grid-template-columns: 1.05fr 1fr; gap: 2.2rem; }
}

.tp-region__video {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    width: 100%;
    aspect-ratio: 4 / 3;
    background: #10131a;
    box-shadow: 0 20px 50px rgba(16, 19, 26, 0.16);
}

.tp-region__video img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 68%;
    display: block;
    transform: none;
}

.tp-region__play {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: linear-gradient(180deg, rgba(6, 8, 14, 0.06) 0%, rgba(6, 8, 14, 0.4) 100%);
}

.tp-region__play span {
    width: 68px;
    height: 68px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #fff;
    color: var(--hm-red);
    font-size: 1.2rem;
    padding-left: 4px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
    animation: hmPulseRing 2.6s ease-out infinite;
    transition: transform 0.25s var(--hm-ease);
}

.tp-region__video:hover .tp-region__play span { transform: scale(1.08); }

.tp-region__caption {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    padding: 0.55rem 0.85rem;
    border-radius: 14px;
    background: rgba(10, 12, 18, 0.55);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #fff;
}

.tp-region__caption strong {
    font-family: "Plus Jakarta Sans", Inter, sans-serif;
    font-size: 0.86rem;
    font-weight: 800;
}

.tp-region__caption span {
    font-size: 0.72rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.72);
}

.tp-kicker {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    margin: 0 0 0.5rem;
    color: var(--hm-red);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.tp-kicker::before {
    content: "";
    width: 22px;
    height: 2px;
    border-radius: 2px;
    background: var(--hm-red);
}

.tp-region h2,
.tp-section-title {
    margin: 0 0 0.7rem;
    font-family: "Plus Jakarta Sans", Inter, sans-serif;
    font-size: clamp(1.55rem, 2.9vw, 2.1rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--hm-ink);
    line-height: 1.18;
}

.tp-region__copy > p {
    margin: 0 0 1.15rem;
    color: var(--hm-muted);
    line-height: 1.68;
}

.tp-districts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.65rem;
    perspective: 900px;
}

@media (max-width: 991px) {
    .tp-districts { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .tp-districts { grid-template-columns: 1fr; }
}

.tp-district-card {
    background: #ffffff;
    border: 1px solid #eaecf0;
    border-radius: 14px;
    padding: 0.85rem 0.9rem;
    box-shadow: 0 4px 16px rgba(16, 19, 26, 0.04);
    transition: transform 0.22s var(--hm-ease), border-color 0.22s, box-shadow 0.22s;
}

.tp-district-card:hover {
    transform: translateY(-4px) rotateX(4deg);
    border-color: rgba(220, 20, 60, 0.3);
    box-shadow: 0 14px 32px rgba(16, 19, 26, 0.1);
}

.tp-district-card__header {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.35rem;
}

.tp-district-card__header i {
    color: var(--hm-red);
    font-size: 0.82rem;
}

.tp-district-card__header strong {
    font-family: "Plus Jakarta Sans", Inter, sans-serif;
    font-size: 0.86rem;
    font-weight: 800;
    color: var(--hm-ink);
}

.tp-district-card__label {
    font-size: 0.68rem;
    color: var(--hm-muted);
    font-weight: 600;
    margin-bottom: 0.1rem;
}

.tp-district-card__price {
    font-family: "Plus Jakarta Sans", Inter, sans-serif;
    font-size: 0.94rem;
    font-weight: 800;
    color: var(--hm-ink);
    margin-bottom: 0.2rem;
}

.tp-district-card__change {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--hm-green);
}

.tp-district {
    position: relative;
    padding: 0.9rem 0.95rem 0.9rem 2.4rem;
    border-radius: 16px;
    background: #fff;
    border: 1px solid var(--hm-line);
    box-shadow: 0 8px 22px rgba(16, 19, 26, 0.04);
    transition: transform 0.22s var(--hm-ease), border-color 0.22s, box-shadow 0.22s;
}

.tp-district:hover {
    transform: translateY(-3px);
    border-color: rgba(220, 20, 60, 0.3);
    box-shadow: 0 14px 30px rgba(16, 19, 26, 0.08);
}

.tp-district::before {
    content: "\f3c5";
    font-family: "Font Awesome 5 Pro", "Font Awesome 5 Free", sans-serif;
    font-weight: 900;
    position: absolute;
    left: 0.9rem;
    top: 0.95rem;
    color: var(--hm-red);
    font-size: 0.8rem;
}

.tp-district strong {
    display: block;
    font-family: "Plus Jakarta Sans", Inter, sans-serif;
    font-size: 0.92rem;
    font-weight: 800;
}

.tp-district span {
    display: block;
    margin-top: 0.12rem;
    font-size: 0.76rem;
    color: var(--hm-muted);
    font-weight: 600;
}

.tp-district b { color: var(--hm-green); font-size: 0.78rem; }

/* ============================== DEĞERLENDİRMELER ============================== */
.tp-reviews-section {
    padding: 2.4rem 0 1.4rem;
    scroll-margin-top: 110px;
}

.tp-title-underline {
    width: 44px;
    height: 3.5px;
    background: var(--hm-red);
    border-radius: 4px;
    margin: 0.35rem 0 0;
}

.tp-reviews-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem 1.2rem;
    align-items: center;
    margin-bottom: 1.15rem;
}

.tp-leave-review {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 48px;
    padding: 0 1.3rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--hm-red) 0%, var(--hm-red-deep) 100%);
    color: #fff;
    font-family: Inter, sans-serif;
    font-weight: 800;
    font-size: 0.88rem;
    letter-spacing: -0.01em;
    text-decoration: none;
    box-shadow: 0 12px 26px rgba(220, 20, 60, 0.22);
    transition: transform 0.22s var(--hm-ease), box-shadow 0.22s;
}

.tp-leave-review i {
    font-size: 0.78rem;
    color: #ffd56a;
}

.tp-leave-review:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(220, 20, 60, 0.32);
}

.tp-reviews-summary { display: flex; align-items: center; gap: 0.7rem; margin-top: 0.4rem; }

.tp-rating-big {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-family: "Plus Jakarta Sans", Inter, sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1;
}

.tp-stars-container {
    color: var(--hm-gold);
    font-size: 0.92rem;
    letter-spacing: 0.06em;
    line-height: 1;
}

.tp-rating-count { color: var(--hm-muted); font-size: 0.88rem; }

.talepify-reviews-swiper {
    position: relative;
    overflow: visible;
    padding: 0.25rem 0 2rem;
}

.talepify-review-card {
    height: 100%;
    padding: 1.35rem 1.25rem 1.15rem;
    border-radius: 20px;
    background: #fff;
    border: 1px solid var(--hm-line);
    box-shadow: 0 6px 24px rgba(16, 19, 26, 0.04);
    transition: transform 0.25s var(--hm-ease), box-shadow 0.25s;
}

.talepify-review-card:hover {
    transform: translateY(-6px) rotateX(4deg);
    box-shadow: 0 18px 40px rgba(16, 19, 26, 0.1);
}

.talepify-review-quote {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    margin-bottom: 0.7rem;
    border-radius: 10px;
    background: rgba(220, 20, 60, 0.08);
    color: var(--hm-red);
    font-size: 0.85rem;
}

.talepify-review-person {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    min-width: 0;
}

.talepify-review-avatar {
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(220, 20, 60, 0.1);
    color: var(--hm-red);
    font-family: "Plus Jakarta Sans", Inter, sans-serif;
    font-weight: 800;
    font-size: 0.9rem;
}

.talepify-review-message {
    color: #4b5563;
    line-height: 1.65;
    min-height: 4.4em;
    font-size: 0.92rem;
}

.talepify-review-header {
    display: flex;
    justify-content: space-between;
    gap: 0.6rem;
    margin-top: 0.9rem;
    padding-top: 0.85rem;
    border-top: 1px solid var(--hm-line);
    align-items: center;
}

.talepify-review-author {
    font-family: "Plus Jakarta Sans", Inter, sans-serif;
    font-weight: 800;
    font-size: 0.9rem;
}

.talepify-review-stars { color: var(--hm-gold); font-size: 0.78rem; letter-spacing: 0.05em; }
.talepify-review-date { margin-top: 0.15rem; font-size: 0.75rem; color: #9aa1ad; }

.tp-empty-state,
.tp-loading-card { text-align: center; padding: 2rem 1rem; color: var(--hm-muted); }
.tp-empty-state h3 { margin: 0 0 0.35rem; color: var(--hm-ink); font-family: "Plus Jakarta Sans", Inter, sans-serif; }
.tp-empty-state p { margin: 0; }

.talepify-reviews-next,
.talepify-reviews-prev {
    width: 44px !important;
    height: 44px !important;
    margin-top: -22px !important;
    background: #fff;
    border: 1px solid #eaecf0;
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(16, 19, 26, 0.1);
    color: var(--hm-ink) !important;
    transition: all 0.2s var(--hm-ease);
    top: 50% !important;
    z-index: 10;
    display: grid !important;
    place-items: center !important;
}

.talepify-reviews-next:after,
.talepify-reviews-prev:after {
    font-size: 13px !important;
    font-weight: 800;
}

.talepify-reviews-next:hover,
.talepify-reviews-prev:hover {
    background: var(--hm-red);
    border-color: var(--hm-red);
    color: #fff !important;
    transform: scale(1.06);
    box-shadow: 0 12px 28px rgba(220, 20, 60, 0.28);
}

.talepify-reviews-next { right: -22px !important; }
.talepify-reviews-prev { left: -22px !important; }

.talepify-reviews-next::after,
.talepify-reviews-prev::after {
    font-size: 0.85rem !important;
    font-weight: 800;
    color: var(--hm-ink);
}

.talepify-reviews-pagination { bottom: 0 !important; }

.talepify-reviews-pagination .swiper-pagination-bullet-active {
    background: var(--hm-red);
}

/* ============================== DİĞER BÖLÜMLER ============================== */
.tp-section { padding: 1.6rem 0 2rem; scroll-margin-top: 110px; }

.tp-glass {
    border-radius: 24px;
    background: #fff;
    border: 1px solid var(--hm-line);
    box-shadow: 0 14px 36px rgba(16, 19, 26, 0.06);
    overflow: hidden;
}


/* --- Değerleme (anasayfa sahnesi) --- */
.tp-valuate {
    position: relative;
    isolation: isolate;
    margin: 2.4rem 0 0;
    padding: 4.2rem 0 4.4rem;
    overflow: hidden;
    background:
        radial-gradient(ellipse 68% 70% at 88% 12%, rgba(220, 20, 60, 0.28), transparent 58%),
        radial-gradient(ellipse 46% 50% at 6% 92%, rgba(220, 20, 60, 0.12), transparent 52%),
        linear-gradient(180deg, #141821 0%, #0c0f14 100%);
    color: #fff;
    scroll-margin-top: 110px;
}

.tp-valuate::before,
.tp-valuate::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.tp-valuate::before {
    width: 420px;
    height: 420px;
    right: -80px;
    top: -120px;
    background: radial-gradient(circle, rgba(220, 20, 60, 0.22), transparent 68%);
}

.tp-valuate::after {
    width: 280px;
    height: 280px;
    left: -70px;
    bottom: -90px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05), transparent 70%);
}

.tp-valuate__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(260px, 380px);
    gap: 3rem;
    align-items: center;
    perspective: 1200px;
}

.tp-valuate__copy { max-width: 560px; }

.tp-valuate__stage {
    position: relative;
    overflow: hidden;
    min-height: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    border-radius: 22px;
    background: #fff;
    border: 0;
    box-shadow: 0 28px 64px rgba(0, 0, 0, 0.38);
    color: var(--hm-ink);
}

.tp-valuate-card__media {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #1a1d24;
}

.tp-valuate-card__media::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 42%;
    background: linear-gradient(180deg, transparent, rgba(16, 19, 26, 0.38));
    pointer-events: none;
}

.tp-valuate-card__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 58%;
    display: block;
}

.tp-valuate-card__photo--land { object-position: center 62%; }

.tp-valuate-card__photo--land,
.tp-valuation-visual--arsam .tp-valuate-card__photo--home { display: none; }
.tp-valuation-visual--arsam .tp-valuate-card__photo--land { display: block; }

.tp-valuate-card__chip {
    position: absolute;
    left: 0.85rem;
    bottom: 0.85rem;
    z-index: 1;
    padding: 0.32rem 0.62rem;
    border-radius: 8px;
    background: #fff;
    color: var(--hm-ink);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.tp-valuate-card__body {
    padding: 1.15rem 1.2rem 1.2rem;
}

.tp-valuate-card__head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.28rem;
}

.tp-valuate-card__label {
    margin: 0;
    color: #8a909c;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.tp-valuate-card__kind {
    color: var(--hm-red);
    font-size: 0.74rem;
    font-weight: 800;
}

.tp-valuate-card__amount {
    margin: 0 0 0.45rem;
    font-family: "Plus Jakarta Sans", Inter, sans-serif;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    line-height: 1.1;
    color: var(--hm-ink);
}

.tp-valuate-card__note {
    margin: 0 0 1.05rem;
    color: #667085;
    font-size: 0.84rem;
    line-height: 1.5;
}

.tp-valuate-card__rows {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem;
    margin: 0;
    padding-top: 0.9rem;
    border-top: 1px solid #eceef2;
}

.tp-valuate-card__rows div {
    min-width: 0;
}

.tp-valuate-card__rows dt {
    margin: 0 0 0.18rem;
    color: #9aa1ad;
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.tp-valuate-card__rows dd {
    margin: 0;
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--hm-ink);
}

.tp-valuation-kicker {
    margin: 0 0 0.7rem;
    color: var(--hm-red);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.tp-valuate .tp-valuation-kicker { color: #ff6b86; }

.tp-valuation-type-toggle { display: flex; gap: 0.4rem; margin-bottom: 0.85rem; }

.tp-valuation-type-btn {
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    border-radius: 999px;
    padding: 0.42rem 0.95rem;
    font-family: Inter, sans-serif;
    font-weight: 700;
    font-size: 0.84rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.tp-valuation-type-btn.is-active {
    background: var(--hm-red);
    border-color: var(--hm-red);
    color: #fff;
}

.tp-valuation-headline {
    margin: 0 0 0.65rem;
    font-family: "Plus Jakarta Sans", Inter, sans-serif;
    font-size: clamp(2.05rem, 4vw, 3.05rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: #fff;
}

.tp-valuation-headline em {
    font-style: normal;
    color: #ff3b5c;
}

.tp-text-crimson { color: var(--hm-red); }

.tp-valuation-lead { margin: 0 0 0.6rem; color: var(--hm-muted); line-height: 1.68; }

.tp-valuate .tp-valuation-lead {
    max-width: 34rem;
    color: rgba(255, 255, 255, 0.68);
    font-size: 1.02rem;
}

.tp-valuation-features { display: flex; flex-wrap: wrap; gap: 0.45rem; margin: 0.95rem 0 1.2rem; }

.tp-valuation-feature {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.78rem;
    border-radius: 999px;
    background: rgba(220, 20, 60, 0.07);
    border: 1px solid rgba(220, 20, 60, 0.14);
    color: var(--hm-ink);
    font-size: 0.8rem;
    font-weight: 700;
}

.tp-valuate .tp-valuation-feature {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.tp-valuation-feature::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Pro", "Font Awesome 5 Free", sans-serif;
    font-weight: 900;
    color: var(--hm-red);
    font-size: 0.66rem;
}

.tp-valuate .tp-valuation-feature::before { color: #ff6b86; }

.tp-btn-primary,
.tp-valuation-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-height: 50px;
    padding: 0 1.35rem;
    border: 0;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--hm-red) 0%, var(--hm-red-deep) 100%);
    color: #fff !important;
    font-family: Inter, sans-serif;
    font-weight: 800;
    font-size: 0.92rem;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 12px 26px rgba(220, 20, 60, 0.24);
    transition: transform 0.22s var(--hm-ease), box-shadow 0.22s;
}

.tp-btn-primary:hover:not(:disabled),
.tp-valuation-cta:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(220, 20, 60, 0.34);
}

.tp-btn-primary:disabled { opacity: 0.5; cursor: not-allowed; }

.tp-valuation-note {
    margin: 0.85rem 0 0;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.46);
}

.tp-valuation-toast {
    position: fixed;
    left: 50%;
    bottom: 1.4rem;
    transform: translateX(-50%) translateY(12px);
    z-index: 90;
    display: flex;
    gap: 0.55rem;
    align-items: center;
    padding: 0.85rem 1.05rem;
    border-radius: 15px;
    background: rgba(16, 19, 26, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    font-size: 0.88rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.35s var(--hm-ease);
}

.tp-valuation-toast i { color: var(--hm-gold); }
.tp-valuation-toast--visible { opacity: 1; transform: translateX(-50%) translateY(0); }

/* --- Alt kapanış: satmak + iletişim --- */
.tp-close {
    padding: 0 0 0.4rem;
    background: transparent;
}

.tp-close-contact { padding-bottom: 0; }

.tp-sell {
    padding: 2.6rem 0 0.4rem;
    scroll-margin-top: 110px;
}

.tp-sell__panel {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    overflow: hidden;
    border-radius: 32px;
    background: #16141a;
    box-shadow: 0 28px 70px rgba(16, 19, 26, 0.16);
}

@media (min-width: 900px) {
    .tp-sell__panel {
        grid-template-columns: 1.05fr 0.95fr;
        min-height: 460px;
    }
}

.tp-sell__media {
    position: relative;
    min-height: 240px;
    overflow: hidden;
}

.tp-sell__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.04);
    transition: transform 7s var(--hm-ease);
}

.tp-sell__panel:hover .tp-sell__media img { transform: scale(1.1); }

.tp-sell__media-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(16, 12, 16, 0.08) 0%, rgba(16, 12, 16, 0.42) 100%);
    pointer-events: none;
}

@media (min-width: 900px) {
    .tp-sell__media-shade {
        background:
            linear-gradient(90deg, transparent 0%, rgba(22, 20, 26, 0.18) 72%, #16141a 100%);
    }
}

.tp-sell__chip {
    position: absolute;
    left: 1.1rem;
    bottom: 1.1rem;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.48rem 0.82rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 0.76rem;
    font-weight: 800;
}

.tp-sell__chip i { color: #ffd56a; font-size: 0.72rem; }

.tp-sell__body {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.7rem 1.4rem 1.6rem;
    color: #fff;
}

@media (min-width: 900px) {
    .tp-sell__body { padding: 2.4rem 2.3rem 2.3rem 1.6rem; }
}

.tp-sell__kicker {
    margin: 0 0 0.7rem;
    color: #ff8aa0;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.tp-sell__body h2 {
    margin: 0 0 0.7rem;
    font-family: "Plus Jakarta Sans", Inter, sans-serif;
    font-size: clamp(1.7rem, 3.2vw, 2.35rem);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.12;
    color: #fff;
}

.tp-sell__body h2 em {
    font-style: normal;
    color: #ff3b5c;
}

.tp-sell__lead {
    margin: 0 0 1.25rem;
    max-width: 28rem;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.96rem;
    line-height: 1.65;
}

.tp-sell__steps {
    list-style: none;
    margin: 0 0 1.35rem;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.55rem;
}

@media (min-width: 560px) {
    .tp-sell__steps { grid-template-columns: repeat(3, 1fr); }
}

.tp-sell__steps li {
    padding: 0.8rem 0.75rem 0.85rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.tp-sell__steps span {
    display: block;
    margin-bottom: 0.35rem;
    color: #ff8aa0;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.tp-sell__steps strong {
    display: block;
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.tp-sell__steps small {
    display: block;
    margin-top: 0.18rem;
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.72rem;
}

.tp-sell__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    align-self: flex-start;
    min-height: 52px;
    padding: 0 1.35rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--hm-red) 0%, var(--hm-red-deep) 100%);
    color: #fff;
    font-family: Inter, sans-serif;
    font-weight: 800;
    font-size: 0.9rem;
    text-decoration: none;
    box-shadow: 0 14px 30px rgba(220, 20, 60, 0.32);
    transition: transform 0.22s var(--hm-ease), box-shadow 0.22s, gap 0.22s;
}

.tp-sell__cta i { font-size: 0.74rem; }

.tp-sell__cta:hover {
    color: #fff;
    gap: 0.75rem;
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(220, 20, 60, 0.4);
}

@media (max-width: 899px) {
    .tp-valuate { padding: 3.2rem 0 3.4rem; }
    .tp-valuate__inner {
        grid-template-columns: 1fr;
        gap: 1.7rem;
    }
    .tp-valuate__copy { max-width: none; }
    .tp-valuate__stage { min-height: 0; max-width: 420px; margin-inline: auto; width: 100%; }
}

/* --- İletişim --- */
.tp-contact {
    padding: 2.2rem 0 2.8rem;
    scroll-margin-top: 110px;
}

.tp-contact__panel {
    display: grid;
    grid-template-columns: 1fr;
    overflow: hidden;
    border-radius: 32px;
    background: #fff;
    border: 1px solid var(--hm-line);
    box-shadow: 0 24px 60px rgba(16, 19, 26, 0.08);
}

@media (min-width: 900px) {
    .tp-contact__panel { grid-template-columns: 0.92fr 1.08fr; }
}

.tp-contact__intro {
    position: relative;
    padding: 1.7rem 1.4rem 1.5rem;
    background:
        radial-gradient(80% 70% at 0% 0%, rgba(220, 20, 60, 0.08), transparent 58%),
        linear-gradient(180deg, #fffaf8 0%, #fff 100%);
}

@media (min-width: 900px) {
    .tp-contact__intro {
        padding: 2.3rem 2rem 2.1rem;
        border-right: 1px solid var(--hm-line);
    }
}

.tp-contact__kicker {
    margin: 0 0 0.65rem;
    color: var(--hm-red);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.tp-contact__intro h2 {
    margin: 0 0 0.7rem;
    font-family: "Plus Jakarta Sans", Inter, sans-serif;
    font-size: clamp(1.7rem, 3vw, 2.25rem);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.12;
    color: var(--hm-ink);
}

.tp-contact__intro h2 em {
    font-style: normal;
    color: var(--hm-red);
}

.tp-contact__lead {
    margin: 0 0 1.35rem;
    max-width: 26rem;
    color: var(--hm-muted);
    font-size: 0.95rem;
    line-height: 1.65;
}

.tp-contact__channels {
    display: grid;
    gap: 0.7rem;
}

.tp-contact__channel {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.9rem 0.95rem;
    border-radius: 18px;
    background: #fff;
    border: 1px solid var(--hm-line);
    box-shadow: 0 8px 22px rgba(16, 19, 26, 0.04);
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s var(--hm-ease), border-color 0.2s, box-shadow 0.2s;
}

a.tp-contact__channel:hover {
    transform: translateY(-2px);
    border-color: rgba(220, 20, 60, 0.28);
    box-shadow: 0 14px 28px rgba(16, 19, 26, 0.08);
}

.tp-contact__channel.is-disabled {
    pointer-events: none;
    opacity: 0.55;
}

.tp-contact__icon {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: rgba(220, 20, 60, 0.08);
    color: var(--hm-red);
    font-size: 1rem;
}

.tp-contact__channel--wa .tp-contact__icon {
    background: rgba(37, 211, 102, 0.12);
    color: #1fa855;
}

.tp-contact__channel small {
    display: block;
    margin-bottom: 0.12rem;
    color: var(--hm-muted);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.tp-contact__channel strong,
.tp-contact__channel #profile-contact-phone-display,
.tp-contact__channel .talepify-palace-link-light {
    display: block;
    font-family: "Plus Jakarta Sans", Inter, sans-serif;
    font-size: 0.98rem;
    font-weight: 800;
    color: var(--hm-ink);
    text-decoration: none;
}

.tp-contact__channel a:hover { color: var(--hm-red); }

.tp-contact__formwrap {
    padding: 1.6rem 1.35rem 1.5rem;
    background: #f7f8fb;
}

@media (min-width: 900px) {
    .tp-contact__formwrap { padding: 2.15rem 2rem 2rem; }
}

.tp-contact__formhead { margin-bottom: 1.05rem; }

.tp-contact__formhead h3 {
    margin: 0 0 0.3rem;
    font-family: "Plus Jakarta Sans", Inter, sans-serif;
    font-size: 1.22rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--hm-ink);
}

.tp-contact__formhead p {
    margin: 0;
    color: var(--hm-muted);
    font-size: 0.88rem;
    line-height: 1.5;
}

.tp-form { display: flex; flex-direction: column; gap: 0.75rem; }
.tp-form-row { display: grid; grid-template-columns: 1fr; gap: 0.75rem; }

@media (min-width: 640px) {
    .tp-form-row { grid-template-columns: 1fr 1fr; }
}

.tp-form-field {
    display: flex;
    flex-direction: column;
    gap: 0.38rem;
}

.tp-form-field > span:first-child {
    font-size: 0.74rem;
    font-weight: 800;
    color: #4b5563;
}

.tp-form-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-height: 50px;
    padding: 0 0.9rem;
    border-radius: 14px;
    background: #fff;
    border: 1px solid #e6e8ee;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.tp-form-group:focus-within {
    border-color: rgba(220, 20, 60, 0.4);
    box-shadow: 0 0 0 4px rgba(220, 20, 60, 0.08);
}

.tp-form-group i { color: #9aa1ad; }

.tp-form-group input,
.tp-form-group textarea {
    width: 100%;
    border: 0;
    background: transparent;
    outline: none;
    font: 600 0.9rem Inter, sans-serif;
    color: var(--hm-ink);
}

.tp-form-group input::placeholder,
.tp-form-group textarea::placeholder { color: #9aa1ad; }

.tp-textarea-group { align-items: flex-start; padding: 0.8rem 0.9rem; }
.tp-textarea-group textarea { min-height: 7rem; resize: vertical; }
.tp-btn-full { width: 100%; justify-content: center; }

/* ============================== FOOTER / SCROLLUP ============================== */
body.talepify-profile-page a.scrollup.text-center { z-index: 1001; }

/* ============================== DUYARLILIK ============================== */
.tp-nav-call { display: none; }

@media (max-width: 1039px) {
    body.talepify-profile-page .talepify-minimal-footer nav.minimal-nav-links {
        display: none;
    }
    .tp-feat__next { display: none; }
    .talepify-reviews-next,
    .talepify-reviews-prev { display: none !important; }
    .talepify-reviews-swiper {
        overflow: hidden;
        padding-left: 0;
        padding-right: 0;
    }
    body.talepify-profile-page .wow-bg {
        width: 100%;
        max-width: 100%;
        left: 0;
        right: 0;
    }
    .tp-hero {
        touch-action: pan-y;
    }
    .tp-hero__media,
    .tp-hero__media img,
    .tp-stats {
        pointer-events: none !important;
        -webkit-user-drag: none;
        user-select: none;
    }
    [data-reveal] {
        filter: blur(12px);
        transform: translate3d(0, 28px, 0);
    }
    .tp-portfolios-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.15rem;
        padding: 0.5rem 0 1.2rem;
    }
    .tp-hero {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        grid-template-areas:
            "copy"
            "media"
            "card"
            "search";
        justify-items: center;
        padding: 7.4rem 0 1.4rem;
        row-gap: 0;
        overflow: visible;
    }
    .tp-hero__inner {
        display: contents;
    }
    .tp-hero__copy { display: contents; }
    .tp-hero__intro {
        grid-area: copy;
        width: var(--hm-wrap);
        margin: 0 auto;
        padding-bottom: 0.7rem;
    }
    .tp-hero__media {
        grid-area: media;
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
        justify-self: center;
        width: var(--hm-wrap);
        max-width: 100%;
        height: 214px;
        margin: 0.35rem 0 0;
        border-radius: 0;
        pointer-events: none;
        background: transparent;
        box-shadow: none;
        overflow: hidden;
        z-index: 1;
        animation: hmPopIn 0.9s var(--hm-ease) 0.1s both;
    }
    .tp-hero__media img {
        animation: hmKenMobile 18s ease-in-out 0.85s alternate infinite;
        object-fit: cover;
        object-position: 70% 42%;
        transform: scale(1.08) translate3d(0, 6%, 0);
        filter: none;
    }
    .tp-hero__media::after {
        content: none;
    }
    .tp-stats {
        grid-area: media;
        align-self: end;
        justify-self: center;
        position: relative;
        z-index: 1;
        box-sizing: border-box;
        width: var(--hm-wrap);
        max-width: 100%;
        min-width: 0;
        margin: 0 0 0.48rem;
        padding: 0.52rem 0.72rem 0.5rem calc(1.08rem + 134px + 0.08rem);
        border-radius: 0;
        background: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        box-shadow: none;
        overflow: visible;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0;
        pointer-events: none;
        animation: hmPopIn 0.75s var(--hm-ease) 0.22s both;
    }
    .tp-stats::before {
        content: "";
        position: absolute;
        z-index: 0;
        top: 0;
        right: 0.72rem;
        bottom: 0;
        left: calc(1.08rem + 72px);
        border-radius: 14px;
        background: rgba(10, 12, 16, 0.58);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        pointer-events: none;
    }
    .tp-stats .tp-stat--xp,
    .tp-stats .talepify-profile-openapp {
        display: none !important;
    }
    .tp-card {
        grid-area: card;
        display: grid;
        grid-template-columns: auto minmax(0, 1fr);
        grid-template-areas:
            "avatar meta"
            "contact contact"
            "socials socials";
        width: var(--hm-wrap);
        max-width: none;
        margin: 0 auto;
        padding: 0.95rem 1.1rem 1.15rem;
        border-radius: 24px;
        column-gap: 0.85rem;
        row-gap: 0;
        text-align: left;
        overflow: visible;
        background: #fff;
        border: 1px solid rgba(16, 19, 26, 0.06);
        box-shadow: 0 22px 48px rgba(16, 19, 26, 0.14);
        align-items: start;
        z-index: 2;
        animation: hmPopIn 0.95s var(--hm-ease) 0.14s both;
    }
    .tp-hero-avatar,
    #talepify-profile-avatar {
        grid-area: avatar;
        width: 134px;
        height: 134px;
        margin: -70px 0 0;
        border-radius: 50%;
        border: 4px solid #fff;
        align-self: start;
        z-index: 8;
        box-shadow:
            0 0 0 1px rgba(220, 20, 60, 0.14),
            0 14px 28px rgba(16, 19, 26, 0.18);
    }
    .tp-card__meta {
        grid-area: meta;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 0.28rem;
        min-width: 0;
        min-height: 0;
        padding: 0.06rem 0 0.05rem;
        margin-top: -0.2rem;
        width: 100%;
    }
    .tp-card__identity {
        padding-top: 0;
        min-width: 0;
        align-self: stretch;
        width: 100%;
    }
    .tp-person__name {
        justify-content: flex-start;
        font-size: 1.32rem;
        margin: 0 0 0.14rem;
        letter-spacing: -0.04em;
        text-transform: none;
        line-height: 1.15;
    }
    .tp-hero-office-badge {
        margin: 0;
        text-align: left;
        font-size: 0.78rem;
        line-height: 1.25;
        color: #8a6a70;
    }
    .tp-card__office {
        grid-area: auto;
        justify-content: flex-start;
        align-self: start;
        width: auto;
        max-width: 100%;
        margin: 0;
        padding: 0;
        text-align: left;
        background: none;
        border-radius: 0;
        gap: 0;
    }
    .tp-card__office span,
    .tp-card__office span::before {
        display: none;
    }
    .tp-card__office strong {
        display: inline-flex;
        align-items: center;
        gap: 0.38rem;
        max-width: 100%;
        padding: 0.28rem 0.62rem 0.28rem 0.5rem;
        border-radius: 999px;
        background: rgba(220, 20, 60, 0.07);
        color: var(--hm-red);
        font-size: 0.74rem;
        font-weight: 800;
        letter-spacing: -0.015em;
        line-height: 1.2;
    }
    .tp-card__office strong::before {
        content: "\f1ad";
        font-family: "Font Awesome 5 Pro", "Font Awesome 5 Free", sans-serif;
        font-weight: 900;
        font-size: 0.64rem;
        line-height: 1;
    }
    .tp-hero-contact {
        grid-area: contact;
        flex-direction: row;
        gap: 0.55rem;
        margin-top: 0.85rem;
    }
    .talepify-contact-btn {
        min-height: 46px;
        font-size: 0.84rem;
        padding: 0.55rem 0.6rem;
    }
    .tp-hero-socials {
        grid-area: socials;
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        justify-content: stretch;
        gap: 0.45rem;
        margin-top: 0.6rem;
    }
    .talepify-social-btn {
        width: 100%;
        height: 40px;
        border-radius: 12px;
        background: #f4f5f8;
        color: #5a6270;
        font-size: 0.92rem;
    }
    .talepify-social-btn.is-disabled {
        opacity: 0.38;
    }
    .tp-search-dock {
        grid-area: search;
        width: var(--hm-wrap);
        margin: 1.7rem auto 0;
    }
    .tp-search__tabs { margin-left: 0; }
    .tp-status-tab { padding: 0.68rem 1.35rem 0.72rem; font-size: 0.8rem; }
    .tp-search__body { padding: 0.8rem 0.8rem 0.85rem; border-radius: 0 20px 20px 20px; }
    .tp-search__pills {
        order: 1;
        margin-top: 0;
        margin-bottom: 0.7rem;
    }
    .tp-search__filter-toggle {
        order: 2;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.45rem;
        width: 100%;
        min-height: 44px;
        border: 1px solid rgba(220, 20, 60, 0.18);
        border-radius: 14px;
        background: rgba(220, 20, 60, 0.06);
        color: var(--hm-red);
        font-family: Inter, sans-serif;
        font-weight: 800;
        font-size: 0.86rem;
        cursor: pointer;
        transition: background 0.2s, color 0.2s, border-color 0.2s;
    }
    .tp-search__filter-toggle i { font-size: 0.78rem; }
    .tp-search__filter-toggle.is-open,
    .tp-search.is-filters-open .tp-search__filter-toggle {
        background: var(--hm-red);
        border-color: var(--hm-red);
        color: #fff;
    }
    .tp-search__filter-toggle.has-filters::after {
        content: "";
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: currentColor;
    }
    .tp-search__extras {
        order: 3;
        display: none;
        margin-top: 0.85rem;
        padding-top: 0.85rem;
        border-top: 1px solid #eef0f4;
    }
    .tp-search.is-filters-open .tp-search__extras { display: block; }
    .tp-search__apply { width: 100%; }
    .tp-stat + .tp-stat::before {
        display: block;
        background: rgba(255, 255, 255, 0.2);
    }
    .tp-stat--xp + .tp-stat::before { display: none; }
    .tp-stat {
        position: relative;
        z-index: 1;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.1rem;
        min-width: 0;
        min-height: 0;
        padding: 0.16rem 0.12rem;
        overflow: hidden;
        text-align: center;
        border-radius: 0;
        background: none;
        color: #fff;
        animation: none;
    }
    .tp-stat div { width: 100%; }
    .tp-stat i {
        display: none;
    }
    .tp-stat strong {
        font-size: 0.92rem;
        white-space: nowrap;
        text-align: center;
        color: #fff;
        letter-spacing: -0.03em;
        line-height: 1.15;
    }
    .tp-stat span {
        font-size: 0.54rem;
        white-space: nowrap;
        line-height: 1.15;
        color: rgba(255, 255, 255, 0.72);
        text-align: center;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .tp-stat__lg { display: none; }
    .tp-stat__sm { display: inline; }

    body.talepify-profile-page.tf-island-nav .nav-actions {
        display: flex !important;
        align-items: center;
        gap: 0.45rem;
    }
    body.talepify-profile-page #profile-request-btn { display: none !important; }
    .tp-nav-call {
        display: grid;
        place-items: center;
        width: 42px;
        height: 42px;
        border-radius: 50%;
        border: 0;
        background: #fff;
        color: #b0102e;
        text-decoration: none;
        font-size: 0.88rem;
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.14);
    }
    body.talepify-profile-page.tf-island-nav .navbar-custom .mobile-toggle,
    body.talepify-profile-page .navbar-custom.tf-island-header .mobile-toggle {
        width: 42px !important;
        height: 42px !important;
        border-radius: 50% !important;
        background: #fff !important;
        border: 0 !important;
        color: #b0102e !important;
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.14) !important;
    }
}

@media (max-width: 699px) {
    .tp-hero__title { font-size: clamp(1.85rem, 8.4vw, 2.35rem); }
    .tp-hero__bio { font-size: 0.88rem; margin-bottom: 0.55rem; }
    .tp-hero__media { height: 198px; }
    .tp-stats { padding: 0.48rem 0.65rem 0.46rem calc(1rem + 134px + 0.06rem); margin-bottom: 0.42rem; }
    .tp-stats::before {
        top: 0;
        right: 0.65rem;
        bottom: 0;
        left: calc(1rem + 70px);
        border-radius: 14px;
    }
    .tp-card { margin-top: 0; }
    .tp-portfolios-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.7rem;
        padding: 0.35rem 0 1rem;
        max-width: none;
        margin: 0;
    }
    .tp-listing::before { display: none; }
    .tp-listing__card {
        border-radius: 16px;
        box-shadow: 0 10px 24px rgba(16, 19, 26, 0.1);
    }
    .tp-listing__card:hover { transform: none; }
    .tp-listing__media { aspect-ratio: 4 / 3; }
    .tp-listing__media .property-badge-status,
    .tp-listing__badge {
        top: 0.5rem;
        left: 0.5rem;
        padding: 0.22rem 0.45rem;
        font-size: 0.52rem;
        letter-spacing: 0.04em;
    }
    .tp-listing__heart {
        top: 0.45rem;
        right: 0.45rem;
        width: 26px;
        height: 26px;
        font-size: 0.68rem;
    }
    .tp-listing__body { padding: 0.62rem 0.62rem 0.7rem; }
    .tp-listing__loc {
        margin-bottom: 0.2rem;
        font-size: 0.64rem;
    }
    .tp-listing__body h3 {
        margin-bottom: 0.38rem;
        font-size: 0.76rem;
        line-height: 1.3;
        -webkit-line-clamp: 2;
    }
    .tp-listing__meta {
        gap: 0.28rem 0.45rem;
        margin-bottom: 0.45rem;
        padding-bottom: 0.45rem;
        font-size: 0.62rem;
    }
    .tp-listing__meta li:nth-child(n+3) { display: none; }
    .tp-listing__price { font-size: 0.86rem; letter-spacing: -0.02em; }
    .tp-districts { grid-template-columns: 1fr 1fr; }
    .tp-reviews-header { align-items: flex-start; }
    .tp-leave-review {
        width: 100%;
        min-height: 46px;
    }
    .talepify-reviews-next,
    .talepify-reviews-prev { display: none !important; }
    .talepify-reviews-swiper { padding-left: 0; padding-right: 0; }
    .tp-valuate { padding: 3rem 0 3.2rem; }
    .tp-valuate__inner {
        grid-template-columns: 1fr;
        gap: 1.6rem;
    }
    .tp-valuate__copy { max-width: none; }
    .tp-valuate__stage { min-height: 0; }
    .tp-valuation-headline { font-size: clamp(1.75rem, 7.4vw, 2.35rem); }
    .tp-sell { padding: 1.8rem 0 0.2rem; }
    .tp-sell__body { padding: 1.4rem 1.15rem 1.35rem; }
    .tp-sell__cta { width: 100%; }
    .tp-contact { padding: 1.6rem 0 2.2rem; }
    .tp-contact__intro,
    .tp-contact__formwrap { padding: 1.35rem 1.15rem 1.3rem; }
}

@media (max-width: 380px) {
    .tp-stats { padding: 0.44rem 0.55rem 0.42rem calc(0.9rem + 126px + 0.04rem); margin-bottom: 0.38rem; }
    .tp-stats::before {
        top: 0;
        right: 0.55rem;
        bottom: 0;
        left: calc(0.9rem + 66px);
        border-radius: 14px;
    }
    .tp-hero-avatar,
    #talepify-profile-avatar { width: 126px; height: 126px; margin-top: -66px; }
    .tp-stat { padding: 0.1rem 0.08rem; }
    .tp-stat strong { font-size: 0.82rem; }
}

/* Hero girişleri yükleme perdesi inene kadar durur; yoksa blur bitmiş görünür */
body.talepify-profile-page .tp-hero__intro > *,
body.talepify-profile-page .tp-card,
body.talepify-profile-page .tp-hero__media,
body.talepify-profile-page .tp-hero__media img,
body.talepify-profile-page .tp-stats,
body.talepify-profile-page .tp-search,
body.talepify-profile-page .tp-stat {
    animation-play-state: paused;
}

body.talepify-profile-page .t-profile-content-wrap.is-hero-in .tp-hero__intro > *,
body.talepify-profile-page .t-profile-content-wrap.is-hero-in .tp-card,
body.talepify-profile-page .t-profile-content-wrap.is-hero-in .tp-hero__media,
body.talepify-profile-page .t-profile-content-wrap.is-hero-in .tp-hero__media img,
body.talepify-profile-page .t-profile-content-wrap.is-hero-in .tp-stats,
body.talepify-profile-page .t-profile-content-wrap.is-hero-in .tp-search,
body.talepify-profile-page .t-profile-content-wrap.is-hero-in .tp-stat {
    animation-play-state: running;
}

@media (prefers-reduced-motion: reduce) {
    .tp-listing__card:hover { transform: none; }
    .tp-listing__card:hover .tp-listing__media img { transform: none; }
    .tp-hero__intro > *,
    .tp-stat,
    .tp-stats,
    .tp-card,
    .tp-hero__media,
    .tp-search,
    .tp-listing,
    .tp-district-card,
    .talepify-review-card,
    .tp-hero__media img { animation: none !important; opacity: 1; filter: none; transform: none; }
    [data-reveal] { opacity: 1; filter: none; transform: none; transition: none; }
    .tp-tilt { transform: none !important; }
    .t-profile-content-wrap,
    .t-profile-content-wrap.is-ready,
    body.talepify-profile-page .t-profile-content-wrap,
    body.talepify-profile-page .t-profile-content-wrap.is-ready { opacity: 1; transition: none; }
    .t-profile-loading-state.t-profile-booting.is-leaving { transition: none; opacity: 0; }
}

/* ============================== CRIMSON ADA HEADER ============================== */
body.talepify-profile-page.tf-island-nav .navbar-wrapper {
    width: var(--hm-wrap);
    max-width: none;
    top: max(12px, env(safe-area-inset-top));
}

body.talepify-profile-page.tf-island-nav .navbar-custom,
body.talepify-profile-page.tf-island-nav .navbar-custom.scrolled,
html.tf-on-dark body.talepify-profile-page.tf-island-nav .navbar-custom,
html.tf-on-dark body.talepify-profile-page.tf-island-nav .navbar-custom.scrolled {
    background: linear-gradient(
        135deg,
        #9a102f 0%,
        #c4143a 48%,
        #dc143c 100%
    ) !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    box-shadow:
        0 18px 44px rgba(140, 12, 38, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.22) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-radius: 100px;
    min-height: 66px;
    padding: 0.4rem 0.4rem 0.4rem 1.2rem;
    gap: 0.8rem;
}

body.talepify-profile-page.tf-island-nav .nav-brand img {
    height: 32px;
}

body.talepify-profile-page.tf-island-nav .navbar-custom .nav-links {
    gap: 0.08rem;
    padding: 0.15rem;
}

body.talepify-profile-page.tf-island-nav .navbar-custom .nav-links a {
    color: rgba(255, 255, 255, 0.92);
    padding: 0.55rem 0.78rem;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: -0.025em;
}

body.talepify-profile-page.tf-island-nav .navbar-custom .nav-links a:hover,
body.talepify-profile-page.tf-island-nav .navbar-custom .nav-links a[aria-current="page"] {
    color: #fff;
}

body.talepify-profile-page.tf-island-nav .tf-nav-pill {
    background: rgba(255, 255, 255, 0.16);
    top: 0.15rem;
    height: calc(100% - 0.3rem);
}

body.talepify-profile-page.tf-island-nav .navbar-custom .btn-primary-custom {
    background: #fff;
    color: #b0102e !important;
    border: 0;
    box-shadow: 0 8px 20px rgba(80, 0, 18, 0.18);
    padding: 0.68rem 1.25rem;
}

body.talepify-profile-page.tf-island-nav .navbar-custom .btn-primary-custom:hover {
    background: #fff;
    color: #8a0c26 !important;
}

body.talepify-profile-page.tf-island-nav .navbar-custom .mobile-toggle,
body.talepify-profile-page .navbar-custom.tf-island-header .mobile-toggle {
    background: #fff !important;
    border: 0 !important;
    box-shadow: 0 6px 16px rgba(80, 0, 18, 0.16) !important;
    color: #b0102e !important;
}

body.talepify-profile-page.tf-island-nav #mobileMenu .nav-links > li:has(> a.btn-primary-custom) {
    border-bottom: 0;
    padding-top: 1.15rem;
}

body.talepify-profile-page.tf-island-nav #mobileMenu .nav-links a.btn-primary-custom,
body.talepify-profile-page #profile-request-btn-mobile {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    width: 100%;
    margin: 0;
    padding: 0.95rem 1.35rem !important;
    border: 0;
    border-radius: 999px;
    background: #fff;
    color: #b0102e !important;
    font-family: Inter, system-ui, sans-serif;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    text-decoration: none;
    box-shadow: 0 12px 28px rgba(0, 0, 18, 0.18);
}

body.talepify-profile-page.tf-island-nav #mobileMenu .nav-links a.btn-primary-custom[style*="display: flex"],
body.talepify-profile-page.tf-island-nav #mobileMenu .nav-links a.btn-primary-custom[style*="display:flex"],
body.talepify-profile-page #profile-request-btn-mobile[style*="display: flex"],
body.talepify-profile-page #profile-request-btn-mobile[style*="display:flex"] {
    display: inline-flex !important;
}

body.talepify-profile-page.tf-island-nav #mobileMenu .nav-links a.btn-primary-custom:hover,
body.talepify-profile-page #profile-request-btn-mobile:hover {
    background: #fff;
    color: #8a0c26 !important;
}
