:root {
    --ink: #1f2933;
    --night: #0f4470;
    --mark: #0f4470;
    --paper: #f5f6f8;
    --line: #e5e7eb;
    --muted: #6b7280;
    --price: #00aba2;
    --navy: #0f4470;
}

html {
    scroll-behavior: smooth;
    box-sizing: border-box;
    scrollbar-width: thin;
    scrollbar-color: #0f4470 #eef3f7;
}
html::-webkit-scrollbar,
body.site-body::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
html::-webkit-scrollbar-track,
body.site-body::-webkit-scrollbar-track {
    background: #eef3f7;
}
html::-webkit-scrollbar-thumb,
body.site-body::-webkit-scrollbar-thumb {
    background: #0f4470;
    border-radius: 99px;
    border: 2px solid #eef3f7;
}
html::-webkit-scrollbar-thumb:hover,
body.site-body::-webkit-scrollbar-thumb:hover {
    background: #00aba2;
}
html::-webkit-scrollbar-corner,
body.site-body::-webkit-scrollbar-corner {
    background: #eef3f7;
}
*, *::before, *::after { box-sizing: inherit; }

body.site-body {
    margin: 0;
    background: #fff;
    color: var(--ink);
    font-family: Montserrat, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.5;
}

.font-display,
h1, h2, h3,
.contentMenuAdi,
.mainKategories {
    font-family: Montserrat, Arial, sans-serif;
    font-weight: 700;
    letter-spacing: 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: #0f4470;
    color: #fff;
}
.home-page .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: transparent;
}
.hero-block { position: relative; }
.home-page { --hero-h: 85dvh; }
@media (min-width: 1024px) {
    .home-page { --hero-h: 95dvh; }
}
.hero-wrap {
    height: var(--hero-h, 85dvh);
    min-height: 85vh;
    max-height: none;
}
@media (min-width: 1024px) {
    .hero-wrap { min-height: 95vh; }
}
.search-close {
    display: none;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    border: 0;
    background: #f4f7f9;
    color: #0f4470;
    font-size: 16px;
    cursor: pointer;
}
.home-search-bar { display: none; }
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(15, 68, 112, .42) 0%, rgba(15, 68, 112, .10) 42%, transparent 72%);
}
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.site-header.is-scrolled {
    background: #0f4470;
    box-shadow: 0 10px 28px rgba(15, 68, 112, .18);
}
.home-page .site-header.is-scrolled {
    position: fixed;
    background: #0f4470 !important;
}
.header-bar {
    padding-top: 18px;
    padding-bottom: 18px;
    transition: padding .28s ease;
}
@media (min-width: 1024px) {
    .header-bar { padding-top: 0; }
    body:not(.home-page) .site-header:not(.is-scrolled) .header-logo {
        padding-top: 10px;
    }
}
.header-logo {
    display: inline-flex;
    align-items: center;
}
.imgLogo {
    display: block;
    height: 56px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    transition: height .28s ease, max-width .28s ease;
}
.site-header.is-scrolled .imgLogo {
    height: 50px;
    max-width: 210px;
}
@media (min-width: 768px) {
    .imgLogo { height: 66px; max-width: 250px; }
    .site-header.is-scrolled .imgLogo { height: 58px; max-width: 230px; }
}
.site-header.is-scrolled .header-bar {
    padding-top: 12px;
    padding-bottom: 12px;
}
.site-nav {
    gap: 2px;
}
.nav-item {
    position: relative;
}
.aMenu {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
    text-decoration: none;
    opacity: .92;
    transition: opacity .2s ease, color .2s ease;
}
.aMenu i {
    font-size: 10px;
    opacity: .75;
    transition: transform .2s ease;
}
.aMenu::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 4px;
    height: 2px;
    background: #00aba2;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .22s ease;
}
.nav-item:hover .aMenu,
.nav-item:focus-within .aMenu {
    opacity: 1;
    color: #fff;
}
.nav-item:hover .aMenu::after,
.nav-item:focus-within .aMenu::after {
    transform: scaleX(1);
}
.nav-item:hover .aMenu i {
    transform: rotate(-180deg);
}
.subMenu {
    position: absolute;
    left: 50%;
    top: calc(100% + 6px);
    z-index: 40;
    min-width: 230px;
    margin: 0;
    padding: 8px;
    list-style: none;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 18px 40px rgba(15, 68, 112, .16);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(10px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}
.nav-item:hover .subMenu,
.nav-item:focus-within .subMenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.aSubMenu {
    display: block;
    padding: 10px 12px;
    border-radius: 8px;
    color: #1f2933;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
    text-decoration: none;
    transition: background .18s ease, color .18s ease, padding-left .18s ease;
}
.aSubMenu:hover {
    background: #f3f7fa;
    color: var(--navy);
    padding-left: 16px;
}
.header-tools {
    display: flex;
    align-items: center;
    gap: 10px;
}
.header-top {
    border-bottom: 1px solid rgba(255,255,255,.12);
    background: rgba(12, 51, 84, .28);
}
.home-page .site-header:not(.is-scrolled) .header-top {
    border-bottom: 0;
    background: transparent;
}
.home-page .site-header:not(.is-scrolled) .header-top-inner {
    padding-top: 16px;
    padding-bottom: 10px;
}
.home-page .site-header:not(.is-scrolled) .aMenu,
.home-page .site-header:not(.is-scrolled) .header-top-addr,
.home-page .site-header:not(.is-scrolled) .header-top-tel,
.home-page .site-header:not(.is-scrolled) .lang-switch-btn {
    text-shadow: 0 1px 2px rgba(0,0,0,.7), 0 2px 10px rgba(0,0,0,.45);
}
.site-header.is-scrolled .header-top,
body:not(.home-page) .header-top {
    background: #0c3354;
    border-bottom-color: rgba(255,255,255,.1);
}
.header-top-inner {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 8px 18px;
    max-width: 1170px;
    margin: 0 auto;
    padding: 7px 15px;
    text-align: right;
}
.header-top-addr,
.header-top-tel {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    min-width: 0;
    color: #fff !important;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.3;
}
.header-top-addr span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.header-top-tel {
    flex: none;
    font-weight: 800;
}
.header-top i {
    color: #00aba2;
}
@media (max-width: 1023px) {
    .header-top { display: none; }
}
.lang-switch-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    padding: 5px 12px 5px 7px;
    border: 1px solid rgba(255,255,255,.28);
    border-radius: 999px;
    background: rgba(255,255,255,.12);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .04em;
    cursor: pointer;
    backdrop-filter: blur(8px);
}
.lang-switch-btn img {
    width: 20px;
    height: 14px;
    object-fit: cover;
    border-radius: 2px;
}
.lang-switch-btn i {
    font-size: 11px;
    line-height: 1;
    opacity: .85;
    transition: transform .2s ease;
}
.lang-switch.is-open .lang-switch-btn i { transform: rotate(180deg); }
.lang-switch.is-open .lang-switch-btn,
.lang-switch-btn:hover {
    background: rgba(255,255,255,.2);
    border-color: rgba(255,255,255,.45);
}
.lang-switch-menu {
    min-width: 108px;
    padding: 6px;
    border: 0;
    border-radius: 0;
    background: #fff;
    box-shadow: 0 18px 40px rgba(15, 68, 112, .18);
    top: calc(100% + 8px);
    right: 0;
}
.lang-switch-menu li a {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 0;
    color: #17324a;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .04em;
    white-space: nowrap;
}
.lang-switch-menu li a span {
    display: inline-block;
    line-height: 1;
}
.lang-switch-menu li a img {
    display: block;
    width: 20px;
    height: 14px;
    flex: 0 0 20px;
    object-fit: cover;
    border-radius: 2px;
}
.lang-switch-menu li.active a,
.lang-switch-menu li a:hover {
    background: #f3f7fa;
    color: var(--navy);
}

body.nav-locked { overflow: hidden; }
body.nav-locked .site-header,
body.nav-locked .home-search-bar,
body.nav-locked .axis-dock { visibility: hidden; pointer-events: none; }

.drawer-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 5px;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}
@media (min-width: 1024px) {
    .drawer-toggle { display: none; }
}
.ham-line {
    display: block;
    height: 2px;
    width: 20px;
    background: #fff;
    transition: transform .25s ease, opacity .2s ease, width .25s ease;
}
.ham-line:nth-child(3) { width: 14px; }
.drawer-toggle:not(.collapsed) { align-items: center; }
.drawer-toggle:not(.collapsed) .ham-line:nth-child(1) { transform: translateY(7px) rotate(45deg); width: 20px; }
.drawer-toggle:not(.collapsed) .ham-line:nth-child(2) { opacity: 0; }
.drawer-toggle:not(.collapsed) .ham-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); width: 20px; }

.drawermenu {
    position: fixed;
    inset: 0;
    z-index: 92;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #0c3354;
    color: #fff;
    pointer-events: none;
    opacity: 0;
    transform: translateX(18%);
    transition: transform .42s cubic-bezier(.22, 1, .36, 1), opacity .28s ease;
}
.drawermenu::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 4px;
    background: #00aba2;
}
.drawermenu.is-open {
    opacity: 1;
    transform: none;
    pointer-events: auto;
}
.drawermenu-overlay { display: none; }
.drawermenu-overlay.is-open { display: none; }

.mnav {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
    padding: 18px 28px 0 32px;
    overflow: hidden;
}
.mnav-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 8px 0 28px;
    background: transparent;
}
.mnav-brand {
    display: grid;
    gap: 4px;
    text-decoration: none;
}
.mnav-brand span {
    color: #00aba2;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .2em;
    text-transform: uppercase;
}
.mnav-brand b {
    color: #fff;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -.03em;
    line-height: 1;
}
.mnav-close {
    margin: 0;
    padding: 0;
    border: 0;
    background: none;
    color: #9adfd9;
    font-family: inherit;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    cursor: pointer;
}
.mnav-list {
    counter-reset: mnav;
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
    min-height: 0;
    min-width: 0;
    overflow-x: hidden;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.mnav-list::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}
.mnav-list > li { counter-increment: mnav; }
.drawermenu.is-open .mnav-list > li {
    animation: mnavIn .4s ease both;
}
.drawermenu.is-open .mnav-list > li:nth-child(1) { animation-delay: .04s; }
.drawermenu.is-open .mnav-list > li:nth-child(2) { animation-delay: .08s; }
.drawermenu.is-open .mnav-list > li:nth-child(3) { animation-delay: .12s; }
.drawermenu.is-open .mnav-list > li:nth-child(4) { animation-delay: .16s; }
.drawermenu.is-open .mnav-list > li:nth-child(5) { animation-delay: .2s; }
.drawermenu.is-open .mnav-list > li:nth-child(6) { animation-delay: .24s; }
.drawermenu.is-open .mnav-list > li:nth-child(7) { animation-delay: .28s; }
.drawermenu.is-open .mnav-list > li:nth-child(8) { animation-delay: .32s; }
@keyframes mnavIn {
    from { opacity: 0; transform: translateX(16px); }
    to { opacity: 1; transform: none; }
}
.mnav-link,
.mnav-acc-btn {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 14px 0;
    border: 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
    background: transparent;
    color: #fff !important;
    font-family: inherit;
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -.03em;
    line-height: 1.15;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
}
.mnav-link::before,
.mnav-acc-btn::before {
    content: counter(mnav, decimal-leading-zero);
    flex: none;
    min-width: 36px;
    margin-right: 14px;
    color: #00aba2;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
}
.mnav-acc-btn span { flex: 1; }
.mnav-acc-btn i {
    flex: none;
    margin-left: 12px;
    color: #00aba2;
    font-size: 12px;
    transition: transform .2s ease;
}
.mnav-acc.is-open .mnav-acc-btn i { transform: rotate(45deg); }
.mnav-sub {
    display: none;
    list-style: none;
    margin: 0;
    padding: 4px 0 16px 50px;
}
.mnav-acc.is-open .mnav-sub { display: block; }
.mnav-sub a {
    display: block;
    padding: 8px 0;
    color: rgba(255,255,255,.68) !important;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
}
.mnav-sub a:hover { color: #00aba2 !important; }
.mnav-langs {
    display: flex;
    gap: 8px;
    padding: 18px 0 8px;
}
.mnav-langs a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border: 1px solid rgba(255,255,255,.22);
    background: transparent;
    color: #fff !important;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .06em;
    text-decoration: none;
}
.mnav-langs a.is-active,
.mnav-langs a:hover {
    background: #00aba2;
    border-color: #00aba2;
    color: #fff !important;
}
.mnav-langs img {
    width: 18px;
    height: 12px;
    object-fit: cover;
}
.mnav-foot {
    display: grid;
    gap: 10px;
    padding: 8px 0 calc(22px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(255,255,255,.1);
}
.mnav-phone {
    color: #fff !important;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -.03em;
    text-decoration: none;
}
.mnav-actions {
    display: flex;
    gap: 18px;
}
.mnav-cta {
    color: #9adfd9 !important;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    text-decoration: none;
    background: none;
    min-height: 0;
}
.mnav-cta.is-wa { background: none; color: #9adfd9 !important; }

.site-select {
    width: 100%;
    border-radius: 4px;
    border: 1px solid #dce3e8;
    background: #fff;
    color: var(--ink);
    padding: 10px 12px;
    font-size: 13px;
    outline: none;
}
.site-select:focus {
    border-color: var(--navy);
}

.search-overlay .site-select option { color: var(--ink); }

.search-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}
.search-tab {
    border: 1px solid #fff;
    background: #fff;
    color: #0f4470;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .02em;
    cursor: pointer;
    border-radius: 999px;
    box-shadow: 0 8px 18px rgba(15, 68, 112, .22);
}
.search-tab:hover {
    background: #eef6f9;
    color: #0f4470;
}
.search-tab.is-active {
    background: #0f4470;
    border-color: #0f4470;
    color: #fff;
    font-weight: 800;
}
.searchBoxMain {
    background: transparent;
    padding: 0;
    box-shadow: none;
}
.search-bar {
    display: flex;
    align-items: center;
    gap: 0;
    overflow: hidden;
    min-height: 62px;
    padding: 7px 7px 7px 6px;
    background: #fff;
    border-radius: 9999px;
    box-shadow: 0 16px 40px rgba(0,0,0,.28);
}
.search-bar-icon {
    padding-left: 14px;
    color: #0f4470;
    font-size: 16px;
}
.search-input {
    flex: 1;
    min-width: 0;
    height: 46px;
    border: 0;
    outline: none;
    background: transparent;
    padding: 0 12px;
    font-size: 14px;
    color: #1f2933;
}
.search-input::placeholder { color: #9aa3ad; }
.search-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 108px;
    height: 48px;
    padding: 0 26px;
    border: 0;
    border-radius: 9999px;
    background: #0f4470;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
}
.search-submit:hover { background: #0c365a; color: #fff; }

.compare-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 79;
    background: rgba(12, 28, 44, .45);
}
.compareDiv {
    display: none;
    position: fixed;
    left: 50%;
    top: 50%;
    bottom: auto;
    z-index: 81;
    width: min(560px, calc(100% - 28px));
    transform: translate(-50%, -50%);
    background: #fff;
    border: 0;
    box-shadow: 0 30px 80px rgba(12, 28, 44, .35);
    overflow: visible;
    padding: 28px 24px 22px;
}
.compare-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border: 0;
    background: #eef3f6;
    color: #0f4470;
    cursor: pointer;
    font-size: 16px;
}
.compareDivHeader {
    color: #0f4470 !important;
    font-size: 20px !important;
    font-weight: 800 !important;
    background: transparent !important;
    text-align: center !important;
    padding: 0 36px 0 0 !important;
}
.compare-hint {
    margin: 6px 0 18px;
    text-align: center;
    color: #6b7280;
    font-size: 13px;
}
.compareDivContent {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    align-items: stretch;
    min-height: 0;
    padding: 0;
    background: transparent;
}
.cmp-slot {
    position: relative;
    min-height: 168px;
    background: #f4f7f9;
    border: 1px dashed #c5d4de;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}
.cmp-slot:not(.is-filled) {
    cursor: pointer;
}
.cmp-slot:not(.is-filled):hover {
    border-color: #0f4470;
    background: #eef3f7;
}
.cmp-placeholder {
    color: #8ea0ad;
    font-size: 13px;
    font-weight: 600;
    padding: 12px;
}
.cmp-slot.is-filled {
    border-style: solid;
    border-color: #0f4470;
    background: #0f4470;
}
.cmp-slot img,
.cmp-slot .compareImages {
    width: 100%;
    height: 168px;
    object-fit: cover;
    display: block;
}
.cmp-slot-name {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 22px 10px 8px;
    background: linear-gradient(180deg, transparent, rgba(0,0,0,.72));
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-align: left;
}
.compare-remove {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 26px;
    height: 26px;
    border: 0;
    background: #fff;
    color: #0f4470;
    cursor: pointer;
    line-height: 26px;
    font-size: 13px;
}
.compareDiv-actions {
    padding: 16px 0 0;
    background: transparent;
}
.compareDiv-actions .compare-go-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 44px;
    border: 0;
    background: #0f4470;
    color: #fff !important;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
}
.compareDiv-actions .compare-go-btn:hover {
    background: #0c3659;
    color: #fff !important;
}
.axis-dock {
    position: fixed;
    right: 20px;
    bottom: 22px;
    z-index: 72;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}
.dock-btn,
.dock-wa {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    color: #fff !important;
    text-decoration: none;
    box-shadow: 0 12px 28px rgba(15, 68, 112, .22);
    cursor: pointer;
    font-family: inherit;
}
.dock-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #0f4470;
    font-size: 20px;
}
.dock-btn:hover { background: #0c3659; color: #fff !important; }
.dock-top {
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity .25s ease, transform .25s ease, background .2s ease;
}
.dock-top.is-show {
    opacity: 1;
    pointer-events: auto;
    transform: none;
}
.dock-fav { font-size: 16px; }
.dock-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 9px;
    background: #00aba2;
    color: #fff !important;
    font-size: 10px;
    font-weight: 800;
    line-height: 18px;
    text-align: center;
}
.dock-badge[hidden] { display: none !important; }
.dock-wa {
    height: 52px;
    padding: 0 16px 0 14px;
    gap: 8px;
    border-radius: 26px;
    background: #25d366;
    box-shadow: 0 12px 28px rgba(37, 211, 102, .38);
}
.dock-wa i { font-size: 22px; }
.dock-wa span {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}
.dock-wa:hover { color: #fff !important; filter: brightness(1.05); }
@media (max-width: 1023px) {
    .axis-dock {
        right: 14px;
        bottom: 16px;
    }
    .dock-wa { width: 52px; padding: 0; }
    .dock-wa span { display: none; }
    .home-page .axis-dock {
        bottom: calc(100dvh - var(--hero-h, 85dvh) + 132px);
        z-index: 40;
    }
    body:has(.pf-open) .axis-dock {
        bottom: 86px;
    }
    body:has(.bottomContact) .axis-dock { bottom: 168px; }
    body:has(.emlakIcerikDetail) .dock-wa { display: none !important; }
}

body.fav-open { overflow: hidden; }
body.fav-open .axis-dock { visibility: hidden; pointer-events: none; }
.fav-overlay {
    position: fixed;
    inset: 0;
    z-index: 93;
    background: rgba(12, 28, 44, .45);
}
.fav-overlay[hidden] { display: none !important; }
.fav-panel {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 94;
    display: flex;
    flex-direction: column;
    width: min(400px, 100%);
    background: #fff;
    box-shadow: -18px 0 50px rgba(15, 68, 112, .18);
    transform: translateX(110%);
    transition: transform .32s cubic-bezier(.22, 1, .36, 1);
}
.fav-panel.is-open { transform: none; }
.fav-panel[hidden] { display: none !important; }
.fav-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding: 22px 22px 16px;
    border-bottom: 1px solid #e6eef3;
}
.fav-head small {
    display: block;
    color: #00aba2;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.fav-head h2 {
    margin: 4px 0 0;
    color: #0f4470;
    font-size: 22px;
    font-weight: 800;
}
.fav-close {
    width: 36px;
    height: 36px;
    border: 0;
    background: #eef3f6;
    color: #0f4470;
    cursor: pointer;
    font-size: 16px;
}
.fav-list {
    flex: 1;
    overflow-y: auto;
    padding: 12px 16px 28px;
    scrollbar-width: none;
}
.fav-list::-webkit-scrollbar { display: none; }
.fav-empty {
    margin: 24px 8px;
    color: #6b7c89;
    font-size: 14px;
    line-height: 1.5;
}
.fav-item {
    position: relative;
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 12px;
    margin-bottom: 10px;
    padding: 8px;
    border: 1px solid #e6eef3;
    text-decoration: none;
    color: inherit;
}
.fav-item img {
    display: block;
    width: 92px;
    height: 78px;
    object-fit: cover;
    background: #e8eef3;
}
.fav-item b {
    display: block;
    color: #0f4470;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.3;
}
.fav-item small {
    display: block;
    margin-top: 4px;
    color: #6b7c89;
    font-size: 12px;
}
.fav-item em {
    display: block;
    margin-top: 6px;
    color: #00aba2;
    font-size: 13px;
    font-style: normal;
    font-weight: 800;
}
.fav-del {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 26px;
    height: 26px;
    border: 0;
    background: #fff;
    color: #0f4470;
    cursor: pointer;
}
.prop-fav {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 4;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .94);
    color: #0f4470;
    box-shadow: 0 8px 18px rgba(12, 32, 52, .2);
    cursor: pointer;
    font-size: 15px;
}
.prop-fav.is-on {
    background: #0f4470;
    color: #fff;
}
.pd-fav {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 40px;
    padding: 0 14px;
    border: 1px solid #e6eef3;
    background: #fff;
    color: #0f4470 !important;
    font-family: inherit;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
}
.pd-fav.is-on {
    background: #0f4470;
    border-color: #0f4470;
    color: #fff !important;
}

.searchComponent.is-collapsed { display: block; }

.hero-slide { transition: opacity .55s ease; }
.hero-dot, .hero-index {
    width: 8px;
    height: 8px;
    min-width: 8px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.45);
    color: transparent;
    font-size: 0;
}
.hero-dot.is-active,
.hero-dot.bg-white { background: #fff; }

.ulEmlakTipleri {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 12px;
    list-style: none;
    margin: 0 auto;
    padding: 2px 2px 10px;
    width: max-content;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
    overscroll-behavior-x: contain;
    cursor: grab;
    scrollbar-width: thin;
}
.ulEmlakTipleri.is-drag { cursor: grabbing; }
.ulEmlakTipleri::-webkit-scrollbar {
    height: 4px;
}
.ulEmlakTipleri::-webkit-scrollbar-thumb {
    background: #c5d4df;
    border-radius: 99px;
}
.ulEmlakTipleri li {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 118px;
    padding: 16px 18px 14px;
    background: #fff;
    color: var(--navy);
    font-size: 13px;
    font-weight: 600;
    border: 1px solid #e6eef4;
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(15, 68, 112, .08);
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.ulEmlakTipleri li .type-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 8px;
    border-radius: 50%;
    background: #eef5f9;
}
.ulEmlakTipleri li {
    flex: 0 0 auto;
    white-space: nowrap;
}
.ulEmlakTipleri li img {
    width: 26px;
    height: 26px;
    object-fit: contain;
    filter: none;
}
.ulEmlakTipleri li:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(15, 68, 112, .14);
}
.ulEmlakTipleri li.redText {
    color: #fff !important;
    background: #0f4470;
    border-color: #0f4470;
    font-weight: 700;
}
.ulEmlakTipleri li.redText .type-icon {
    background: rgba(255,255,255,.18);
}
.ulEmlakTipleri li.redText img {
    filter: brightness(0) invert(1);
}
.divEmlakTipleri {
    position: sticky;
    top: 126px;
    z-index: 45;
    margin: 0 0 22px;
    padding: 10px 0 6px;
    background: #f5f7f9;
    min-width: 0;
}
@media (max-width: 767px) {
    .divEmlakTipleri {
        margin: 0 0 18px;
        padding: 8px 0 4px;
        top: 108px;
    }
    .ulEmlakTipleri {
        gap: 10px;
        padding: 2px 2px 8px;
        scrollbar-width: none;
    }
    .ulEmlakTipleri::-webkit-scrollbar {
        display: none;
        height: 0;
    }
    .ulEmlakTipleri li {
        min-width: 96px;
        padding: 12px 14px 10px;
        user-select: none;
        -webkit-user-select: none;
    }
}
.home-portfolio {
    background: #f5f7f9;
    padding: 28px 15px 56px;
}
.home-portfolio-inner {
    max-width: 1170px;
    margin: 0 auto;
}
.listings-grid {
    display: grid;
    gap: 22px;
    grid-template-columns: 1fr;
}
@media (min-width: 640px) {
    .listings-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
    .listings-grid { grid-template-columns: 1fr 1fr 1fr; }
}
.home-empty {
    margin: 4px 0 0;
    padding: 28px 8px 4px;
    color: #5b7384;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}
.home-empty[hidden] {
    display: none !important;
}

.listing-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    overflow: visible;
    border: 0;
    border-radius: 0;
    box-shadow: 0 1px 0 rgba(15, 68, 112, .06), 0 18px 40px rgba(15, 68, 112, .08);
    transition: transform .28s ease, box-shadow .28s ease;
}
.listing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 1px 0 rgba(15, 68, 112, .08), 0 28px 54px rgba(15, 68, 112, .16);
}
.listing-card .listing-photo {
    position: relative;
    overflow: hidden;
}
.listing-card img.etkinlikMainImg {
    display: block;
    width: 100%;
    height: 248px;
    object-fit: cover;
    transition: transform .5s ease;
}
.listing-card:hover img.etkinlikMainImg { transform: scale(1.04); }
.listing-kicker { display: none; }
.prop-sale {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 12px 6px 10px;
    background: #fff;
    color: #0f4470;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    box-shadow: 0 10px 22px rgba(12, 32, 52, .28);
}
.prop-sale::before {
    content: "";
    width: 7px;
    height: 7px;
    background: #00aba2;
}
.prop-band {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 32px 16px 12px;
    background: linear-gradient(180deg, transparent 0%, rgba(12, 32, 52, .82) 100%);
    color: #fff;
}
.prop-type {
    display: block;
    margin-bottom: 4px;
    font-size: 11px;
    font-weight: 700;
    color: #9adfd9;
}
.prop-price {
    display: block;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
}
.listing-card .etkinlikBaslikMain {
    display: flex;
    flex-direction: column;
    flex: 1;
    margin: 0;
    padding: 16px 16px 14px;
    height: auto;
}
.listing-title {
    display: block;
    color: #17324a;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
    text-decoration: none;
}
.listing-title:hover { color: var(--navy); }
.listing-loc {
    margin-top: 6px;
    color: #6b7280;
    font-size: 12px;
}
.listing-price { display: none; }
.listing-spec {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    margin-top: 14px;
    border: 1px solid #e7eef3;
    background: #f7fafc;
}
.listing-spec span {
    display: flex;
    flex-direction: column;
    padding: 9px 10px;
    border-right: 1px solid #e7eef3;
    font-size: 11px;
    color: #6b7280;
}
.listing-spec span:last-child { border-right: 0; }
.listing-spec small {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: #8aa0b0;
}
.listing-spec b {
    margin: 2px 0 0;
    color: #17324a;
    font-size: 14px;
}
.listing-spec img { display: none; }
.listing-card.is-list img.etkinlikMainImg {
    height: 220px;
}
@media (min-width: 768px) {
    .listing-card.is-list { flex-direction: row; }
    .listing-card.is-list .listing-photo {
        width: 42%;
        min-width: 280px;
    }
    .listing-card.is-list img.etkinlikMainImg {
        height: 100%;
        min-height: 260px;
    }
    .listing-card.is-list .etkinlikBaslikMain {
        justify-content: center;
        padding: 22px 24px;
    }
}
.prop-tools {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}
.prop-share { position: relative; z-index: 8; }
.prop-tool {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 1px solid #d7e2ea;
    background: #fff;
    color: #0f4470;
    cursor: pointer;
    font-size: 14px;
}
.prop-tool:hover {
    background: #0f4470;
    border-color: #0f4470;
    color: #fff;
}
.prop-share-menu {
    position: absolute;
    right: 0;
    bottom: calc(100% + 8px);
    left: auto;
    top: auto;
    z-index: 40;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    min-width: 180px;
    padding: 8px;
    background: #ffffff !important;
    opacity: 1 !important;
    border: 1px solid #d7e2ea;
    border-radius: 0;
    box-shadow: 0 16px 36px rgba(15, 68, 112, .28);
    white-space: nowrap;
}
.prop-share-menu.is-open,
.dvAllShareButtons.is-open {
    display: flex;
    background: #ffffff !important;
    opacity: 1 !important;
}
.social-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    height: 38px;
    padding: 0 10px;
    border: 0;
    background: #ffffff;
    color: #17324a;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    text-align: left;
}
.social-btn svg {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
}
.social-btn.social-fb { color: #1877f2; }
.social-btn.social-in { color: #0a66c2; }
.social-btn.social-wa { color: #128c7e; }
.social-btn.social-close {
    color: #0f4470;
    background: #e8eef3;
}
.social-btn:hover { background: #eef4f8; }
.listing-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid #eef3f6;
    position: relative;
    z-index: 6;
}
.listing-agent {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    color: #0f4470;
    text-decoration: none;
}
.listing-agent img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    flex: 0 0 42px;
    border: 2px solid #fff;
    box-shadow: 0 0 0 1px #d7e3ec;
}
.listing-agent-meta {
    display: flex;
    flex-direction: column;
    min-width: 0;
    line-height: 1.25;
}
.listing-agent-meta small {
    display: block;
    color: #8aa0b0;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}
.listing-agent-meta b {
    display: block;
    overflow: hidden;
    color: #0f4470;
    font-size: 13px;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.listing-actions { display: flex; align-items: center; gap: 6px; }
.listing-actions button {
    width: 32px;
    height: 32px;
    border: 0;
    background: #eef4f8;
    border-radius: 0;
    color: #0f4470;
    cursor: pointer;
}
.listing-actions button:hover {
    background: #0f4470;
    color: #fff;
}

.dvAllShareButtons { display: none; }

.filter-head {
    display: block;
    margin-bottom: 8px;
    color: #8aa0b0;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.pf-page { background: #f5f6f8; min-height: 60vh; overflow-x: hidden; }
.pf-toolbar {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    max-width: 1170px;
    margin: 0 auto;
    padding: 28px 15px 18px;
}
.pf-toolbar h1 {
    margin: 0;
    color: #0f4470;
    font-size: 22px;
    font-weight: 800;
}
.pf-views {
    display: inline-flex;
    overflow: hidden;
    border: 1px solid #dce6ed;
    background: #fff;
}
.pf-views button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 42px;
    padding: 0 16px;
    border: 0;
    background: transparent;
    color: #0f4470;
    font-family: inherit;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
}
.pf-views button.is-on {
    background: #0f4470;
    color: #fff;
}
#backtoListDiv { display: none !important; }
.pf-page #mapDiv {
    display: none;
    max-width: 1170px;
    height: calc(100vh - 210px);
    min-height: 420px;
    margin: 0 auto 28px;
    padding: 0 15px;
}
.pf-count {
    margin: 4px 0 0;
    color: #5b7384;
    font-size: 12px;
    font-weight: 700;
}
.pf-empty {
    padding: 28px 0;
    color: #5b7384;
    font-size: 14px;
}
.pf-expired {
    padding: 28px 20px;
    border: 1px solid #f0d9b5;
    background: #fff8ee;
    border-radius: 14px;
    color: #8a5a12;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
}
.pf-pager {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 28px;
}
.pf-pager button {
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border: 1px solid #e6eef3;
    background: #fff;
    color: #0f4470;
    font-family: inherit;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
}
.pf-pager button:hover:not(:disabled) {
    border-color: #00aba2;
    color: #00aba2;
}
.pf-pager button.is-on {
    background: #0f4470;
    border-color: #0f4470;
    color: #fff;
}
.pf-pager button:disabled {
    opacity: .35;
    cursor: default;
}
.pf-pager span {
    color: #8aa0b0;
    font-weight: 800;
    padding: 0 4px;
}
.listDiv { align-items: start; }
.pf-open {
    display: none;
    position: fixed;
    right: 16px;
    bottom: 18px;
    z-index: 45;
    width: 52px;
    height: 52px;
    align-items: center;
    justify-content: center;
    border: 0;
    background: #0f4470;
    color: #fff;
    font-size: 18px;
    box-shadow: 0 12px 28px rgba(15, 68, 112, .28);
}
.pf-filter {
    position: relative;
    align-self: start;
    height: auto;
    background: #fff;
    border: 1px solid #e6eef3;
    box-shadow: 0 12px 30px rgba(15, 68, 112, .08);
    padding: 18px;
}
.pf-overlay { display: none; }
.pf-close {
    display: none;
    position: absolute;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    border: 0;
    background: #f4f7f9;
    color: #0f4470;
    font-size: 16px;
    cursor: pointer;
}
.pf-form { display: flex; flex-direction: column; gap: 14px; }
.pf-search {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 44px;
    padding: 0 12px;
    background: #f4f7f9;
    border: 1px solid #f4f7f9;
    color: #0f4470;
}
.pf-search:focus-within { background: #fff; border-color: #0f4470; }
.pf-search i { color: #00aba2; }
.pf-search input {
    flex: 1;
    min-width: 0;
    height: 42px;
    border: 0;
    background: transparent;
    color: #0f4470;
    font-size: 13px;
    font-weight: 600;
    outline: none;
}
.pf-tabs {
    display: flex;
    width: 100%;
    background: #f4f7f9;
}
.pf-tab {
    flex: 1;
    height: 40px;
    padding: 0 6px;
    border: 0;
    background: transparent;
    color: #5b7384;
    font-family: inherit;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
}
.pf-tab.is-on {
    background: #0f4470;
    color: #fff;
    font-weight: 800;
}
.pf-hidden {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}
.pf-lab { display: block; }
.pf-lab > span {
    display: block;
    margin-bottom: 7px;
    color: #8aa0b0;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.pf-ctrl,
.pf-lab .IlceId {
    display: block;
    width: 100%;
    height: 44px;
    margin: 0;
    padding: 0 12px;
    border: 1px solid #f4f7f9;
    border-radius: 0;
    background: #f4f7f9;
    color: #0f4470;
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    outline: none;
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%230f4470' d='M0 1.2h12L6 8z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 9px 6px;
    padding-right: 30px;
}
.pf-lab .IlceId { margin-top: 8px; }
.pf-ctrl:focus {
    background-color: #fff;
    border-color: #0f4470;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%230f4470' d='M0 1.2h12L6 8z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 9px 6px;
}
input.pf-ctrl {
    background-image: none;
    padding-right: 12px;
}
.pf-opts {
    max-height: 150px;
    margin: 0;
    padding: 8px 10px;
    overflow-y: auto;
    list-style: none;
    background: #f4f7f9;
}
.pf-opts label {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 0;
    color: #17324a;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}
.pf-opts input.cats {
    width: 15px;
    height: 15px;
    margin: 0;
    accent-color: #0f4470;
    flex: none;
}
.pf-price { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.pf-price .pf-ctrl { padding-right: 12px; background-image: none; }
.pf-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 46px;
    border: 0;
    background: #00aba2;
    color: #fff;
    font-family: inherit;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
}
.pf-submit:hover { background: #08958e; color: #fff; }
@media (min-width: 1024px) {
    .pf-filter {
        position: sticky;
        top: 88px;
    }
    .pf-overlay { display: none !important; }
}

@media (max-width: 1023px) {
    .searchComponent {
        display: block;
        left: 0;
        right: 0;
        bottom: 20px;
        padding: 0 12px;
    }
    .search-bar { min-height: 52px; }
    .search-submit { min-width: 76px; }
    .pf-open { display: inline-flex; }
    .pf-close { display: block; }
    .pf-page { padding-bottom: 70px; }
    .pf-overlay {
        display: none;
        position: fixed;
        inset: 0;
        z-index: 79;
        background: rgba(12, 32, 52, .55);
    }
    .leftBox {
        display: none;
        position: fixed;
        top: 50%;
        left: 50%;
        bottom: auto;
        z-index: 80;
        width: min(440px, calc(100% - 28px));
        max-height: min(86vh, 720px);
        overflow-y: auto;
        padding: 48px 18px 24px;
        background: #fff;
        border: 0;
        box-shadow: 0 24px 60px rgba(12, 32, 52, .28);
        transform: translate(-50%, -50%);
    }
    body.pf-locked { overflow: hidden; }
}

.site-dd { position: relative; display: inline-block; }
.site-dd-menu {
    display: none;
    position: absolute;
    right: 0;
    top: 110%;
    z-index: 40;
    min-width: 160px;
    padding: 6px 0;
    background: #fff;
    border: 1px solid #e6eef3;
    box-shadow: 0 18px 40px rgba(15, 68, 112, .18);
}
.site-dd.is-open .site-dd-menu { display: block; }
.site-dd-menu li a {
    display: block;
    padding: 8px 14px;
    cursor: pointer;
    color: #0f4470;
    font-size: 13px;
    font-weight: 600;
}
.site-dd-menu li.active a,
.site-dd-menu li a:hover { background: #f3f6f8; }

.content-body img { max-width: 100%; height: auto; }
.content-body p { margin-bottom: .85rem; }
.swiper { overflow: hidden; }
.benzerIlanlar { margin-top: 30px; }
#map, #mapDiv {
    position: relative;
    z-index: 1;
    isolation: isolate;
    width: 100%;
}
.leaflet-container {
    z-index: 1 !important;
}
.leaflet-div-icon.mpin-icon,
.mpin-icon {
    background: transparent !important;
    border: 0 !important;
    width: 0 !important;
    height: 0 !important;
}
.mpin {
    display: inline-block;
    position: relative;
    transform: translate(-50%, calc(-100% - 7px));
    padding: 7px 10px;
    background: #0f4470;
    color: #fff;
    font-family: Montserrat, Arial, sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .02em;
    white-space: nowrap;
    box-shadow: 0 10px 22px rgba(15, 68, 112, .28);
}
.mpin::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -6px;
    margin-left: -6px;
    border: 6px solid transparent;
    border-top-color: #0f4470;
    border-bottom: 0;
}
.mpin.is-rent { background: #00aba2; }
.mpin.is-rent::after { border-top-color: #00aba2; }
.leaflet-popup.mpop-tip .leaflet-popup-content-wrapper,
.leaflet-popup:has(.mpop) .leaflet-popup-content-wrapper {
    padding: 0 !important;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(12, 32, 52, .22);
}
.leaflet-popup.mpop-tip .leaflet-popup-content,
.leaflet-popup:has(.mpop) .leaflet-popup-content {
    margin: 0 !important;
    width: 240px !important;
    line-height: 0;
}
.leaflet-popup.mpop-tip .leaflet-popup-tip,
.leaflet-popup:has(.mpop) .leaflet-popup-tip {
    background: #fff;
    box-shadow: none;
}
.leaflet-popup.mpop-tip a.leaflet-popup-close-button,
.leaflet-popup:has(.mpop) a.leaflet-popup-close-button {
    top: 6px;
    right: 8px;
    width: 24px;
    height: 24px;
    color: #fff !important;
    font-size: 18px;
    text-shadow: 0 1px 4px rgba(0,0,0,.45);
}
.mpop {
    display: block;
    width: 240px;
    color: inherit;
    background: #fff;
}
.mpop img {
    display: block;
    width: 100%;
    height: 132px;
    object-fit: cover;
    background: #e8eef3;
}
.mpop-body {
    display: grid;
    gap: 6px;
    padding: 12px 14px 14px;
}
.mpop-body b {
    color: #00aba2;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.mpop-body strong {
    color: #0f4470;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.35;
}
.mpop-body small {
    color: #5b7384;
    font-size: 12px;
    line-height: 1.4;
}
.mpop-body em {
    color: #00aba2;
    font-size: 15px;
    font-style: normal;
    font-weight: 800;
}

a { text-decoration: none; color: inherit; }
a:hover { text-decoration: none; }

.emlakIcerikDetail {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}
.pd-gallery {
    max-width: 1170px;
    margin: 0 auto;
    padding: 18px 15px 0;
    min-width: 0;
}
.pd-gallery-frame {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 92px;
    gap: 10px;
    align-items: stretch;
    min-width: 0;
    max-width: 100%;
}
.pd-stage {
    position: relative;
    min-width: 0;
    overflow: hidden;
    background: #fff;
}
.pd-stage .swiper,
.pd-stage .swiper-wrapper,
.pd-stage .swiper-slide {
    background: #fff;
}
.pd-stage .swiper-pagination { display: none !important; }
.emlakIcerikDetail .swiper.pd-swiper {
    width: 100%;
    height: min(62vh, 560px);
    min-height: 280px;
    margin: 0;
    overflow: hidden;
}
.emlakIcerikDetail .pd-swiper .swiper-wrapper { height: 100%; }
.emlakIcerikDetail .pd-swiper .swiper-slide {
    height: 100%;
    position: relative;
    overflow: hidden;
}
.emlakIcerikDetail .pd-swiper .swiper-slide > a {
    position: absolute;
    inset: 0;
    z-index: 2;
}
.emlakIcerikDetail .swiper-slide img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #fff;
}
.pd-stage-bar {
    position: absolute;
    left: 14px;
    bottom: 14px;
    z-index: 12;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 8px 12px;
    background: #fff;
    color: #0f4470;
    box-shadow: 0 10px 24px rgba(12, 32, 52, .18);
}
.pd-step {
    padding: 0;
    border: 0;
    background: none;
    color: #0f4470;
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
}
.pd-step:hover { color: #00aba2; }
.pd-count {
    min-width: 52px;
    text-align: center;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .06em;
}
.pd-film {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: min(62vh, 560px);
    min-width: 0;
    overflow-x: hidden;
    overflow-y: auto;
    padding-right: 2px;
    scrollbar-width: none;
}
.pd-film::-webkit-scrollbar { display: none; }
.emlakIcerikDetail .js-pd-thumb {
    flex: none;
    width: 92px;
    height: 68px;
    padding: 0;
    overflow: hidden;
    border: 0;
    background: #e8eef2;
    cursor: pointer;
    opacity: .45;
}
.emlakIcerikDetail .js-pd-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.emlakIcerikDetail .js-pd-thumb.is-active { opacity: 1; }
.pd-mob-head { display: none; }
@media (max-width: 767px) {
    .pd-mob-head {
        display: block;
        max-width: 1170px;
        margin: 0 auto;
        padding: 16px 15px 8px;
    }
    .pd-mob-head h1 {
        margin: 0;
        color: #0f4470;
        font-size: 20px;
        font-weight: 800;
        letter-spacing: -.02em;
        line-height: 1.3;
    }
    .pd-mob-head p {
        margin: 6px 0 0;
        color: #5b7384;
        font-size: 13px;
    }
    .pd-mob-head i { color: #00aba2; margin-right: 6px; }
    .pd-desk-title { display: none; }
    .pd-gallery { padding-top: 8px; }
}
.pd-h {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 18px;
    padding: 0 0 12px;
    border-bottom: 1px solid #e8eef2;
    color: #0f4470;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: -.02em;
    line-height: 1.2;
}
.pd-h::before {
    content: "";
    flex: none;
    width: 4px;
    height: 18px;
    background: #00aba2;
}
.pd-h-sub {
    margin: 0 0 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e8eef2;
    color: #0f4470;
    font-size: 13px;
    font-weight: 800;
}
.pd-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid #e8eef2;
    background: #fff;
}
.pd-spec {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(72px, auto);
    align-items: center;
    gap: 16px;
    min-width: 0;
    min-height: 44px;
    padding: 10px 14px;
    border-bottom: 1px dotted #d5e0e8;
    box-sizing: border-box;
}
.pd-spec:nth-child(odd) {
    border-right: 1px solid #e8eef2;
}
.pd-spec-k {
    color: #6b8292;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.35;
}
.pd-spec-v {
    color: #0f4470;
    font-size: 13px;
    font-weight: 800;
    text-align: right;
    line-height: 1.35;
    word-break: break-word;
}
@media (max-width: 720px) {
    .pd-specs { grid-template-columns: 1fr; }
    .pd-spec:nth-child(odd) { border-right: 0; }
}
.benzerIlanlar .pd-h { font-size: 20px; }
.benzerIlanlar .pd-h::before { height: 22px; }
@media (max-width: 760px) {
    .pd-gallery-frame { grid-template-columns: minmax(0, 1fr); }
    .pd-film {
        flex-direction: row;
        max-height: none;
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
    }
    .emlakIcerikDetail .js-pd-thumb { width: 78px; height: 58px; }
    .emlakIcerikDetail .swiper.pd-swiper {
        height: 52vw;
        min-height: 220px;
        max-height: 360px;
    }
}
.pd-phone-num {
    display: block;
    margin-bottom: 4px;
    color: #0f4470 !important;
    font-size: 16px;
    font-weight: 800;
    text-align: center;
    letter-spacing: .02em;
}
.pd-call,
.pd-wa {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    height: 44px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}
.pd-call {
    background: #0f4470;
    color: #fff !important;
}
.pd-call:hover { background: #0c3659; color: #fff !important; }
.pd-wa {
    background: #128c7e;
    color: #fff !important;
}
.pd-wa:hover { background: #0f7668; color: #fff !important; }
.pd-acts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 4px 16px 16px;
}
.pd-act {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 46px;
    padding: 0 10px;
    border: 1px solid #e6eef3;
    background: #f7fafc;
    color: #0f4470 !important;
    font-family: inherit;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    cursor: pointer;
}
.pd-act-ico {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #0f4470;
    color: #fff;
    font-size: 12px;
}
.pd-act:hover,
.pd-act.is-on {
    background: #0f4470;
    border-color: #0f4470;
    color: #fff !important;
}
.pd-act:hover .pd-act-ico,
.pd-act.is-on .pd-act-ico {
    background: #00aba2;
}
.pd-share-box {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
    padding: 0 16px 16px;
    border: 0;
}
.pd-share-box.hidden { display: none !important; }
.pd-share-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 72px;
    padding: 10px 6px;
    border: 1px solid #e6eef3;
    background: #fff;
    font-family: inherit;
    font-size: 11px;
    font-weight: 800;
    text-align: center;
    cursor: pointer;
}
.pd-share-row i { font-size: 16px; }
.pd-share-row.is-fb { color: #1877f2 !important; }
.pd-share-row.is-in { color: #0a66c2 !important; }
.pd-share-row.is-wa { color: #128c7e !important; }
.pd-share-row:hover {
    background: #0f4470;
    border-color: #0f4470;
    color: #fff !important;
}
.pd-agent-soc {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 40px;
    padding: 0 12px;
    background: #f5f6f8;
    color: #0f4470 !important;
    font-size: 12px;
    font-weight: 700;
}
.pd-agent-soc i { width: 16px; text-align: center; }
.pd-agent-soc:hover { background: #e8eef3; }
.etkinlikBaslikMain {
    margin-top: 10px;
    font-size: 15px;
    padding: 0 20px 20px;
    color: #171717;
    text-align: left;
    font-weight: 600;
}
.dvOptionsRow { border-bottom: 1px solid var(--line) !important; }
.dvOptionsLabel { font-size: 13px !important; color: var(--muted); }
.footer { position: relative; overflow: hidden; background: #0c3354; }

.axis-kicker {
    margin-bottom: 6px;
    color: var(--navy);
    font-size: 12px;
    font-weight: 600;
}

.bottomContact { display: none; }
.bc-share-sheet {
    display: none;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: calc(132px + env(safe-area-inset-bottom));
    z-index: 61;
    padding: 12px;
    background: #fff;
    border: 1px solid #e6eef3;
    box-shadow: 0 -12px 32px rgba(15, 68, 112, .14);
}
.bc-share-sheet.hidden { display: none !important; }
@media (max-width: 992px) {
    .pd-aside { display: none !important; }
    .emlakIcerikDetail { padding-bottom: 150px; }
    .bc-share-sheet:not(.hidden) { display: grid; }
    .bottomContact {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px 10px;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 60;
        background: #fff;
        color: #17324a;
        border-top: 1px solid #e6eef3;
        padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
        box-shadow: 0 -12px 32px rgba(15, 68, 112, .14);
    }
    .bc-agent {
        grid-column: 1 / -1;
        display: flex;
        align-items: center;
        gap: 10px;
        min-width: 0;
        color: #0f4470 !important;
        text-decoration: none;
    }
    .bc-agent img {
        width: 42px;
        height: 42px;
        object-fit: cover;
        flex: none;
        background: #e8eef3;
    }
    .bc-agent span { min-width: 0; }
    .bc-agent b {
        display: block;
        overflow: hidden;
        color: #0f4470;
        font-size: 13px;
        font-weight: 800;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .bc-agent small {
        display: block;
        margin-top: 2px;
        color: #17324a;
        font-size: 12px;
        font-weight: 700;
    }
    .bc-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-column: 1 / -1;
        gap: 8px;
    }
    .bc-call,
    .bc-wa,
    .bc-tool {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        height: 50px;
        min-width: 0;
        font-size: 13px;
        font-weight: 800;
        text-decoration: none;
        border: 0;
        font-family: inherit;
        cursor: pointer;
    }
    .bc-ico {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 28px;
        height: 28px;
        flex: none;
        background: rgba(255, 255, 255, .18);
        font-size: 14px;
    }
    .bc-lbl { line-height: 1; }
    .bc-call { background: #0f4470; color: #fff !important; }
    .bc-wa { background: #128c7e; color: #fff !important; }
    .bc-tool {
        background: #f7fafc;
        color: #0f4470 !important;
        border: 1px solid #e6eef3;
    }
    .bc-tool.is-on,
    .bc-tool:hover {
        background: #0f4470;
        border-color: #0f4470;
        color: #fff !important;
    }
    .bc-tool.is-on .bc-ico,
    .bc-tool:hover .bc-ico {
        background: #00aba2;
    }
}

.cmp-page { background: #f4f7f9; }
.cmp-hero {
    background: #0f4470;
    color: #fff;
    padding: 48px 15px 56px;
}
.cmp-hero-inner {
    max-width: 1170px;
    margin: 0 auto;
}
.cmp-hero h1 {
    margin: 0;
    font-size: 30px;
    font-weight: 800;
}
.cmp-wrap {
    max-width: 1170px;
    margin: -28px auto 0;
    padding: 0 15px 56px;
    position: relative;
    z-index: 2;
}
.cmp-empty {
    background: #fff;
    border: 1px solid #e6eef3;
    padding: 28px 22px;
    color: #6b7c89;
}
.cmp-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 22px;
}
.cmp-col {
    background: #fff;
    border: 1px solid #e6eef3;
    box-shadow: 0 12px 30px rgba(15, 68, 112, .08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.cmp-photo {
    position: relative;
    display: block;
    overflow: hidden;
}
.cmp-photo img {
    display: block;
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform .35s ease;
}
.cmp-col:hover .cmp-photo img { transform: scale(1.04); }
.cmp-col-body {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 18px 18px 20px;
    flex: 1;
}
.cmp-name {
    display: block;
    color: #0f4470;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.35;
    text-decoration: none;
}
.cmp-name:hover { color: #00aba2; }
.cmp-loc {
    margin: 8px 0 0;
    color: #6b7c89;
    font-size: 13px;
}
.cmp-loc i { margin-right: 6px; color: #00aba2; }
.cmp-col .listing-spec { margin-top: 16px; }
.cmp-col .listing-agent {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid #eef3f6;
}
.cmp-go {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 16px;
    min-height: 44px;
    background: #0f4470;
    color: #fff !important;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}
.cmp-go:hover { background: #0c3659; }
.cmp-sheet {
    background: #fff;
    border: 1px solid #e6eef3;
    box-shadow: 0 12px 30px rgba(15, 68, 112, .08);
    overflow: hidden;
}
.cmp-row {
    display: grid;
    grid-template-columns: 180px 1fr 1fr;
    gap: 0;
    align-items: center;
    min-height: 52px;
    border-bottom: 1px solid #eef3f6;
    font-size: 13px;
}
.cmp-row:last-child { border-bottom: 0; }
.cmp-row > span {
    padding: 14px 18px;
    min-width: 0;
}
.cmp-row > span:nth-child(2),
.cmp-row > span:nth-child(3) {
    text-align: center;
    font-weight: 600;
    color: #17324a;
    border-left: 1px solid #eef3f6;
}
.cmp-row > span:first-child {
    color: #6b7c89;
    font-weight: 700;
}
.cmp-row-head {
    position: sticky;
    top: 88px;
    z-index: 3;
    background: #0f4470;
    color: #fff;
    min-height: 64px;
}
.cmp-row-head > span {
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}
.cmp-row-head > span:nth-child(2),
.cmp-row-head > span:nth-child(3) {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-left-color: rgba(255,255,255,.14);
    color: #fff;
    font-weight: 700;
}
.cmp-row-head img {
    width: 36px;
    height: 36px;
    object-fit: cover;
    flex: 0 0 36px;
}
.cmp-row-head em {
    font-style: normal;
    max-width: 180px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.cmp-row.is-diff {
    background: #f4fbfa;
}
.cmp-row.is-diff > span:nth-child(2),
.cmp-row.is-diff > span:nth-child(3) {
    color: #0f4470;
    font-weight: 800;
}
.cmp-mapbox {
    margin-top: 22px;
    background: #fff;
    border: 1px solid #e6eef3;
    box-shadow: 0 12px 30px rgba(15, 68, 112, .08);
    overflow: hidden;
}
.cmp-mapbox h2 {
    margin: 0;
    padding: 18px 22px;
    color: #0f4470;
    font-size: 16px;
    font-weight: 800;
    border-bottom: 1px solid #eef3f6;
}
.cmp-page #map {
    height: 380px;
    background: #eef3f6;
}
@media (max-width: 900px) {
    .cmp-row { grid-template-columns: 110px 1fr 1fr; }
    .cmp-row > span { padding: 12px 10px; }
    .cmp-row-head em { display: none; }
    .cmp-photo img { height: 210px; }
}
@media (max-width: 640px) {
    .cmp-hero { padding: 36px 15px 48px; }
    .cmp-hero h1 { font-size: 24px; }
    .cmp-cols { grid-template-columns: 1fr; }
    .cmp-name { font-size: 16px; }
    .cmp-row-head { top: 76px; }
}

.contact-page { background: #f5f6f8; padding-bottom: 64px; }
.contact-hero {
    background: #0f4470;
    color: #fff;
    padding: 56px 15px 72px;
}
.contact-hero-inner { max-width: 1170px; margin: 0 auto; }
.contact-hero-inner span {
    display: block;
    margin-bottom: 8px;
    color: #9adfd9;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}
.contact-hero h1 {
    margin: 0;
    font-size: clamp(26px, 4vw, 36px);
    font-weight: 800;
    letter-spacing: -.02em;
}
.contact-wrap {
    max-width: 1170px;
    margin: -40px auto 0;
    padding: 0 15px;
    position: relative;
    z-index: 2;
}
.contact-split {
    display: grid;
    grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
    background: #fff;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(15, 68, 112, .1);
}
.contact-panel {
    display: flex;
    flex-direction: column;
    padding: 8px 28px 28px;
}
.contact-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 0;
    border-bottom: 1px solid #e8eef2;
    color: inherit;
    text-decoration: none;
}
.contact-row:last-of-type { border-bottom: 0; }
.contact-ico {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: none;
    width: 42px;
    height: 42px;
    background: #0f4470;
    color: #fff;
}
.contact-ico.is-wa { background: #128c7e; }
.contact-ico i {
    display: block;
    font-family: FontAwesome;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0;
    color: #fff;
    text-transform: none;
}
.contact-row div { min-width: 0; }
.contact-row > div > span {
    display: block;
    margin-bottom: 4px;
    color: #8aa0b0;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.contact-row strong {
    display: block;
    color: #0f4470;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.45;
}
.contact-dir {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 12px;
    min-height: 46px;
    padding: 0 18px;
    background: #00aba2;
    color: #fff !important;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    text-decoration: none;
}
.contact-dir:hover { background: #08958e; color: #fff !important; }
.contact-map {
    min-height: 100%;
    height: auto;
    margin: 0;
    overflow: hidden;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}
.contact-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 460px;
    border: 0;
    filter: grayscale(.2);
}
@media (max-width: 860px) {
    .contact-split { grid-template-columns: 1fr; }
    .contact-map iframe { min-height: 280px; }
    .contact-hero { padding-top: 48px; }
}

.team-hero {
    background: #0f4470;
    color: #fff;
}
.team-hero-name {
    color: #fff !important;
}
.team-soc {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 38px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, .22);
    background: rgba(255, 255, 255, .12);
    color: #fff !important;
    font-size: 12px;
    font-weight: 700;
}
.team-soc:hover {
    background: #fff;
    color: #0f4470 !important;
}
.team-call,
.team-wa {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 44px;
    padding: 0 14px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}
.team-call {
    background: #fff;
    color: #0f4470 !important;
}
.team-call:hover { background: #eef4f8; color: #0f4470 !important; }
.team-wa {
    background: #128c7e;
    color: #fff !important;
}
.team-wa:hover { background: #0f7668; color: #fff !important; }
.team-body {
    color: #17324a;
}
.team-body h2 {
    color: #0f4470 !important;
}
.team-body .listing-title,
.team-body .listing-agent-meta b {
    color: #0f4470 !important;
}
.team-copy,
.team-copy p,
.team-copy span,
.team-copy div,
.team-copy li,
.team-copy font,
.team-copy strong,
.team-copy h1,
.team-copy h2,
.team-copy h3 {
    color: #17324a !important;
}
.team-copy a { color: #0f4470 !important; }
.team-copy img { max-width: 100%; height: auto; }

#map {
    width: 100%;
    height: 380px;
    background: #e8eef3;
    position: relative;
    z-index: 1;
    isolation: isolate;
}
.emlakIcerikDetail #videoDiv iframe,
.emlakIcerikDetail #sanalTurDiv iframe,
.emlakIcerikDetail #katPlaniDiv iframe {
    width: 100%;
    max-width: 100%;
}
@media (max-width: 992px) {
    .emlakIcerikDetail { padding-bottom: 140px; }
    .emlakIcerikDetail .swiper.pd-swiper { height: 48vh; min-height: 240px; }
}
@media print {
    .site-header, .footer, .axis-dock, .fav-panel, .fav-overlay, .bottomContact, .bc-share-sheet, .js-pd-share-box, .benzerIlanlar, .js-pd-prev, .js-pd-next, .site-loader { display: none !important; }
    .emlakIcerikDetail .swiper.pd-swiper { height: 280px; min-height: 0; }
}

.site-loader.is-done { display: none !important; }
.site-loader {
    position: fixed;
    inset: 0;
    z-index: 4000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    background: #000;
}
.site-loader img {
    height: 120px;
    width: auto;
    max-width: 380px;
    object-fit: contain;
    animation: loaderPulse 1.1s ease-in-out infinite;
}
.site-loader-bar {
    display: block;
    width: 120px;
    height: 3px;
    overflow: hidden;
    background: #2a2a2a;
}
.site-loader-bar::after {
    content: "";
    display: block;
    width: 40%;
    height: 100%;
    background: #00aba2;
    animation: loaderSweep 1s linear infinite;
}
.site-loader.is-out {
    opacity: 0;
    pointer-events: none;
    transition: opacity .4s ease;
}
@keyframes loaderPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(.96); opacity: .82; }
}
@keyframes loaderSweep {
    0% { transform: translateX(-120%); }
    100% { transform: translateX(280%); }
}

.home-news {
    background: #fff;
    padding: 80px 0;
}
.home-news-inner {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 15px;
}
.news-rail {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 6px 24px;
    margin-bottom: 22px;
}
.news-rail span {
    grid-column: 1;
    color: #00aba2;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}
.news-rail h2 {
    margin: 0;
    color: #0f4470;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    letter-spacing: -.03em;
    line-height: 1;
}
.home-news .news-rail {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.news-rail a {
    grid-column: 2;
    grid-row: 1 / 3;
    align-self: end;
    color: #00aba2 !important;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    text-decoration: none;
}
.newsSwiper { overflow: hidden; }
.news-shot {
    position: relative;
    display: block;
    overflow: hidden;
    height: 360px;
    border-radius: 12px;
    color: #fff;
    text-decoration: none;
}
.news-shot img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform .6s ease;
}
.news-shot:hover img { transform: scale(1.08); }
.news-shot::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 28%, rgba(8, 20, 32, .92) 100%);
}
.news-shot-copy {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: grid;
    gap: 8px;
    padding: 22px 20px 20px;
    color: #fff;
}
.news-shot-copy strong {
    display: -webkit-box;
    overflow: hidden;
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.3;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.news-shot-copy em {
    display: -webkit-box;
    overflow: hidden;
    color: rgba(255,255,255,.88);
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.news-shot-copy time {
    margin-top: 4px;
    color: rgba(255,255,255,.78);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
}
@media (max-width: 700px) {
    .news-shot { height: 320px; }
    .news-shot-copy strong { font-size: 18px; }
}

.news-page {
    padding: 48px 0 80px;
}
.news-page-inner {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 15px;
}
.news-page .news-rail {
    display: flex;
    justify-content: flex-end;
    grid-template-columns: none;
}
.news-page .news-rail h1 {
    margin: 0;
    color: #0f4470;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    letter-spacing: -.03em;
    line-height: 1;
    text-align: right;
}
.news-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr;
}
@media (min-width: 700px) {
    .news-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
    .news-grid { grid-template-columns: 1fr 1fr 1fr; }
}

.cms-page {
    padding: 48px 0 140px;
    min-height: 70vh;
}
.cms-page-inner {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 15px;
}
.page-rail {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 28px;
}
.page-rail h1 {
    margin: 0;
    color: #0f4470;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    letter-spacing: -.03em;
    line-height: 1;
    text-align: right;
}
.team-grid {
    display: grid;
    gap: 22px;
    grid-template-columns: 1fr;
}
@media (min-width: 640px) {
    .team-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1100px) {
    .team-grid { grid-template-columns: 1fr 1fr 1fr 1fr; gap: 24px; }
}
.team-card {
    position: relative;
    overflow: hidden;
    height: 420px;
    background: #f4ead4;
    border-radius: 110px 18px 110px 18px;
}
.team-card:nth-child(even) {
    background: #e4eef8;
}
.team-card-link {
    display: block;
    height: 100%;
    color: inherit;
}
.team-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform .5s ease;
}
.team-card::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 48%;
    background: linear-gradient(to top, rgba(15, 68, 112, .78), transparent);
    pointer-events: none;
    z-index: 1;
}
.team-card:hover img { transform: scale(1.06); }
.team-card-info {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 26px;
    z-index: 2;
    color: #fff;
}
.team-card-info strong {
    display: block;
    color: #fff !important;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -.02em;
}
.team-card-info em {
    display: block;
    margin-top: 4px;
    color: rgba(255, 255, 255, .92);
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
}
.team-card-soc {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity .25s ease, transform .25s ease;
}
.team-card:hover .team-card-soc,
.team-card:focus-within .team-card-soc {
    opacity: 1;
    transform: none;
}
.team-card-soc a {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    color: #0f4470 !important;
    font-size: 13px;
    box-shadow: 0 6px 16px rgba(15, 68, 112, .18);
}
.team-card-soc a:hover {
    background: #0f4470;
    color: #fff !important;
}
@media (max-width: 639px) {
    .team-card {
        height: 460px;
        border-radius: 90px 16px 90px 16px;
    }
    .team-card-soc {
        opacity: 1;
        transform: none;
    }
}
.cms-page .content-body {
    width: 100%;
    color: #1f2933;
    font-size: 14px;
    line-height: 1.75;
}
.cms-page .content-body img {
    max-width: 100%;
    height: auto;
}
.cms-page .cms-form {
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid #e6eef3;
}
.join-card {
    max-width: 720px;
    margin-left: auto;
    padding: 32px 28px 36px;
    background: #fff;
    border: 1px solid #e6eef3;
    box-shadow: 0 16px 40px rgba(15, 68, 112, .08);
}
.join-lead {
    margin: 0 0 22px;
    color: #5b7384;
    font-size: 14px;
    line-height: 1.7;
}
.join-msg {
    margin-bottom: 18px;
    padding: 12px 14px;
    font-size: 13px;
    font-weight: 700;
}
.join-msg.is-ok { background: #e8f7f6; color: #0a7a74; }
.join-msg.is-err { background: #fdeeee; color: #a33b3b; }
.join-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: 1fr;
}
@media (min-width: 700px) {
    .join-grid { grid-template-columns: 1fr 1fr; }
}
.join-field,
.join-captcha {
    display: grid;
    gap: 7px;
    min-width: 0;
}
.join-field.is-wide,
.join-captcha.is-wide { grid-column: 1 / -1; }
.join-field span,
.join-captcha > span {
    color: #0f4470;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.join-area {
    min-height: 110px;
    resize: vertical;
    font-family: inherit;
}
.join-captcha-row {
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 360px;
}
.join-captcha-row em {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 92px;
    height: 46px;
    padding: 0 12px;
    background: #0f4470;
    color: #fff;
    font-style: normal;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: .04em;
}
.join-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    height: 50px;
    margin-top: 22px;
    padding: 0 28px;
    border: 0;
    background: #0f4470;
    color: #fff !important;
    font-family: inherit;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
}
.join-submit:hover { background: #00aba2; color: #fff !important; }

.nd { padding: 28px 0 80px; }
.nd-frame {
    max-width: 1170px;
    margin: 0 auto 28px;
    padding: 0 15px;
}
.nd-hero {
    position: relative;
    display: block;
    overflow: hidden;
    height: 460px;
    border-radius: 12px;
    color: #fff;
}
.nd-hero img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.nd-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 22%, rgba(8, 20, 32, .92) 100%);
}
.nd-hero-copy {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: grid;
    gap: 10px;
    padding: 28px 32px 26px;
    color: #fff;
}
.nd-hero-copy time {
    color: #9adfd9;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
}
.nd-hero-copy strong {
    color: #fff;
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 800;
    letter-spacing: -.03em;
    line-height: 1.2;
}
.nd-wrap {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 15px;
}
.nd-back {
    display: inline-block;
    margin-bottom: 18px;
    color: #00aba2 !important;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.nd-lead {
    margin: 0 0 28px;
    color: #0f4470;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.55;
}
.nd-body {
    color: #2b3d4a;
    font-size: 16px;
    line-height: 1.8;
}
.nd-body h2,
.nd-body h3 {
    margin: 1.4em 0 .5em;
    color: #0f4470;
    font-weight: 800;
}
.nd-body a { color: #00aba2 !important; }
.nd-body img {
    display: block;
    width: 100%;
    height: auto;
    margin: 22px 0;
    border-radius: 12px;
}
.nd-gallery {
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr 1fr;
    margin-top: 36px;
}
.nd-gallery a {
    display: block;
    overflow: hidden;
    height: 160px;
    border-radius: 12px;
    background: #e8eef3;
}
.nd-gallery img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.nd-gallery a:hover img { transform: scale(1.06); }
.nd-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 40px;
    padding-top: 22px;
    border-top: 1px solid #e8eef2;
}
.nd-share {
    display: flex;
    align-items: center;
    gap: 10px;
}
.nd-share span {
    color: #5b7384;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.nd-share a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #0f4470;
    color: #fff !important;
    font-size: 14px;
}
.nd-share a:hover { background: #00aba2; }
.nd-more {
    color: #00aba2 !important;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}
@media (min-width: 900px) {
    .nd-gallery { grid-template-columns: 1fr 1fr 1fr; }
}
@media (max-width: 700px) {
    .nd-hero { height: 300px; }
    .nd-hero-copy { padding: 20px; }
    .nd-lead { font-size: 16px; }
}

.home-find {
    background: #fff;
    padding: 0 0 80px;
}
.home-find-inner {
    display: grid;
    grid-template-columns: 340px minmax(0, 1fr);
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 15px;
    min-height: 380px;
}
.home-find-card {
    background: #0f4470;
    color: #fff;
    padding: 36px 32px;
}
.home-find-card .axis-kicker { color: #9adfd9; }
.home-find-card h2 {
    margin: 6px 0 16px;
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.25;
}
.home-find-card p {
    margin: 0 0 16px;
    color: rgba(255,255,255,.78);
    font-size: 14px;
    line-height: 1.6;
}
.home-find-phone {
    display: inline-block;
    margin-bottom: 22px;
    color: #fff !important;
    font-size: 20px;
    font-weight: 800;
}
.home-find-meta span {
    display: block;
    color: #9adfd9;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.home-find-meta b {
    display: block;
    margin-top: 6px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}
.home-find-dir {
    display: inline-flex;
    align-items: center;
    height: 42px;
    margin-top: 26px;
    padding: 0 18px;
    background: #00aba2;
    color: #fff !important;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.home-find-dir:hover { background: #08958e; }
.home-find-map { min-height: 380px; }
.home-find-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 380px;
    border: 0;
    filter: grayscale(.2);
}
@media (max-width: 800px) {
    .home-find-inner { grid-template-columns: 1fr; }
}

.footer { background: #0c3354 !important; color: rgba(255,255,255,.78); }
.footer-inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.2fr .9fr;
    gap: 36px;
    max-width: 1170px;
    margin: 0 auto;
    padding: 56px 15px 40px;
}
.footer-brand .imgLogo {
    height: 56px;
    width: auto;
    max-width: 220px;
    margin-bottom: 16px;
    object-fit: contain;
}
.footer-brand p {
    margin: 0;
    max-width: 280px;
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255,255,255,.72);
}
.footer h3 {
    margin: 0 0 14px;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.footer ul { margin: 0; padding: 0; list-style: none; }
.footer li { margin: 0 0 8px; }
.footer li a { color: rgba(255,255,255,.75); font-size: 13px; }
.footer li a:hover { color: #fff; }
.footer-social { display: flex; gap: 8px; margin-top: 18px; }
.footer-social span,
.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,.08);
    color: #fff;
}
.footer-social a:hover { background: rgba(255,255,255,.16); color: #fff; }
.footer-hours { margin: 0 0 16px; font-size: 14px; line-height: 1.6; color: #fff; }
.footer-cta {
    display: inline-flex;
    align-items: center;
    height: 40px;
    padding: 0 16px;
    background: #128c7e;
    color: #fff !important;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.footer-partners {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 15px 28px;
}
.footer-partner {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 6px 10px;
    background: #fff;
    line-height: 0;
}
.footer-partner img {
    display: block;
    height: 28px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
}
.footer-partners {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 15px 28px;
}
.footer-partner {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 6px 10px;
    background: #fff;
    line-height: 0;
}
.footer-partner img {
    display: block;
    height: 28px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
}
.footer-bar {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    max-width: 1170px;
    margin: 0 auto;
    padding: 16px 15px 22px;
    border-top: 1px solid rgba(255,255,255,.1);
    color: rgba(255,255,255,.5);
    font-size: 12px;
}
@media (max-width: 900px) {
    .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
    .footer-inner { grid-template-columns: 1fr; }
    .footer-bar { flex-direction: column; }
}

.pf-lab .select2-container { width: 100% !important; margin-bottom: 8px; }
.select2-container--default .select2-selection--single {
    height: 44px;
    border: 1px solid #f4f7f9;
    border-radius: 0;
    background: #f4f7f9;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    height: 44px;
    padding-left: 12px;
    line-height: 44px;
    color: #0f4470;
    font-size: 13px;
    font-weight: 600;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 44px;
    right: 8px;
}
.select2-container--default .select2-selection--single .select2-selection__placeholder { color: #8aa0b0; }
.select2-dropdown {
    z-index: 2000 !important;
    border: 1px solid #e6eef3;
    border-radius: 0;
    overflow: hidden;
}
.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #d7e2ea;
    outline: none;
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background: #0f4470;
}
.select2-container--default.select2-container--focus .select2-selection--single {
    border-color: #0f4470;
    background: #fff;
}

.st-wrap {
    position: relative;
    width: 100%;
    max-width: 1170px;
    min-width: 0;
    margin: 0 auto 4px;
    padding: 2px 15px 10px;
    overflow: hidden;
}
.st-row {
    display: flex;
    gap: 16px;
    width: 100%;
    min-width: 0;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 6px 8px 8px 2px;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    touch-action: pan-x;
    scrollbar-width: none;
    cursor: grab;
}
.st-row.is-drag { cursor: grabbing; }
.st-row::-webkit-scrollbar { display: none; }
.st-fade {
    position: absolute;
    right: 15px;
    top: 0;
    bottom: 12px;
    width: 56px;
    pointer-events: none;
    background: linear-gradient(90deg, transparent, #f5f6f8 70%);
    z-index: 2;
}
.st-item {
    position: relative;
    flex: 0 0 92px;
    width: 92px;
    padding: 4px 0 0;
    border: 0;
    background: none;
    cursor: grab;
    text-align: center;
    font-family: inherit;
}
.st-ring {
    display: block;
    width: 78px;
    height: 78px;
    margin: 0 auto;
    padding: 3px;
    border-radius: 50%;
    background: conic-gradient(from 200deg, #0f4470, #00aba2 48%, #0f4470);
}
.st-item.is-rent .st-ring {
    background: conic-gradient(from 200deg, #00aba2, #0f4470 52%, #00aba2);
}
.st-ring img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 2px solid #fff;
    border-radius: 50%;
    background: #e8eef3;
}
.st-chip {
    position: absolute;
    left: 50%;
    top: 66px;
    transform: translateX(-50%);
    max-width: 88px;
    padding: 3px 8px;
    border-radius: 999px;
    background: #0f4470;
    color: #fff !important;
    font-size: 9px;
    font-weight: 800;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.st-item.is-rent .st-chip { background: #00aba2; }
.st-price {
    display: block;
    margin-top: 16px;
    color: #171717;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: -.02em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.st-hood {
    display: block;
    margin-top: 2px;
    color: #8aa0b0;
    font-size: 10px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.st-item.is-seen { opacity: .4; filter: grayscale(.45); }
.st-item.is-seen .st-ring { background: #c9d5de; }

.stv {
    position: fixed;
    inset: 0;
    z-index: 160;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px;
    background: rgba(8, 18, 30, .9);
}
.stv[hidden] { display: none !important; }
.stv-nav {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.16);
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    flex: none;
    z-index: 5;
}
.stv-nav.is-prev { order: 0; }
.stv-frame { order: 1; }
.stv-nav.is-next { order: 2; }
.stv-nav:hover { background: rgba(255,255,255,.28); }
.stv-frame {
    position: relative;
    width: min(420px, 100%);
    height: min(780px, calc(100vh - 24px));
    overflow: hidden;
    background: #111;
    border-radius: 12px;
    box-shadow: 0 30px 80px rgba(0,0,0,.4);
}
.stv-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #1a1a1a;
}
.stv-grad {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0,0,0,.55) 0%, transparent 22%),
        linear-gradient(0deg, rgba(0,0,0,.72) 0%, transparent 38%);
    pointer-events: none;
}
.stv-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 3;
    padding: 12px 12px 0;
}
.stv-bars {
    display: flex;
    gap: 4px;
    margin-bottom: 10px;
}
.stv-bar {
    flex: 1;
    height: 3px;
    overflow: hidden;
    background: rgba(255,255,255,.35);
}
.stv-bar i {
    display: block;
    width: 100%;
    height: 100%;
    background: #fff;
    transform: scaleX(0);
    transform-origin: left center;
}
.stv-bar.is-done i { transform: scaleX(1); }
.stv-bar.is-on i { animation: stvFill 5.2s linear forwards; }
@keyframes stvFill { to { transform: scaleX(1); } }
.stv.is-paused .stv-bar.is-on i { animation-play-state: paused; }
.stv-head {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: #fff;
}
.stv-ava {
    width: 36px;
    height: 36px;
    object-fit: cover;
    border: 2px solid #fff;
    border-radius: 50%;
    background: #0f4470;
    flex: none;
}
.stv-meta { min-width: 0; flex: 1; }
.stv-name {
    display: block;
    margin-bottom: 4px;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.2;
}
.stv-tel {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #fff !important;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.35;
    text-shadow: 0 1px 8px rgba(0,0,0,.45);
}
.stv-tel i {
    width: 12px;
    text-align: center;
}
.stv-tel em { font-style: normal; }
.stv-x {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: transparent;
    color: #fff !important;
    font-size: 18px;
    flex: none;
    cursor: pointer;
}
.stv-copy {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 92px;
    z-index: 3;
    color: #fff;
    pointer-events: none;
}
.stv-sale {
    display: block;
    margin-bottom: 6px;
    font-size: 12px;
    font-weight: 700;
    opacity: .9;
}
.stv-title {
    margin: 0 0 8px;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.15;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.stv-price {
    display: block;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -.03em;
}
.stv-acts {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 18px;
    z-index: 4;
    display: flex;
    justify-content: center;
    gap: 14px;
}
.stv-btn {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,.16);
    color: #fff !important;
    font-size: 20px;
    backdrop-filter: blur(8px);
}
.stv-btn.is-wa { background: #25d366; }
.stv-btn.is-tel { background: #0f4470; }
.stv-btn.is-msg { background: #00aba2; }
.stv-hit {
    position: absolute;
    top: 118px;
    bottom: 90px;
    z-index: 2;
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
}
.stv-hit.is-prev { left: 0; width: 32%; }
.stv-hit.is-next { right: 0; width: 68%; }
body.story-open { overflow: hidden; }
body.story-open .axis-dock,
body.story-open .ck-bar,
body.story-open .pf-open { visibility: hidden; pointer-events: none; }

.ck-bar {
    position: fixed;
    left: 50%;
    bottom: 20px;
    z-index: 88;
    width: min(720px, calc(100% - 28px));
    transform: translateX(-50%);
}
.ck-bar[hidden] { display: none !important; }
.ck-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    background: #fff;
    border: 1px solid #e6eef3;
    border-radius: 16px;
    box-shadow: 0 18px 50px rgba(15, 68, 112, .18);
}
.ck-ico { flex: none; }
.ck-copy { min-width: 0; flex: 1; }
.ck-head {
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
}
.ck-head b {
    color: #0f4470;
    font-size: 14px;
    font-weight: 800;
}
.ck-copy p {
    margin: 4px 0 6px;
    color: #5b7384;
    font-size: 12px;
    line-height: 1.45;
}
.ck-link {
    border: 0;
    background: none;
    padding: 0;
    color: #00aba2 !important;
    font-family: inherit;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
}
.ck-link.is-under { text-decoration: underline; color: #0f4470 !important; }
.ck-extra {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
}
.ck-extra[hidden] { display: none !important; }
.ck-opt {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0f4470;
    font-size: 12px;
    font-weight: 700;
}
.ck-acts {
    display: flex;
    gap: 8px;
    flex: none;
}
.ck-btn {
    height: 42px;
    padding: 0 16px;
    border-radius: 10px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
}
.ck-btn.is-ghost {
    border: 1px solid #dce6ed;
    background: #fff;
    color: #0f4470;
}
.ck-btn.is-on {
    border: 0;
    background: #0f4470;
    color: #fff !important;
}
.ck-save {
    height: 32px;
    padding: 0 12px;
    border: 0;
    background: #00aba2;
    color: #fff !important;
    font-family: inherit;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
}
.ck-pop {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(15, 68, 112, .45);
}
.ck-pop[hidden] { display: none !important; }
.ck-pop-card {
    position: relative;
    width: min(480px, 100%);
    padding: 28px 24px 22px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 24px 60px rgba(15, 68, 112, .22);
}
.ck-pop-card h2 {
    margin: 0 0 10px;
    color: #0f4470;
    font-size: 20px;
    font-weight: 800;
}
.ck-pop-card p {
    margin: 0 0 10px;
    color: #5b7384;
    font-size: 13px;
    line-height: 1.55;
}
.ck-pop-x {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    border: 0;
    background: #f4f7f9;
    color: #0f4470;
    cursor: pointer;
}
.footer-cookie {
    border: 0;
    background: none;
    padding: 0;
    color: inherit;
    font: inherit;
    text-decoration: underline;
    cursor: pointer;
}
@media (max-width: 720px) {
    .ck-card {
        flex-wrap: wrap;
        border-radius: 14px;
    }
    .ck-acts {
        width: 100%;
    }
    .ck-btn { flex: 1; }
    .ck-bar { bottom: 86px; }
    .stv {
        padding: 0;
        background: #000;
    }
    .stv-frame {
        width: 100%;
        height: 100%;
        border-radius: 0;
    }
    .stv-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }
    .stv-nav.is-prev { left: 8px; }
    .stv-nav.is-next { right: 8px; }
}

/* Site motion */
.hero-photo {
    transform: scale(1);
    animation: heroKen 22s ease-in-out infinite alternate;
    will-change: transform;
}
@keyframes heroKen {
    from { transform: scale(1) translate3d(0, 0, 0); }
    to { transform: scale(1.08) translate3d(-1.5%, -1%, 0); }
}

.searchBoxMain {
    animation: fxRise .7s .15s cubic-bezier(.22, 1, .36, 1) both;
}

.listing-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 40%, rgba(255,255,255,.28) 50%, transparent 60%);
    transform: translateX(-120%);
    pointer-events: none;
}
.listing-card:hover .listing-photo::after {
    animation: fxShine .7s ease;
}

.listing-card.is-fx {
    animation: fxRise .55s cubic-bezier(.22, 1, .36, 1) both;
    animation-delay: calc(var(--fx-i, 0) * 55ms);
}

.fx-await {
    opacity: 0;
    transform: translate3d(0, 24px, 0);
    transition: opacity .65s ease, transform .65s cubic-bezier(.22, 1, .36, 1);
}
.fx-await.is-in {
    opacity: 1;
    transform: none;
}
.listDiv.fx-await {
    opacity: 1;
    transform: none;
}

.ulEmlakTipleri li {
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}

.news-shot {
    transition: transform .28s ease, box-shadow .28s ease;
}
.news-shot:hover {
    transform: translateY(-6px);
}

.dock-btn,
.dock-wa {
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, filter .2s ease;
}
.dock-btn:hover,
.dock-wa:hover {
    transform: translateY(-3px);
}

@keyframes fxRise {
    from { opacity: 0; transform: translate3d(0, 22px, 0); }
    to { opacity: 1; transform: none; }
}
@keyframes fxShine {
    to { transform: translateX(120%); }
}

@media (prefers-reduced-motion: reduce) {
    .hero-photo,
    .searchBoxMain,
    .listing-card.is-fx,
    .listing-card,
    .listing-card img.etkinlikMainImg,
    .news-shot,
    .dock-btn,
    .dock-wa {
        animation: none !important;
        transition: none !important;
        transform: none !important;
    }
    .fx-await {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .listing-card:hover .listing-photo::after { animation: none; }
}

.proj-page {
    background: #f3f5f8;
    padding: 28px 0 64px;
}
.proj-page-inner {
    width: min(1170px, calc(100% - 30px));
    margin: 0 auto;
}
.proj-page .news-rail {
    display: flex;
    justify-content: flex-end;
    grid-template-columns: none;
}
.proj-page .news-rail h1 {
    margin: 0;
    color: #0f4470;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    letter-spacing: -.03em;
    line-height: 1;
    text-align: right;
}
.proj-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}
.proj-card {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    overflow: hidden;
    background: #fff;
    border: 1px solid #e8eef2;
    color: inherit;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(15, 68, 112, .08);
}
.proj-card:hover {
    border-color: #c5d6e3;
}
.proj-card-photo {
    display: block;
    min-height: 220px;
    background: #dce6ed;
    overflow: hidden;
}
.proj-card-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}
.proj-card:hover img { transform: scale(1.06); }
.proj-card-copy {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
    padding: 16px 18px 18px;
}
.proj-card-copy > strong {
    color: #0f4470;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.3;
}
.proj-card-copy > em {
    color: #6b8292;
    font-size: 13px;
    font-style: normal;
}
.proj-card-facts,
.proj-card-types {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 0;
    width: 100%;
    border: 1px solid #e8eef2;
    background: #fff;
}
.proj-fact {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    min-width: 0;
    padding: 8px 10px;
    border-bottom: 1px dotted #d5e0e8;
    color: #6b8292;
    font-size: 12px;
    box-sizing: border-box;
}
.proj-fact em {
    color: #6b8292;
    font-style: normal;
    font-weight: 500;
}
.proj-fact:last-child { border-bottom: 0; }
.proj-fact b {
    color: #0f4470;
    font-size: 13px;
    font-weight: 800;
    text-align: right;
    white-space: nowrap;
}
.proj-card-plans-l {
    display: block;
    margin: 4px 0 8px;
    color: #0f4470;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}
.proj-card-from {
    margin-top: auto;
    color: #00aba2;
    font-size: 14px;
    font-weight: 800;
}
.proj-jump {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.proj-jump a {
    border: 1px solid #d5e0e8;
    background: #fff;
    color: #0f4470;
    font-size: 12px;
    font-weight: 700;
    padding: 8px 12px;
    text-decoration: none;
}
.proj-jump a:hover { border-color: #00aba2; color: #00aba2; }
.proj-plan-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}
.proj-plan-tabs button {
    border: 1px solid #d5e0e8;
    background: #fff;
    color: #0f4470;
    font-weight: 800;
    font-size: 13px;
    padding: 8px 14px;
    cursor: pointer;
}
.proj-plan-tabs button.is-on {
    background: #0f4470;
    border-color: #0f4470;
    color: #fff;
}
.js-plan-pane.is-off { display: none; }
.proj-plan {
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid #e8eef2;
}
.proj-plan:last-child { border-bottom: 0; margin-bottom: 0; padding-bottom: 0; }
.proj-plan-meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: baseline;
    margin-bottom: 12px;
}
.proj-plan-meta strong { color: #0f4470; font-size: 16px; }
.proj-plan-meta span { color: #00aba2; font-size: 13px; font-weight: 800; }
.proj-plan-photos {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
}
.proj-plan-photos a {
    display: block;
    height: 110px;
    overflow: hidden;
    background: #eef3f6;
}
.proj-plan-photos img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.proj-video {
    position: relative;
    padding-top: 56.25%;
}
.proj-video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.proj-lead label {
    display: block;
    margin-bottom: 12px;
}
.proj-lead span {
    display: block;
    margin-bottom: 4px;
    color: #6b8292;
    font-size: 12px;
    font-weight: 700;
}
.proj-lead input,
.proj-lead textarea {
    width: 100%;
    border: 1px solid #d5e0e8;
    padding: 10px 12px;
    font: inherit;
    color: #0f4470;
}
.proj-lead button {
    width: 100%;
    border: 0;
    background: #00aba2;
    color: #fff;
    font-weight: 800;
    padding: 12px;
    cursor: pointer;
}
@media (max-width: 1100px) {
    .proj-grid { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
    .proj-plan-photos { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
    .proj-grid { grid-template-columns: 1fr; }
    .proj-card { grid-template-columns: 1fr; }
    .proj-card-photo { min-height: 0; height: 200px; }
}

.swal2-container {
    z-index: 20000 !important;
}
.site-swal {
    font-family: Montserrat, sans-serif !important;
    border-radius: 1rem !important;
}
.site-swal .swal2-title,
.site-swal .swal2-html-container {
    text-align: center !important;
    font-size: 1rem !important;
    color: var(--ink) !important;
}
.site-swal .swal2-title {
    font-size: 1.05rem !important;
    font-weight: 700 !important;
}
.site-swal .swal2-actions {
    margin-top: 1rem !important;
}
.site-swal .swal2-confirm {
    min-width: 96px;
    border-radius: 999px !important;
    font-weight: 600 !important;
}
