/* ==========================================================================
   GATEKEEPER & AUTH WALL (Giriş Yapmadan Hiçbir Veri/Harita/Menü Görünemez)
   Tüm ekran boyutlarında (Mobil, Tablet, Masaüstü) Giriş Yapılmadan
   Hiçbir Menü, Başlık, Harita veya Pano Görünemez!
   ========================================================================== */
body:not(.is-authenticated) {
  overflow: hidden !important;
  background: #060B19 !important;
  height: 100vh !important;
}

/* GİRİŞ YAPILMAMIŞSA TÜM MENÜLER VE ARAYÜZLER KESİN OLARAK GİZLENİR */
body:not(.is-authenticated) .app-header,
body:not(.is-authenticated) .desktop-layout,
body:not(.is-authenticated) #emlakci-dashboard-screen,
body:not(.is-authenticated) .emlak-bottom-nav,
body:not(.is-authenticated) .mobile-map-search-bar,
body:not(.is-authenticated) .mobile-parcel-sheet,
body:not(.is-authenticated) .sidebar-panel,
body:not(.is-authenticated) .gis-workspace,
body:not(.is-authenticated) .map-viewport,
body:not(.is-authenticated) .mobile-nav-bar,
body:not(.is-authenticated) .emlak-modal-backdrop {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
  opacity: 0 !important;
}

/* GİRİŞ EKRANI (TAM EKRAN SABİT VE MERKEZİ) */
body:not(.is-authenticated) #emlakci-gatekeeper-screen {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  position: fixed !important;
  inset: 0 !important;
  z-index: 999999 !important;
  width: 100vw !important;
  height: 100vh !important;
  min-height: 100dvh !important;
  overflow-y: auto !important;
  background: radial-gradient(circle at 50% 25%, #0F223D 0%, #060B19 75%) !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 24px 16px !important;
  box-sizing: border-box !important;
}

/* GİRİŞ YAPILDIĞINDA GİRİŞ EKRANI KESİN OLARAK KALKAR */
body.is-authenticated #emlakci-gatekeeper-screen {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
  opacity: 0 !important;
}

/* OTURUM AÇILDIKTAN SONRA MASAÜSTÜ GÖRÜNÜMÜ (>= 1024px) */
@media (min-width: 1024px) {
  body.is-authenticated .app-header {
    display: flex !important;
    height: 70px !important;
  }
  body.is-authenticated:not([data-app-mode="emlakci"]) .desktop-layout {
    display: grid !important;
    grid-template-columns: 460px minmax(0, 1fr) !important;
    height: calc(100vh - 70px) !important;
    max-width: 100vw !important;
  }
  body.is-authenticated[data-app-mode="emlakci"] #emlakci-dashboard-screen {
    display: flex !important;
  }
  body.is-authenticated[data-app-mode="emlakci"] .desktop-layout {
    display: none !important;
  }
  .emlak-bottom-nav {
    display: none !important;
  }
}

/* OTURUM AÇILDIKTAN SONRA MOBİL GÖRÜNÜM (< 1024px) - TEK TİP MASTER HEADER AKTİF */
@media (max-width: 1023px) {
  body.is-authenticated .app-header {
    display: flex !important;
    height: 56px !important;
  }
  body.is-authenticated[data-app-mode="emlakci"] #emlakci-dashboard-screen {
    display: flex !important;
    min-height: calc(100dvh - 56px - 64px) !important;
  }
  body.is-authenticated:not([data-app-mode="emlakci"]) .desktop-layout {
    display: block !important;
    position: relative !important;
    height: calc(100dvh - 56px - 64px) !important;
    width: 100vw !important;
    overflow: hidden !important;
  }
  body.is-authenticated:not([data-app-mode="emlakci"]):not([data-mobile-screen="search"]) .gis-workspace {
    display: flex !important;
    width: 100% !important;
    height: 100% !important;
    position: absolute !important;
    top: 0; left: 0; right: 0; bottom: 0;
  }
  body.is-authenticated:not([data-app-mode="emlakci"]):not([data-mobile-screen="search"]) .sidebar-panel {
    display: none !important;
  }
  body.is-authenticated[data-mobile-screen="search"] .sidebar-panel {
    display: flex !important;
    width: 100% !important;
    max-width: 100vw !important;
    position: relative !important;
    height: 100% !important;
    overflow-y: auto !important;
    z-index: 10 !important;
  }
  body.is-authenticated[data-mobile-screen="search"] .gis-workspace {
    display: none !important;
  }
  body.is-authenticated .emlak-bottom-nav {
    display: grid !important;
  }
}

/* ==========================================================================
   BY INVEST - EMLAKÇI PORTALI & ÇİFT KÖR TEKLİF SİSTEMİ STİLLERİ
   ========================================================================== */

/* 1. Global Değişkenler & Resetler */
:root {
  --emlak-navy: #0B192C;
  --emlak-card: #11223A;
  --emlak-blue: #009EE3;
  --emlak-blue-hover: #0087C2;
  --emlak-orange: #FF7B49;
  --emlak-orange-hover: #E56A39;
  --emlak-green: #10B981;
  --emlak-amber: #F59E0B;
  --emlak-slate: #64748B;
  --emlak-light: #F8FAFC;
  --emlak-border: #E2E8F0;
}

/* 2. Emlakçı Operasyon Ekranı (Ana Ekran) */
#emlakci-dashboard-screen {
  display: none;
  flex-direction: column;
  min-height: 100dvh;
  background: #F8FAFC;
  color: #0F172A;
  padding-bottom: calc(80px + env(safe-area-inset-bottom));
  font-family: var(--font, 'Plus Jakarta Sans', sans-serif);
}

body[data-app-mode="emlakci"] #emlakci-dashboard-screen {
  display: flex !important;
}
body[data-app-mode="emlakci"] .desktop-layout {
  display: none !important;
}

body[data-app-mode="parsel-sorgu"] #emlakci-dashboard-screen {
  display: none !important;
}
@media (min-width: 1024px) {
  body[data-app-mode="parsel-sorgu"] .desktop-layout {
    display: grid !important;
    grid-template-columns: 460px minmax(0, 1fr) !important;
    height: calc(100vh - 72px) !important;
  }
  body[data-app-mode="emlakci"] .desktop-layout {
    display: none !important;
  }
  body[data-app-mode="emlakci"] #emlakci-dashboard-screen {
    display: flex !important;
  }
}
@media (max-width: 1023px) {
  body[data-app-mode="parsel-sorgu"] .desktop-layout {
    display: block !important;
    position: relative !important;
    height: calc(100dvh - 54px - 64px) !important;
    width: 100vw !important;
    overflow: hidden !important;
  }
  body[data-app-mode="parsel-sorgu"] .sidebar-panel {
    display: none !important;
  }
  body[data-app-mode="parsel-sorgu"] .gis-workspace {
    display: flex !important;
    width: 100% !important;
    height: 100% !important;
    position: absolute !important;
    top: 0; left: 0; right: 0; bottom: 0;
  }
}

/* Dashboard Header */
.emlak-dash-header {
  background: linear-gradient(135deg, #0B192C 0%, #11223A 100%);
  color: #FFFFFF;
  padding: 16px 20px 24px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(11, 25, 44, 0.15);
}

.emlak-dash-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.emlak-dash-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.emlak-avatar {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #009EE3 0%, #FF7B49 100%);
  color: #FFFFFF;
  font-weight: 800;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 158, 227, 0.3);
}

.emlak-user-info h2 {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 6px;
}

.emlak-user-info p {
  margin: 2px 0 0;
  font-size: 11.5px;
  color: #94A3B8;
}

.emlak-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-header-action {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #E2E8F0;
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.btn-header-action:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
}

/* KPI Kartları */
.emlak-kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.emlak-kpi-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 10px 12px;
  text-align: center;
}

.emlak-kpi-num {
  font-size: 20px;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.2;
}

.emlak-kpi-label {
  font-size: 10.5px;
  color: #94A3B8;
  font-weight: 600;
  margin-top: 3px;
}

/* Sekmeler (Tabs) */
.emlak-tabs-bar {
  display: flex;
  background: #FFFFFF;
  padding: 8px 16px;
  gap: 8px;
  border-bottom: 1px solid var(--emlak-border);
  position: sticky;
  top: 140px;
  z-index: 90;
}

.emlak-tab-btn {
  flex: 1;
  padding: 10px 14px;
  background: #F1F5F9;
  border: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #64748B;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.emlak-tab-btn.active {
  background: #0B192C;
  color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(11, 25, 44, 0.2);
}

.emlak-tab-badge {
  background: #FF7B49;
  color: #FFFFFF;
  font-size: 10.5px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 10px;
  line-height: 1;
}

/* İlan Listesi & Kartlar */
.emlak-container {
  padding: 16px;
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

.emlak-listing-card {
  background: #FFFFFF;
  border: 1px solid var(--emlak-border);
  border-radius: 14px;
  padding: 14px;
  margin-bottom: 14px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.emlak-listing-card:hover {
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
}

.emlak-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.emlak-card-title {
  font-size: 14px;
  font-weight: 700;
  color: #0F172A;
  margin: 0;
  line-height: 1.35;
}

.badge-status {
  padding: 4px 9px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}
.badge-status.warning { background: #FEF3C7; color: #B45309; }
.badge-status.success { background: #DCFCE7; color: #15803D; }
.badge-status.secondary { background: #F1F5F9; color: #64748B; }

.emlak-card-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.spec-chip {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  color: #475569;
}

.emlak-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #F1F5F9;
  padding-top: 10px;
  gap: 10px;
  flex-wrap: wrap;
}

.emlak-price-box {
  font-size: 16px;
  font-weight: 800;
  color: #009EE3;
}

.emlak-stats-box {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11.5px;
  color: #64748B;
  font-weight: 600;
}

.emlak-card-actions {
  display: flex;
  gap: 6px;
  width: 100%;
  margin-top: 8px;
}

.btn-card-act {
  flex: 1;
  height: 34px;
  border-radius: 8px;
  font-size: 11.5px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: all 0.15s ease;
  border: 1px solid transparent;
}
.btn-card-act.edit-price {
  background: #EFF6FF;
  color: #1D4ED8;
  border-color: #BFDBFE;
}
.btn-card-act.edit-price:hover {
  background: #DBEAFE;
}
.btn-card-act.edit-listing {
  background: #FFFBEB;
  color: #B45309;
  border-color: #FDE68A;
}
.btn-card-act.edit-listing:hover {
  background: #FEF3C7;
}
.btn-card-act.delete-listing {
  background: #FEF2F2;
  color: #DC2626;
  border-color: #FECACA;
}
.btn-card-act.delete-listing:hover {
  background: #FEE2E2;
}
.btn-card-act.toggle-status {
  background: #F8FAFC;
  color: #475569;
  border-color: #CBD5E1;
}
.btn-card-act.view-map {
  background: #0B192C;
  color: #FFFFFF;
}

/* İlan Filtre & Arama Çubuğu */
.emlak-listing-filter-bar {
  background: #FFFFFF;
  border: 1px solid var(--emlak-border);
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.03);
}

.filter-pills-row {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding-bottom: 2px;
}

.listing-filter-pill {
  padding: 6px 12px;
  border-radius: 20px;
  border: 1px solid #E2E8F0;
  background: #F8FAFC;
  color: #475569;
  font-size: 11.5px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.15s ease;
}

.listing-filter-pill:hover {
  background: #F1F5F9;
  border-color: #CBD5E1;
}

.listing-filter-pill.active {
  background: #009EE3;
  color: #FFFFFF;
  border-color: #009EE3;
  box-shadow: 0 2px 6px rgba(0, 158, 227, 0.25);
}

.listing-search-row {
  width: 100%;
}

.listing-search-input {
  width: 100%;
  height: 38px;
  border-radius: 8px;
  border: 1px solid #CBD5E1;
  padding: 0 12px;
  font-size: 12.5px;
  color: #0F172A;
  background: #F8FAFC;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.listing-search-input:focus {
  border-color: #009EE3;
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(0, 158, 227, 0.1);
}

/* Teklif Kartları (Çift Kör) */
.emlak-offer-card {
  background: #FFFFFF;
  border: 1px solid var(--emlak-border);
  border-left: 4px solid #FF7B49;
  border-radius: 12px;
  padding: 14px;
  margin-bottom: 12px;
}

.offer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.offer-customer-badge {
  background: #FFF7ED;
  border: 1px solid #FFEDD5;
  color: #C2410C;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.offer-date {
  font-size: 11px;
  color: #94A3B8;
}

.offer-prices-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 8px 0;
}

.offer-proposed-price {
  font-size: 19px;
  font-weight: 800;
  color: #15803D;
}

.offer-original-price {
  font-size: 13px;
  color: #94A3B8;
  text-decoration: line-through;
}

.offer-message-bubble {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 12px;
  color: #334155;
  margin: 8px 0 12px;
}

.offer-actions-row {
  display: flex;
  gap: 8px;
}

.btn-offer-act {
  flex: 1;
  height: 36px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: none;
}
.btn-offer-act.accept {
  background: #10B981;
  color: #FFFFFF;
}
.btn-offer-act.reject {
  background: #F1F5F9;
  color: #64748B;
  border: 1px solid #CBD5E1;
}
.btn-offer-act.counter {
  background: #0B192C;
  color: #FFFFFF;
}

/* ==========================================================================
   3. BOTTOM NAVIGATION BAR (ORTADA BÜYÜK PARSEL SORGULA BUTONU)
   ========================================================================== */
.emlak-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: calc(68px + env(safe-area-inset-bottom));
  padding-bottom: env(safe-area-inset-bottom);
  background: #FFFFFF;
  border-top: 1px solid #E2E8F0;
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr 1fr 1fr;
  align-items: center;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(11, 25, 44, 0.08);
}

.emlak-nav-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: #64748B;
  font-size: 10px;
  font-weight: 700;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: none;
  height: 100%;
  position: relative;
  transition: all 0.15s ease;
}

.emlak-nav-tab svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.2;
}

.emlak-nav-tab.active {
  color: #009EE3;
}

.emlak-nav-badge {
  position: absolute;
  top: 8px;
  right: calc(50% - 14px);
  background: #FF7B49;
  color: #FFFFFF;
  font-size: 9px;
  font-weight: 800;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #FFFFFF;
}

/* TAM ORTADA BÜYÜK PARSEL SORGULAMA BUTONU */
.emlak-nav-center-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.btn-center-parsel {
  position: absolute;
  top: -18px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0B192C 0%, #009EE3 100%);
  border: 3px solid #FFFFFF;
  color: #FFFFFF;
  box-shadow: 0 6px 16px rgba(0, 158, 227, 0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  z-index: 10000;
}

.btn-center-parsel:active,
.btn-center-parsel:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 22px rgba(0, 158, 227, 0.45);
}

.btn-center-parsel svg {
  width: 22px;
  height: 22px;
  stroke-width: 2.2;
}

.center-parsel-label {
  font-size: 8.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  color: #009EE3;
  position: absolute;
  bottom: 8px;
}

/* ==========================================================================
   4. MODALLAR (SMS Auth, İlan Ekle, Teklif Ver)
   ========================================================================== */
.emlak-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(11, 25, 44, 0.6);
  backdrop-filter: blur(6px);
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease;
  max-width: 100vw;
  box-sizing: border-box;
}

.emlak-modal-backdrop.open {
  display: flex !important;
  opacity: 1;
  visibility: visible;
}

.emlak-modal-card {
  background: #FFFFFF;
  border-radius: 20px;
  width: 100%;
  max-width: 480px;
  max-height: 90dvh;
  overflow-y: auto;
  box-shadow: 0 20px 40px rgba(11, 25, 44, 0.25);
  position: relative;
  transform: scale(0.96);
  transition: transform 0.2s ease;
}

.emlak-modal-backdrop.open .emlak-modal-card {
  transform: scale(1);
}

.emlak-modal-head {
  padding: 20px 24px;
  border-bottom: 1px solid var(--emlak-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.emlak-modal-head h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
  color: #0F172A;
}

.btn-modal-close {
  background: #F1F5F9;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #64748B;
  cursor: pointer;
}

.emlak-modal-body {
  padding: 20px 24px;
}

/* Form Elemanları */
.emlak-form-group {
  margin-bottom: 16px;
}

.emlak-form-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #334155;
  margin-bottom: 6px;
}

.emlak-input,
.emlak-select,
.emlak-textarea {
  width: 100%;
  height: 44px;
  border: 1.5px solid #CBD5E1;
  border-radius: 10px;
  padding: 0 14px;
  font-size: 13.5px;
  font-weight: 600;
  color: #0F172A;
  background: #FFFFFF;
  outline: none;
  transition: border-color 0.15s ease;
  font-family: inherit;
}

.emlak-textarea {
  height: 80px;
  padding: 10px 14px;
  resize: vertical;
}

.emlak-input:focus,
.emlak-select:focus,
.emlak-textarea:focus {
  border-color: #009EE3;
  box-shadow: 0 0 0 3px rgba(0, 158, 227, 0.12);
}

.btn-emlak-submit {
  width: 100%;
  height: 46px;
  background: #009EE3;
  color: #FFFFFF;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.15s ease;
}

.btn-emlak-submit:hover {
  background: #0087C2;
}

/* Parsel Kartı Aksiyon Butonu */
.btn-action-ilan-ekle {
  height: 42px;
  background: #0B192C;
  color: #FFFFFF;
  border: none;
  border-radius: var(--radius-md, 8px);
  font-size: 11.5px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  grid-column: span 2;
  margin-top: 4px;
  transition: all 0.15s ease;
  box-shadow: 0 2px 8px rgba(11, 25, 44, 0.15);
}

.btn-action-ilan-ekle:hover {
  background: #11223A;
  transform: translateY(-1px);
}

/* 5. Bildirimler (Toasts) */
.emlak-toast {
  position: fixed;
  top: 24px;
  right: 24px;
  max-width: 360px;
  background: #0B192C;
  color: #FFFFFF;
  padding: 12px 18px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  z-index: 100000;
  transform: translateY(-20px);
  opacity: 0;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  font-size: 13px;
  font-weight: 600;
}
.emlak-toast.visible {
  transform: translateY(0);
  opacity: 1;
}
.emlak-toast .toast-content {
  display: flex;
  align-items: center;
  gap: 10px;
}
.emlak-toast .toast-icon {
  font-weight: 800;
  font-size: 15px;
}
.emlak-toast-success {
  background: #065F46;
  border-left: 4px solid #10B981;
}
.emlak-toast-error {
  background: #881337;
  border-left: 4px solid #F43F5E;
}
.emlak-toast-info {
  background: #0F172A;
  border-left: 4px solid #009EE3;
}

/* 6. Boş Durum (Empty State) */
.emlak-empty-state {
  text-align: center;
  padding: 48px 20px;
  background: #FFFFFF;
  border: 1.5px dashed #CBD5E1;
  border-radius: 16px;
  margin: 20px 0;
}
.emlak-empty-state .empty-icon {
  font-size: 44px;
  margin-bottom: 12px;
}
.emlak-empty-state h4 {
  font-size: 16px;
  font-weight: 800;
  color: #0F172A;
  margin: 0 0 6px;
}
.emlak-empty-state p {
  font-size: 13px;
  color: #64748B;
  max-width: 360px;
  margin: 0 auto;
  line-height: 1.5;
}

/* 7. İlan Kartı Teklif Ver Butonu */
.btn-card-teklif {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: linear-gradient(135deg, #009EE3 0%, #0B192C 100%);
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 158, 227, 0.3);
  transition: transform 0.15s ease;
  z-index: 5;
}
.btn-card-teklif:hover {
  transform: scale(1.05);
}

.listing-item-card {
  position: relative;
}

/* Aktif Mod Göstergesi */
.btn-center-parsel.active-mode {
  background: linear-gradient(135deg, #FF7B49 0%, #0B192C 100%);
  box-shadow: 0 6px 16px rgba(255, 123, 73, 0.4);
}

/* ==========================================================================
   SÜPER PREMİUM GİRİŞ EKRANI (GATEKEEPER)
   ========================================================================== */
#emlakci-gatekeeper-screen {
  position: fixed;
  inset: 0;
  z-index: 999999;
  width: 100vw;
  height: 100dvh;
  min-height: 100vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 40px 16px 60px;
  box-sizing: border-box;
  background: radial-gradient(circle at 15% 15%, rgba(0, 158, 227, 0.18), transparent 45%),
              radial-gradient(circle at 85% 75%, rgba(212, 175, 55, 0.14), transparent 40%),
              radial-gradient(circle at 50% 105%, rgba(16, 185, 129, 0.12), transparent 50%),
              linear-gradient(160deg, #050B18 0%, #0A1428 50%, #060B19 100%);
  color: #F8FAFC;
  font-family: var(--font, 'Plus Jakarta Sans', sans-serif);
  -webkit-font-smoothing: antialiased;
}

.gate-brand-wrap {
  text-align: center;
  max-width: 640px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gate-logo-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 20px;
  border-radius: 999px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  margin-bottom: 18px;
  backdrop-filter: blur(12px);
}

.gate-logo-img {
  height: 38px;
  width: auto;
  object-fit: contain;
}

.gate-badge-tag {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: linear-gradient(135deg, #00C6FF 0%, #0072FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gate-hero-title {
  margin: 0 0 12px;
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #FFFFFF;
}

.gate-hero-title span {
  background: linear-gradient(135deg, #38BDF8 0%, #009EE3 50%, #F59E0B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gate-hero-desc {
  margin: 0 0 18px;
  font-size: clamp(13px, 2vw, 14.5px);
  color: #94A3B8;
  line-height: 1.6;
  max-width: 520px;
}

.gate-features-pill-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 22px;
}

.gate-feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #E2E8F0;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 5px 12px;
  border-radius: 999px;
}

.gate-feature-pill .pill-icon {
  font-size: 13px;
}

/* Auth Card */
.gate-card {
  width: 100%;
  max-width: 480px;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 28px 24px;
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.8),
              0 0 40px rgba(0, 158, 227, 0.12);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

/* Hızlı Test / Demo Banner */
.gate-demo-banner {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(0, 158, 227, 0.15) 100%);
  border: 1.5px solid rgba(245, 158, 11, 0.45);
  border-radius: 14px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.gate-demo-banner:hover {
  transform: translateY(-2px);
  border-color: #F59E0B;
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.25);
}

.demo-banner-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.demo-banner-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: #F59E0B;
  color: #0F172A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 900;
  flex-shrink: 0;
}

.demo-banner-title {
  font-size: 13px;
  font-weight: 700;
  color: #FFFFFF;
}

.demo-banner-sub {
  font-size: 11px;
  color: #FCD34D;
}

.demo-banner-btn-pill {
  background: #F59E0B;
  color: #0F172A;
  font-size: 11px;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 999px;
  white-space: nowrap;
  letter-spacing: 0.3px;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.4);
}

/* Form Styles */
.gate-section-title {
  font-size: 14px;
  font-weight: 700;
  color: #F1F5F9;
  margin: 0 0 6px;
}

.gate-section-desc {
  font-size: 12px;
  color: #94A3B8;
  margin: 0 0 16px;
  line-height: 1.5;
}

.gate-phone-input-wrap {
  display: flex;
  align-items: center;
  background: #090E1A;
  border: 1.5px solid #1E293B;
  border-radius: 12px;
  padding: 4px;
  margin-bottom: 18px;
  transition: border-color 0.2s;
}

.gate-phone-input-wrap:focus-within {
  border-color: #009EE3;
  box-shadow: 0 0 0 3px rgba(0, 158, 227, 0.2);
}

.gate-phone-prefix {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 10px;
  font-size: 13.5px;
  font-weight: 700;
  color: #E2E8F0;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  border-right: 1px solid #1E293B;
  flex-shrink: 0;
}

.gate-phone-input {
  flex: 1;
  min-width: 0;
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  padding: 10px 12px;
  font-size: 16px;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.5px;
  box-sizing: border-box;
}

.gate-phone-input::placeholder {
  color: #475569;
  font-weight: 500;
  letter-spacing: normal;
}

.btn-gate-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #009EE3 0%, #0077B6 100%);
  color: #FFFFFF;
  border: none;
  border-radius: 12px;
  padding: 14px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 158, 227, 0.35);
  transition: all 0.2s ease;
}

.btn-gate-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(0, 158, 227, 0.5);
}

.gate-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 18px 0;
  color: #475569;
  font-size: 11.5px;
  font-weight: 600;
}

.gate-divider::before,
.gate-divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid #1E293B;
}

.gate-divider span {
  padding: 0 12px;
}

/* Google Sign-In Button */
.gate-btn-google {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #FFFFFF;
  color: #1F2937;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.gate-btn-google:hover {
  background: #F9FAFB;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.gate-tag-soon {
  font-size: 10px;
  font-weight: 800;
  color: #009EE3;
  background: rgba(0, 158, 227, 0.1);
  padding: 2px 7px;
  border-radius: 6px;
  border: 1px solid rgba(0, 158, 227, 0.2);
  margin-left: 4px;
}

/* OTP Step */
.gate-otp-target {
  background: #090E1A;
  border: 1px solid #1E293B;
  border-radius: 12px;
  padding: 12px 16px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gate-otp-target-text {
  font-size: 13px;
  color: #94A3B8;
}

.gate-otp-target-text strong {
  color: #FFFFFF;
}

.gate-btn-change-phone {
  background: none;
  border: none;
  color: #38BDF8;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  padding: 0;
}

/* Ekrandaki Test Kodu Kutusu (SMS Kredisini Korumak İçin) */
.gate-otp-test-box {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.18) 0%, rgba(16, 185, 129, 0.12) 100%);
  border: 1.5px solid #F59E0B;
  border-radius: 14px;
  padding: 14px;
  margin-bottom: 18px;
  animation: pulseGold 2s infinite ease-in-out;
}

@keyframes pulseGold {
  0% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4); }
  70% { box-shadow: 0 0 0 8px rgba(245, 158, 11, 0); }
  100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); }
}

.test-box-header {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 800;
  color: #FCD34D;
  margin-bottom: 8px;
}

.test-code-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #090E1A;
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 10px;
  padding: 8px 12px;
}

.test-code-label {
  font-size: 12px;
  color: #94A3B8;
}

.test-code-val {
  font-size: 20px;
  font-weight: 900;
  color: #F59E0B;
  letter-spacing: 3px;
  font-family: monospace;
}

.btn-fill-test-code {
  background: #F59E0B;
  color: #0F172A;
  border: none;
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 11.5px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.15s;
}

.btn-fill-test-code:hover {
  transform: scale(1.05);
}

.gate-otp-input-field {
  width: 100%;
  background: #090E1A;
  border: 2px solid #1E293B;
  border-radius: 12px;
  padding: 14px;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 12px;
  text-align: center;
  color: #FFFFFF;
  outline: none;
  box-sizing: border-box;
  margin-bottom: 14px;
  transition: border-color 0.2s;
}

.gate-otp-input-field:focus {
  border-color: #009EE3;
  box-shadow: 0 0 0 3px rgba(0, 158, 227, 0.2);
}

.gate-otp-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: #94A3B8;
  margin-bottom: 18px;
}

.gate-otp-timer {
  color: #38BDF8;
  font-weight: 700;
}

.gate-btn-resend {
  background: none;
  border: none;
  color: #64748B;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.gate-btn-resend.active {
  color: #009EE3;
  cursor: pointer;
}

.gate-footer-security {
  margin-top: 24px;
  text-align: center;
  font-size: 11.5px;
  color: #64748B;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.gate-security-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 11px;
  color: #475569;
  font-weight: 600;
}

/* ==========================================================================
   POST-LOGIN ONBOARDING / KARŞILAMA MODALI (#emlakciWelcomeModal)
   ========================================================================== */
.welcome-modal-card {
  width: 92%;
  max-width: 580px;
  background: #0B1426;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  box-shadow: 0 30px 70px -10px rgba(0, 0, 0, 0.85),
              0 0 40px rgba(0, 158, 227, 0.2);
  color: #FFFFFF;
  overflow: hidden;
  animation: modalScaleUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.welcome-modal-header {
  background: linear-gradient(135deg, #091224 0%, #102142 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 26px 24px 18px;
  text-align: center;
  position: relative;
}

.btn-welcome-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  color: #94A3B8;
  font-size: 20px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  z-index: 2;
}

.btn-welcome-close:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
}

.welcome-logo-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  padding: 8px 22px;
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.22);
  margin-bottom: 12px;
  border: 1px solid rgba(255, 255, 255, 0.85);
}

.welcome-logo-badge .welcome-logo-img,
.welcome-logo-img {
  height: 40px !important;
  width: auto !important;
  max-width: 140px !important;
  object-fit: contain;
  display: block;
}

.welcome-agent-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, rgba(0, 158, 227, 0.18) 0%, rgba(2, 132, 199, 0.28) 100%);
  border: 1px solid rgba(0, 158, 227, 0.45);
  color: #38BDF8;
  font-size: 11px;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.welcome-title {
  margin: 0 0 6px;
  font-size: 21px;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.3px;
}

.welcome-subtitle {
  margin: 0;
  font-size: 13px;
  color: #94A3B8;
  line-height: 1.5;
  max-width: 440px;
  margin: 0 auto;
}

.welcome-modal-body {
  padding: 18px 20px;
  max-height: 70vh;
  overflow-y: auto;
}

.welcome-features-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}

.welcome-feat-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  padding: 12px 14px;
  text-align: left;
  transition: all 0.2s ease;
}

.welcome-feat-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(0, 158, 227, 0.35);
}

.welcome-feat-icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: rgba(0, 158, 227, 0.16);
  border: 1px solid rgba(0, 158, 227, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.welcome-feat-content {
  flex: 1;
  min-width: 0;
}

.welcome-feat-title {
  font-size: 13.5px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 2px;
  letter-spacing: -0.1px;
}

.welcome-feat-desc {
  font-size: 12px;
  color: #CBD5E1;
  line-height: 1.45;
  font-weight: 400;
}

.welcome-action-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 14px;
}

.btn-welcome-parsel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #009EE3 0%, #0077B6 100%);
  color: #FFFFFF;
  border: none;
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 158, 227, 0.4);
  transition: opacity 0.2s;
}

.btn-welcome-parsel:hover {
  opacity: 0.92;
}

.btn-welcome-portal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-welcome-portal:hover {
  background: rgba(255, 255, 255, 0.14);
}

.welcome-dont-show-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  color: #64748B;
  cursor: pointer;
}

.welcome-dont-show-wrap input {
  accent-color: #009EE3;
  cursor: pointer;
}

/* ==========================================================================
   BİLDİRİM SİSTEMİ (Teklifler, İlan Durumu, Sistem Güncellemeleri)
   ========================================================================== */

/* Header Bildirim Butonu & Badge */
.btn-header-notifications {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  color: #FFFFFF;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-header-notifications:hover {
  background: rgba(0, 158, 227, 0.18);
  border-color: #009EE3;
  color: #38BDF8;
}

.notification-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 10px;
  background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.6);
  border: 2px solid #0B1426;
  animation: pulseNotificationBadge 1.8s infinite cubic-bezier(0.4, 0, 0.6, 1);
}

@keyframes pulseNotificationBadge {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
  50% { transform: scale(1.12); box-shadow: 0 0 0 7px rgba(239, 68, 68, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

/* Otomatik Açılış Bildirim Toast / Banner (#startupNotificationBanner) */
.startup-notification-banner {
  display: none !important; /* Block startup banner popup */
  position: fixed;
  top: 76px;
  right: 20px;
  max-width: 440px;
  width: calc(100% - 40px);
  background: rgba(11, 20, 38, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1.5px solid rgba(0, 158, 227, 0.4);
  border-radius: 18px;
  padding: 16px 18px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 158, 227, 0.2);
  z-index: 999999;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  animation: slideInNotification 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transition: all 0.3s ease;
}

@keyframes slideInNotification {
  from { opacity: 0; transform: translateY(-30px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.startup-notification-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.2) 0%, rgba(0, 158, 227, 0.2) 100%);
  border: 1px solid #F59E0B;
  color: #FCD34D;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  animation: bellWiggle 2s infinite ease-in-out;
}

@keyframes bellWiggle {
  0%, 100% { transform: rotate(0deg); }
  10%, 30% { transform: rotate(-12deg); }
  20%, 40% { transform: rotate(12deg); }
  50% { transform: rotate(0deg); }
}

.startup-notification-body {
  flex: 1;
}

.startup-notification-title {
  font-size: 14px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.startup-notification-badge-new {
  background: #EF4444;
  color: #FFFFFF;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 6px;
  text-transform: uppercase;
}

.startup-notification-desc {
  font-size: 12px;
  color: #94A3B8;
  line-height: 1.45;
  margin-bottom: 12px;
}

.startup-notification-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-startup-inspect {
  background: linear-gradient(135deg, #009EE3 0%, #0077B6 100%);
  color: #FFFFFF;
  border: none;
  border-radius: 9px;
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 158, 227, 0.35);
  transition: transform 0.15s;
}

.btn-startup-inspect:hover {
  transform: translateY(-1px);
}

.btn-startup-dismiss {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #94A3B8;
  border-radius: 9px;
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}

.btn-startup-dismiss:hover {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.14);
}

.btn-startup-close-x {
  background: none;
  border: none;
  color: #64748B;
  font-size: 18px;
  line-height: 1;
  padding: 2px 6px;
  cursor: pointer;
  transition: color 0.15s;
}

.btn-startup-close-x:hover {
  color: #FFFFFF;
}

/* Bildirim Merkezi Çekmecesi / Modalı (#emlakciNotificationDrawer) */
.notification-modal-card {
  width: 94%;
  max-width: 620px;
  background: #0B1426;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  box-shadow: 0 35px 80px -15px rgba(0, 0, 0, 0.9), 0 0 45px rgba(0, 158, 227, 0.2);
  color: #FFFFFF;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-height: 85vh;
  animation: modalScaleUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.notification-modal-header {
  padding: 20px 24px 14px;
  background: linear-gradient(135deg, #091224 0%, #102142 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.notification-header-title-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.notification-header-icon {
  font-size: 22px;
}

.notification-header-title {
  font-size: 18px;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0;
}

.notification-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-mark-all-read {
  background: rgba(0, 158, 227, 0.12);
  border: 1px solid rgba(0, 158, 227, 0.3);
  color: #38BDF8;
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 11.5px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.15s;
}

.btn-mark-all-read:hover {
  background: rgba(0, 158, 227, 0.25);
  color: #FFFFFF;
}

.btn-close-notification-modal {
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: #94A3B8;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.15s;
}

.btn-close-notification-modal:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
}

/* Bildirim Kategori Filtre Tabları */
.notification-filter-tabs {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  overflow-x: auto;
  max-width: 100%;
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.notification-filter-tabs::-webkit-scrollbar {
  display: none;
}

.notif-filter-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #94A3B8;
  border-radius: 10px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.15s;
}

.notif-filter-btn:hover {
  background: rgba(255, 255, 255, 0.09);
  color: #FFFFFF;
}

.notif-filter-btn.active {
  background: #009EE3;
  border-color: #009EE3;
  color: #FFFFFF;
  box-shadow: 0 2px 10px rgba(0, 158, 227, 0.35);
}

.notif-filter-badge {
  background: rgba(0, 0, 0, 0.3);
  padding: 1px 6px;
  border-radius: 6px;
  font-size: 10.5px;
}

.notif-filter-btn.active .notif-filter-badge {
  background: rgba(255, 255, 255, 0.25);
  color: #FFFFFF;
}

/* Bildirim Listesi */
.notification-list-body {
  padding: 14px 20px;
  overflow-y: auto;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.notification-empty-state {
  text-align: center;
  padding: 40px 20px;
  color: #64748B;
}

.notification-empty-icon {
  font-size: 40px;
  margin-bottom: 10px;
}

/* Tekil Bildirim Kartı */
.notification-card-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 14px 16px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}

.notification-card-item:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(0, 158, 227, 0.35);
  transform: translateX(3px);
}

.notification-card-item.unread {
  background: rgba(0, 158, 227, 0.06);
  border-color: rgba(0, 158, 227, 0.28);
}

.notification-unread-dot {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #38BDF8;
  box-shadow: 0 0 8px #38BDF8;
}

.notification-item-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.icon-type-teklif {
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.4);
  color: #F59E0B;
}

.icon-type-ilan_durum {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #10B981;
}

.icon-type-guncelleme {
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.4);
  color: #38BDF8;
}

.notification-item-content {
  flex: 1;
  min-width: 0;
}

.notification-item-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.badge-tag-type {
  font-size: 10px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 6px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.badge-tag-teklif {
  background: rgba(245, 158, 11, 0.2);
  color: #FCD34D;
  border: 1px solid rgba(245, 158, 11, 0.4);
}

.badge-tag-ilan_durum {
  background: rgba(16, 185, 129, 0.2);
  color: #6EE7B7;
  border: 1px solid rgba(16, 185, 129, 0.4);
}

.badge-tag-guncelleme {
  background: rgba(0, 158, 227, 0.2);
  color: #7DD3FC;
  border: 1px solid rgba(0, 158, 227, 0.4);
}

.notification-item-time {
  font-size: 11px;
  color: #64748B;
}

.notification-item-title {
  font-size: 13.5px;
  font-weight: 800;
  color: #F1F5F9;
  margin: 0 0 4px;
  line-height: 1.35;
}

.notification-item-desc {
  font-size: 12px;
  color: #94A3B8;
  margin: 0 0 8px;
  line-height: 1.45;
}

.notification-action-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 800;
  color: #38BDF8;
  transition: color 0.15s;
}

.notification-card-item:hover .notification-action-pill {
  color: #FFFFFF;
}

/* ==========================================================================
   UYGULAMA GÜNCELLEME MODALI (#appUpdateModal)
   ========================================================================== */
.update-modal-card {
  width: 92%;
  max-width: 560px;
  background: #0B1426;
  border: 1px solid rgba(0, 158, 227, 0.35);
  border-radius: 24px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.85), 0 0 50px rgba(0, 158, 227, 0.25);
  color: #FFFFFF;
  overflow: hidden;
  animation: modalScaleUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.update-modal-header {
  padding: 24px;
  text-align: center;
  background: linear-gradient(135deg, #091224 0%, #0F2744 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.update-version-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, rgba(0, 158, 227, 0.2) 0%, rgba(59, 130, 246, 0.3) 100%);
  border: 1px solid #009EE3;
  color: #38BDF8;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.update-modal-title {
  font-size: 20px;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0 0 6px;
}

.update-modal-subtitle {
  font-size: 12.5px;
  color: #94A3B8;
  margin: 0;
}

.update-modal-body {
  padding: 20px 24px;
  max-height: 60vh;
  overflow-y: auto;
}

.update-features-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.update-feat-row {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 12px 14px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.update-feat-icon {
  font-size: 20px;
  flex-shrink: 0;
}

.update-feat-name {
  font-size: 13px;
  font-weight: 800;
  color: #F8FAFC;
  margin-bottom: 3px;
}

.update-feat-desc {
  font-size: 11.5px;
  color: #94A3B8;
  line-height: 1.4;
  margin: 0;
}

.update-modal-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.btn-update-apply {
  background: linear-gradient(135deg, #009EE3 0%, #0077B6 100%);
  color: #FFFFFF;
  border: none;
  border-radius: 12px;
  padding: 13px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 158, 227, 0.4);
  transition: transform 0.15s;
}

.btn-update-apply:hover {
  transform: translateY(-1px);
}

.btn-update-close {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  border-radius: 12px;
  padding: 13px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.btn-update-close:hover {
  background: rgba(255, 255, 255, 0.14);
}

/* ==========================================================================
   BİLDİRİME TIKLANINCA HEDEF ELEMAN VURGU EFEKTİ (.notification-target-pulse)
   ========================================================================== */
.notification-target-pulse {
  animation: targetPulseHighlight 3.5s ease-out !important;
}

@keyframes targetPulseHighlight {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 158, 227, 0.85), 0 0 25px rgba(0, 158, 227, 0.8);
    border-color: #009EE3 !important;
    transform: scale(1.02);
  }
  30% {
    box-shadow: 0 0 0 12px rgba(0, 158, 227, 0.3), 0 0 35px rgba(0, 158, 227, 0.5);
    border-color: #38BDF8 !important;
    transform: scale(1.015);
  }
  60% {
    box-shadow: 0 0 0 6px rgba(0, 158, 227, 0.15);
    border-color: #009EE3 !important;
  }
  100% {
    box-shadow: none;
    transform: scale(1);
  }
}

/* ==========================================================================
   SAHİBİNDEN.COM STİLİ EMLAKÇI PROFİL DÜZENLEME & TEŞVİK SİSTEMİ
   ========================================================================== */

/* Profil Modalı Kapsayıcısı */
#emlakciProfileModal .emlak-modal-card {
  max-width: 680px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px -15px rgba(11, 25, 44, 0.4);
}

.profile-modal-body-scroll {
  overflow-y: auto;
  padding: 0 0 24px;
  flex: 1;
}

/* 1. Sahibinden Tarzı Kapak & Avatar Başlığı */
.profile-cover-banner {
  background: linear-gradient(135deg, #0B192C 0%, #173258 50%, #009EE3 100%);
  position: relative;
  padding: 24px 24px 44px;
  color: #FFFFFF;
}

.profile-cover-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 204, 0, 0.2);
  border: 1px solid #FFCC00;
  color: #FFD54F;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.profile-avatar-row {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  margin-top: 14px;
}

.profile-avatar-box {
  position: relative;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #11223A;
  border: 3.5px solid #FFFFFF;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.profile-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-avatar-initials {
  font-size: 32px;
  font-weight: 900;
  color: #FFFFFF;
  letter-spacing: 1px;
}

.btn-avatar-camera-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(11, 25, 44, 0.85);
  color: #FFCC00;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 0;
  font-size: 11px;
  font-weight: 700;
  gap: 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  transition: background 0.2s;
}

.profile-avatar-box:hover .btn-avatar-camera-overlay {
  background: #009EE3;
  color: #FFFFFF;
}

.profile-main-meta {
  flex: 1;
  padding-bottom: 4px;
}

.profile-main-meta h3 {
  margin: 0 0 4px;
  font-size: 19px;
  font-weight: 800;
  color: #FFFFFF;
}

.profile-main-meta .profile-office-text {
  font-size: 12.5px;
  color: #CBD5E1;
  margin: 0 0 6px;
}

.profile-main-meta .profile-phone-verified-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(16, 185, 129, 0.25);
  border: 1px solid #10B981;
  color: #6EE7B7;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 6px;
}

/* 2. Sahibinden Teşvik Sistemi (Profil Tamamlama Gamification) */
.profile-gamification-card {
  margin: -24px 20px 20px;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  position: relative;
  z-index: 5;
}

.profile-meter-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.profile-meter-title-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.profile-meter-icon {
  font-size: 18px;
}

.profile-meter-title {
  font-size: 13.5px;
  font-weight: 800;
  color: #0F172A;
  margin: 0;
}

.profile-meter-score-badge {
  background: linear-gradient(135deg, #FFB300 0%, #FF8F00 100%);
  color: #0B192C;
  font-size: 12.5px;
  font-weight: 900;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(255, 179, 0, 0.35);
}

.profile-meter-track {
  height: 10px;
  background: #EEF2F6;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  margin-bottom: 10px;
}

.profile-meter-fill {
  height: 100%;
  background: linear-gradient(90deg, #FFCC00 0%, #009EE3 70%, #10B981 100%);
  border-radius: 8px;
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.profile-incentive-box {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #FFFBEB;
  border: 1px solid #FDE68A;
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 11.5px;
  color: #92400E;
  margin-bottom: 12px;
  line-height: 1.4;
}

.profile-trust-badges-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 8px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #F1F5F9;
}

.trust-badge-card {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 11px;
  color: #64748B;
  transition: all 0.2s;
}

.trust-badge-card.active {
  background: #F0FDF4;
  border-color: #86EFAC;
  color: #166534;
  font-weight: 700;
}

.trust-badge-card.active-blue {
  background: #F0F9FF;
  border-color: #BAE6FD;
  color: #0369A1;
  font-weight: 700;
}

/* 3. Sahibinden Eksik Bilgi Tamamlama Kontrol Listesi */
.profile-checklist-wrap {
  margin: 0 20px 20px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  padding: 14px 16px;
}

.profile-checklist-head {
  font-size: 12.5px;
  font-weight: 800;
  color: #334155;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.profile-checklist-items {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.checklist-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  font-size: 12px;
  color: #334155;
  cursor: pointer;
  transition: all 0.15s;
}

.checklist-item-row:hover {
  border-color: #009EE3;
  background: #F0F9FF;
  transform: translateX(2px);
}

.checklist-item-row.done {
  background: #F0FDF4;
  border-color: #DCFCE7;
  color: #15803D;
  cursor: default;
}

.checklist-item-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.checklist-icon-status {
  font-size: 13px;
  font-weight: 800;
}

.checklist-points-pill {
  font-size: 10.5px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 6px;
  background: #FEF3C7;
  color: #B45309;
}

.checklist-item-row.done .checklist-points-pill {
  background: #DCFCE7;
  color: #15803D;
}

/* 4. Form Alanları */
.profile-form-padding {
  padding: 0 20px;
}

.profile-section-title {
  font-size: 13px;
  font-weight: 800;
  color: #0F172A;
  margin: 16px 0 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid #E2E8F0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.profile-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.profile-chips-select {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}

.profile-chip-tag {
  background: #F1F5F9;
  border: 1px solid #CBD5E1;
  border-radius: 16px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
  color: #475569;
  cursor: pointer;
  transition: all 0.15s;
  user-select: none;
}

.profile-chip-tag:hover {
  border-color: #009EE3;
  color: #009EE3;
}

.profile-chip-tag.selected {
  background: #009EE3;
  border-color: #009EE3;
  color: #FFFFFF;
  font-weight: 700;
}

.btn-profile-save {
  background: linear-gradient(135deg, #FFB300 0%, #FF8F00 100%);
  color: #0B192C;
  border: none;
  border-radius: 12px;
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(255, 179, 0, 0.4);
  width: 100%;
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 0.15s, box-shadow 0.15s;
}

.btn-profile-save:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 179, 0, 0.55);
}


/* ==========================================================================
   CİHAZDAN FOTOĞRAF VE KONUM EKLEME (YENİ İLAN MODALI)
   ========================================================================== */
.photo-upload-container {
  background: #F8FAFC;
  border: 2px dashed #CBD5E1;
  border-radius: 14px;
  padding: 14px;
  margin-bottom: 14px;
  transition: border-color 0.2s;
}

.photo-upload-container:hover {
  border-color: #009EE3;
}

.photo-action-buttons-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 12px;
}

.btn-photo-capture {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #FFFFFF;
  border: 1px solid #009EE3;
  color: #009EE3;
  border-radius: 10px;
  padding: 11px;
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 158, 227, 0.1);
  transition: all 0.15s;
}

.btn-photo-capture:hover {
  background: #009EE3;
  color: #FFFFFF;
}

.btn-photo-gallery {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #0B192C;
  border: 1px solid #0B192C;
  color: #FFFFFF;
  border-radius: 10px;
  padding: 11px;
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(11, 25, 44, 0.2);
  transition: all 0.15s;
}

.btn-photo-gallery:hover {
  background: #173258;
}

/* Fotoğraf Önizleme Izgarası */
.listing-photos-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.photo-thumb-card {
  position: relative;
  width: 82px;
  height: 82px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid #E2E8F0;
  background: #E2E8F0;
  cursor: pointer;
  transition: transform 0.15s, border-color 0.15s;
}

.photo-thumb-card:hover {
  border-color: #009EE3;
  transform: scale(1.03);
}

.photo-thumb-card.is-cover {
  border-color: #FFB300;
  box-shadow: 0 0 0 2px rgba(255, 179, 0, 0.4);
}

.photo-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-cover-tag {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 179, 0, 0.95);
  color: #0B192C;
  font-size: 8.5px;
  font-weight: 900;
  text-align: center;
  padding: 2px 0;
  letter-spacing: 0.3px;
}

.btn-photo-remove {
  position: absolute;
  top: 3px;
  right: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.9);
  color: #FFFFFF;
  border: none;
  font-size: 11px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.btn-photo-remove:hover {
  background: #DC2626;
}

.photo-summary-pill {
  font-size: 11px;
  color: #64748B;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
}

/* Konum Kolaylığı (GPS & Harita) */
.location-picker-wrap {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 14px;
}

.location-picker-actions {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 10px;
}

.btn-gps-locate {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #10B981;
  color: #FFFFFF;
  border: none;
  border-radius: 9px;
  padding: 10px 12px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.25);
  transition: background 0.15s;
}

.btn-gps-locate:hover {
  background: #059669;
}

.btn-map-pick {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #FFFFFF;
  border: 1px solid #CBD5E1;
  color: #334155;
  border-radius: 9px;
  padding: 10px 12px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.15s;
}

.btn-map-pick:hover {
  border-color: #009EE3;
  color: #009EE3;
}

.gps-feedback-chip {
  margin-top: 8px;
  padding: 6px 10px;
  background: #ECFDF5;
  border: 1px solid #A7F3D0;
  border-radius: 6px;
  font-size: 11px;
  color: #047857;
  display: flex;
  align-items: center;
  justify-content: space-between;
}


/* ==========================================================================
   EMLAKÇILAR ARASI "PORTFÖY SOR" (TALEP HAVUZU & AĞ ETKİSİ)
   ========================================================================== */

/* Portföy Sor Tab Header */
.portfoy-sor-hero {
  background: linear-gradient(135deg, #0B192C 0%, #1A365D 100%);
  border-radius: 16px;
  padding: 18px 20px;
  color: #FFFFFF;
  margin-bottom: 16px;
  box-shadow: 0 6px 20px rgba(11, 25, 44, 0.15);
  position: relative;
  overflow: hidden;
}

.portfoy-sor-hero::after {
  content: '🤝';
  position: absolute;
  right: -10px;
  bottom: -20px;
  font-size: 90px;
  opacity: 0.12;
  pointer-events: none;
}

.portfoy-sor-hero-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.portfoy-sor-hero-text h3 {
  margin: 0 0 4px;
  font-size: 17px;
  font-weight: 800;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 8px;
}

.portfoy-sor-hero-text p {
  margin: 0;
  font-size: 12px;
  color: #94A3B8;
  max-width: 520px;
  line-height: 1.4;
}

.btn-open-create-sor {
  background: linear-gradient(135deg, #FFB300 0%, #FF8F00 100%);
  color: #0B192C;
  border: none;
  border-radius: 10px;
  padding: 10px 16px;
  font-size: 12.5px;
  font-weight: 800;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 14px rgba(255, 179, 0, 0.4);
  transition: transform 0.15s;
}

.btn-open-create-sor:hover {
  transform: translateY(-2px);
}

/* Portföy Sor Filtre Çubuğu */
.portfoy-sor-filter-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 8px;
  margin-bottom: 14px;
}

.sor-filter-pill {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 11.5px;
  font-weight: 700;
  color: #475569;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.15s;
}

.sor-filter-pill:hover {
  border-color: #009EE3;
  color: #009EE3;
}

.sor-filter-pill.active {
  background: #009EE3;
  border-color: #009EE3;
  color: #FFFFFF;
}

/* Portföy Sor Kartları Feed */
.portfoy-sor-feed {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.portfoy-sor-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
  position: relative;
}

.portfoy-sor-card:hover {
  border-color: #CBD5E1;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.08);
}

.sor-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.sor-card-agent {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sor-agent-avatar {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, #009EE3 0%, #0B192C 100%);
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.sor-agent-meta h4 {
  margin: 0 0 2px;
  font-size: 13px;
  font-weight: 800;
  color: #0F172A;
}

.sor-agent-meta p {
  margin: 0;
  font-size: 11px;
  color: #64748B;
}

.sor-meta-right {
  text-align: right;
}

.sor-talep-code {
  font-size: 11px;
  font-weight: 800;
  color: #009EE3;
  background: #F0F9FF;
  border: 1px solid #BAE6FD;
  padding: 2px 8px;
  border-radius: 6px;
}

.sor-time-ago {
  font-size: 10.5px;
  color: #94A3B8;
  margin-top: 3px;
}

.sor-card-body {
  margin-bottom: 14px;
}

.sor-specs-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}

.sor-spec-badge {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  padding: 5px 10px;
  font-size: 11.5px;
  font-weight: 700;
  color: #334155;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.sor-spec-badge.price {
  background: #EFF6FF;
  border-color: #BFDBFE;
  color: #1D4ED8;
  font-weight: 800;
}

.sor-spec-badge.m2 {
  background: #F0FDF4;
  border-color: #BBF7D0;
  color: #15803D;
}

.sor-desc-bubble {
  background: #F8FAFC;
  border-left: 3px solid #009EE3;
  padding: 9px 12px;
  border-radius: 0 8px 8px 0;
  font-size: 12px;
  color: #334155;
  line-height: 1.45;
}

.sor-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px solid #F1F5F9;
}

.sor-responses-count {
  font-size: 11.5px;
  font-weight: 700;
  color: #64748B;
  display: flex;
  align-items: center;
  gap: 5px;
}

.sor-actions-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-respond-sor {
  background: #009EE3;
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  padding: 7px 14px;
  font-size: 11.5px;
  font-weight: 800;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: background 0.15s;
}

.btn-respond-sor:hover {
  background: #0087C2;
}

.btn-contact-sor {
  background: #F1F5F9;
  border: 1px solid #CBD5E1;
  color: #334155;
  border-radius: 8px;
  padding: 7px 12px;
  font-size: 11.5px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.btn-contact-sor:hover {
  background: #E2E8F0;
}

/* Talebe Portföy Öner Modalı */
.target-sor-preview-box {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 14px;
}

.selectable-listings-scroll {
  max-height: 220px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}

.select-listing-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.15s;
}

.select-listing-row:hover {
  border-color: #009EE3;
  background: #F0F9FF;
}

.select-listing-row.selected {
  border-color: #009EE3;
  background: #F0F9FF;
  box-shadow: 0 0 0 2px rgba(0, 158, 227, 0.25);
}

.select-listing-img {
  width: 44px;
  height: 44px;
  border-radius: 6px;
  object-fit: cover;
  background: #E2E8F0;
  flex-shrink: 0;
}

.select-listing-info {
  flex: 1;
}

.select-listing-title {
  font-size: 12px;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 2px;
}

.select-listing-meta {
  font-size: 11px;
  color: #64748B;
}

.select-listing-price {
  font-size: 12px;
  font-weight: 800;
  color: #009EE3;
}


/* -------------------------------------------------------------------------
   GATEKEEPER ROLE SELECTOR & MUSTERI STYLES
   ------------------------------------------------------------------------- */
.gate-role-tabs {
  display: flex;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 4px;
  margin-bottom: 18px;
  gap: 6px;
}

.gate-role-tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 10px;
  border-radius: 10px;
  border: none;
  background: transparent;
  color: #94A3B8;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.gate-role-tab:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.gate-role-tab.active {
  background: #009EE3;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(0, 158, 227, 0.4);
}

.gate-role-tab[data-role="musteri"].active {
  background: linear-gradient(135deg, #059669 0%, #10B981 100%);
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.4);
}

.gate-role-tab .role-icon {
  font-size: 16px;
}

/* Claim Parcel Button on Kadastro / Search Card */
.btn-action-claim-parcel {
  width: 100%;
  height: 46px;
  background: linear-gradient(135deg, #059669 0%, #10B981 100%);
  color: #fff;
  border: none;
  font-weight: 700;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  font-size: 13.5px;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.3);
  transition: all 0.2s ease;
}

.btn-action-claim-parcel:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(16, 185, 129, 0.4);
  background: linear-gradient(135deg, #047857 0%, #059669 100%);
}

.btn-action-claim-parcel:active {
  transform: translateY(1px);
}

/* Status Badges for Customer Listings */
.badge-status.revision {
  background: #E0F2FE;
  color: #0369A1;
  border: 1px solid #BAE6FD;
}

.badge-status.rejected {
  background: #FEE2E2;
  color: #B91C1C;
  border: 1px solid #FECACA;
}

.badge-status.passive {
  background: #F1F5F9;
  color: #64748B;
  border: 1px solid #E2E8F0;
}

/* Admin Note Callout Box */
.admin-note-callout {
  background: #FFFBEB;
  border: 1px solid #FDE68A;
  color: #92400E;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 12px;
  line-height: 1.4;
  margin: 8px 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.admin-note-callout strong {
  color: #78350F;
}

/* User Type Badge in Header */
body[data-app-mode="musteri"] .emlak-header {
  background: linear-gradient(180deg, #064E3B 0%, #022C22 100%);
  border-bottom: 2px solid #059669;
}

body[data-app-mode="musteri"] .emlak-user-avatar {
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  color: #fff;
}

/* ==========================================================================
   MODERN 5-TAB ERGONOMIC APP SHELL (S24 ULTRA & MOBILE OPTIMIZED)
   ========================================================================== */
.emlak-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: calc(64px + env(safe-area-inset-bottom));
  padding-bottom: env(safe-area-inset-bottom);
  background: #0B192C !important;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr 1fr 1fr;
  align-items: center;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.35);
  box-sizing: border-box;
}

.emlak-nav-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: #94A3B8;
  font-size: 10px;
  font-weight: 700;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: none;
  height: 100%;
  position: relative;
  transition: all 0.15s ease;
}

.emlak-nav-tab.active {
  color: #009EE3 !important;
}

.emlak-nav-tab.active svg {
  stroke: #009EE3 !important;
}

.emlak-nav-tab svg {
  width: 20px;
  height: 20px;
  stroke: #94A3B8;
  stroke-width: 2.2;
}

.emlak-nav-badge-pill {
  position: absolute;
  top: 6px;
  right: calc(50% - 14px);
  background: #EF4444;
  color: #FFFFFF;
  font-size: 9px;
  font-weight: 800;
  min-width: 16px;
  height: 16px;
  border-radius: 8px;
  padding: 0 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #0B192C;
}

.emlak-nav-center-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.btn-center-parsel {
  position: absolute;
  top: -18px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #009EE3 0%, #0077B6 100%) !important;
  border: 3px solid #0B192C !important;
  color: #FFFFFF !important;
  box-shadow: 0 6px 18px rgba(0, 158, 227, 0.45);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10000;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-center-parsel:active {
  transform: translateY(-1px) scale(1.05);
}

.btn-center-parsel.active-mode {
  background: linear-gradient(135deg, #10B981 0%, #059669 100%) !important;
  box-shadow: 0 6px 18px rgba(16, 185, 129, 0.45);
}

.center-parsel-label {
  position: absolute;
  bottom: 6px;
  font-size: 8.5px;
  font-weight: 800;
  color: #009EE3;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

/* Dynamic View Sections */
.emlak-view-section {
  display: none;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}
.emlak-view-section.active {
  display: block;
}

/* Mobile Floating Search Bar on Map */
.mobile-map-search-bar {
  display: none;
}

@media (max-width: 1023px) {
  .mobile-map-search-bar {
    display: flex !important;
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    z-index: 1000;
    background: rgba(11, 25, 44, 0.94);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 14px;
    padding: 6px 8px;
    gap: 6px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    box-sizing: border-box;
  }
  .mobile-search-select {
    flex: 1.4;
    min-width: 0;
    height: 38px;
    background: rgba(255, 255, 255, 0.12);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 9px;
    padding: 0 8px;
    font-size: 12px;
    font-weight: 600;
  }
  .mobile-search-select option {
    background: #0B192C;
    color: #FFFFFF;
  }
  .mobile-search-input {
    flex: 0.8;
    min-width: 0;
    height: 38px;
    background: rgba(255, 255, 255, 0.12);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 9px;
    padding: 0 6px;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
  }
  .mobile-search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
  }
  .btn-mobile-search-submit {
    width: 38px;
    height: 38px;
    background: #009EE3;
    color: #FFFFFF;
    border: none;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    cursor: pointer;
  }
  .btn-mobile-gps {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.12);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    cursor: pointer;
  }

  /* Mobile Parcel Bottom Sheet */
  .mobile-parcel-sheet {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    z-index: 1001;
    background: #FFFFFF;
    border-radius: 18px;
    padding: 14px 16px;
    box-shadow: 0 12px 32px rgba(11, 25, 44, 0.28);
    border: 1px solid #E2E8F0;
    max-height: 52vh;
    overflow-y: auto;
    animation: slideUpSheetAnim 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    box-sizing: border-box;
  }
  @keyframes slideUpSheetAnim {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
  }
  .mobile-sheet-drag-handle {
    width: 36px;
    height: 4px;
    border-radius: 2px;
    background: #CBD5E1;
    margin: 0 auto 10px;
  }
  .mobile-sheet-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 10px;
  }
  .mobile-sheet-badge {
    display: inline-block;
    background: #EBF7FD;
    color: #009EE3;
    font-size: 10px;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 6px;
    margin-bottom: 3px;
  }
  .mobile-sheet-title {
    margin: 0;
    font-size: 16px;
    font-weight: 800;
    color: #0F172A;
  }
  .mobile-sheet-sub {
    margin: 2px 0 0;
    font-size: 11.5px;
    color: #64748B;
  }
  .btn-close-mobile-sheet {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #F1F5F9;
    color: #64748B;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
  }
  .mobile-sheet-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 12px;
  }
  .mobile-sheet-spec-item {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 10px;
    padding: 8px 10px;
  }
  .mobile-sheet-spec-item .spec-label {
    display: block;
    font-size: 10px;
    color: #64748B;
    font-weight: 600;
  }
  .mobile-sheet-spec-item .spec-val {
    display: block;
    font-size: 13px;
    color: #0F172A;
    font-weight: 800;
    margin-top: 2px;
  }
  .mobile-sheet-actions {
    display: flex;
    gap: 8px;
  }
  .btn-sheet-act {
    flex: 1;
    padding: 10px 8px;
    border-radius: 10px;
    font-size: 11.5px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
    border: none;
  }
  .btn-sheet-add-listing {
    background: #009EE3;
    color: #FFFFFF;
  }
  .btn-sheet-offer {
    background: #FF7B49;
    color: #FFFFFF;
  }
  .btn-sheet-pdf {
    background: #0B192C;
    color: #FFFFFF;
  }
}

/* ==========================================================================
   TALEP & KÖR HAVUZ (BLIND MATCHMAKING) STİLLERİ
   ========================================================================== */
.havuz-hero {
  background: linear-gradient(135deg, #0B192C 0%, #172D4D 100%);
  border-radius: 16px;
  padding: 16px 18px;
  color: #FFFFFF;
  margin-bottom: 14px;
  box-shadow: 0 4px 16px rgba(11, 25, 44, 0.12);
}
.havuz-hero-title {
  font-size: 15px;
  font-weight: 800;
  margin: 0 0 5px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.havuz-hero-desc {
  font-size: 11.5px;
  color: #CBD5E1;
  margin: 0 0 12px;
  line-height: 1.45;
}
.btn-create-talep-main {
  background: linear-gradient(135deg, #009EE3 0%, #0077B6 100%);
  color: #FFFFFF;
  border: none;
  border-radius: 10px;
  padding: 9px 16px;
  font-size: 12.5px;
  font-weight: 800;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(0, 158, 227, 0.35);
}

.havuz-subnav-tabs, .notif-subnav-tabs {
  display: flex;
  background: #E2E8F0;
  border-radius: 12px;
  padding: 4px;
  gap: 4px;
  margin-bottom: 14px;
}
.havuz-subnav-btn, .notif-subnav-btn {
  flex: 1;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 11.5px;
  font-weight: 700;
  color: #475569;
  background: none;
  border: none;
  cursor: pointer;
  text-align: center;
  transition: all 0.15s ease;
}
.havuz-subnav-btn.active, .notif-subnav-btn.active {
  background: #FFFFFF;
  color: #0B192C;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

/* Talep Kartı */
.talep-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  padding: 14px 16px;
  margin-bottom: 12px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}
.talep-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.talep-blind-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #FEF3C7;
  color: #92400E;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 6px;
  border: 1px solid #FDE68A;
}
.talep-time {
  font-size: 11px;
  color: #94A3B8;
}
.talep-region-title {
  font-size: 14px;
  font-weight: 800;
  color: #0F172A;
  margin: 0 0 6px;
}
.talep-badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 8px;
}
.talep-badge {
  background: #F1F5F9;
  color: #334155;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
}
.talep-badge.price {
  background: #ECFDF5;
  color: #047857;
  border: 1px solid #A7F3D0;
}
.talep-badge.m2 {
  background: #EFF6FF;
  color: #1D4ED8;
  border: 1px solid #BFDBFE;
}
.talep-note {
  background: #F8FAFC;
  border-left: 3px solid #009EE3;
  padding: 8px 10px;
  border-radius: 0 8px 8px 0;
  font-size: 12px;
  color: #475569;
  margin-bottom: 12px;
  line-height: 1.4;
}
.talep-actions-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px solid #F1F5F9;
}
.talep-response-count {
  font-size: 12px;
  color: #64748B;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}
.btn-oner-action {
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

/* ==========================================================================
   YENİ NESİL LÜKS & MERKEZİ GİRİŞ EKRANI
   ========================================================================== */
.gate-login-container {
  width: 100%;
  max-width: 440px;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gate-card {
  width: 100%;
  background: rgba(15, 23, 42, 0.90);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  padding: 32px 26px;
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.85),
              0 0 50px rgba(0, 158, 227, 0.15);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-sizing: border-box;
  text-align: center;
}

.gate-card-header {
  margin-bottom: 22px;
}

.gate-logo-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  padding: 12px 28px;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.85);
}

.gate-logo-box img,
.gate-logo-img {
  height: 64px !important;
  width: auto !important;
  max-width: 210px !important;
  object-fit: contain;
  display: block;
}

.gate-title {
  font-size: 22px;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0 0 4px;
  letter-spacing: 0.5px;
}

.gate-badge-sub {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #009EE3;
  margin-bottom: 8px;
}

.gate-desc {
  font-size: 12.5px;
  color: #94A3B8;
  line-height: 1.5;
  margin: 0;
}

.gate-btn-google {
  width: 100%;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #FFFFFF;
  color: #1F2937;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 0 16px;
  font-size: 14.5px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  margin-top: 4px;
  box-sizing: border-box;
}

.gate-btn-google:hover {
  background: #F9FAFB;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

.gate-btn-google:active {
  transform: translateY(0);
}

.gate-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 20px 0;
  color: #64748B;
  font-size: 11.5px;
  font-weight: 600;
}

.gate-divider::before,
.gate-divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.gate-divider span {
  padding: 0 12px;
}

.gate-input-label {
  display: block;
  text-align: left;
  font-size: 12px;
  font-weight: 700;
  color: #CBD5E1;
  margin-bottom: 6px;
}

.gate-phone-input-wrap {
  display: flex;
  align-items: center;
  background: #090E1A;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 4px;
  margin-bottom: 16px;
  transition: all 0.2s;
  box-sizing: border-box;
}

.gate-phone-input-wrap:focus-within {
  border-color: #009EE3;
  box-shadow: 0 0 0 3px rgba(0, 158, 227, 0.25);
}

.gate-phone-prefix {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 10px;
  font-size: 13.5px;
  font-weight: 700;
  color: #E2E8F0;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.gate-phone-input {
  flex: 1;
  min-width: 0;
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  padding: 10px 12px;
  font-size: 16px;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.5px;
  box-sizing: border-box;
}

.gate-phone-input::placeholder {
  color: #475569;
  font-weight: 500;
}

.btn-gate-submit {
  width: 100%;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #009EE3 0%, #0077B6 100%);
  color: #FFFFFF;
  border: none;
  border-radius: 12px;
  padding: 0 16px;
  font-size: 14.5px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 158, 227, 0.35);
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.btn-gate-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(0, 158, 227, 0.5);
}

.btn-gate-submit:active {
  transform: translateY(0);
}

.gate-otp-target {
  background: #090E1A;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 12.5px;
}

.gate-otp-target-text span {
  color: #94A3B8;
}

.gate-otp-target-text strong {
  color: #38BDF8;
  font-weight: 700;
  margin-left: 4px;
}

.gate-btn-change-phone {
  background: none;
  border: none;
  color: #009EE3;
  font-size: 11.5px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
}

.gate-otp-input-field {
  width: 100%;
  background: #090E1A;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 14px;
  font-size: 24px;
  font-weight: 800;
  color: #FFFFFF;
  text-align: center;
  letter-spacing: 8px;
  outline: none;
  box-sizing: border-box;
  margin-bottom: 12px;
  transition: all 0.2s;
}

.gate-otp-input-field:focus {
  border-color: #009EE3;
  box-shadow: 0 0 0 3px rgba(0, 158, 227, 0.25);
}

.gate-otp-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: #94A3B8;
  margin-bottom: 16px;
}

.gate-otp-timer {
  color: #F59E0B;
  font-weight: 700;
}

.gate-btn-resend {
  background: none;
  border: none;
  color: #009EE3;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  padding: 0;
}

.gate-btn-resend:disabled {
  color: #475569;
  cursor: not-allowed;
}

.gate-footer-security {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 11.5px;
  color: #64748B;
}

.gate-security-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}


/* ==========================================================================
   UNIFIED MASTER HEADER (Masaüstü & Mobil Tek Tip Üst Bar)
   ========================================================================== */
.app-header.unified-master-header {
  background: linear-gradient(135deg, #0B192C 0%, #0F223D 60%, #172D4D 100%) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  position: sticky !important;
  top: 0 !important;
  z-index: 1000 !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2) !important;
  width: 100% !important;
  max-width: 100vw !important;
  box-sizing: border-box !important;
}

.unified-master-header .header-container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-sizing: border-box;
}

/* Brand Logo */
.brand-logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
  transition: opacity 0.2s ease;
}
.brand-logo-wrap:hover {
  opacity: 0.95;
}
.brand-logo-badge {
  background: #FFFFFF !important;
  padding: 5px 12px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.7);
  flex-shrink: 0;
  transition: all 0.2s ease;
}
.brand-logo-badge .brand-logo-img {
  height: 38px !important;
  width: auto !important;
  max-width: 130px !important;
  object-fit: contain;
  display: block;
  padding: 0 !important;
  background: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
/* Fallback if wrapper badge element is missing */
.unified-master-header .brand-logo-wrap > .brand-logo-img {
  background: #FFFFFF !important;
  padding: 5px 12px !important;
  border-radius: 10px !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.22) !important;
  border: 1px solid rgba(255, 255, 255, 0.7) !important;
  height: 38px !important;
  width: auto !important;
  max-width: 130px !important;
  object-fit: contain;
  display: block;
}
.brand-title-group {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.brand-title {
  font-size: 14px;
  font-weight: 800;
  color: #FFFFFF !important;
  letter-spacing: -0.2px;
}
.brand-tagline {
  font-size: 11px;
  color: #94A3B8 !important;
  font-weight: 500;
}

/* Unified Segmented Mode Switcher (Orta Geçiş Düğmesi) */
.unified-mode-switcher {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  padding: 3px;
  gap: 2px;
}
.mode-switch-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 26px;
  border: none;
  background: transparent;
  color: #94A3B8;
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.mode-switch-btn:hover {
  color: #FFFFFF;
}
.mode-switch-btn.active {
  background: #009EE3;
  color: #FFFFFF;
  box-shadow: 0 2px 10px rgba(0, 158, 227, 0.35);
}

/* Right User Group */
.unified-header-user-group {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Quota Pill (Kullanıcı talebiyle kaldırıldı) */
.header-quota-pill {
  display: none !important;
}

/* User Account Chip */
.unified-user-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 5px 12px 5px 6px;
  border-radius: 24px;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #FFFFFF;
}
.unified-user-chip:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.3);
}
.user-chip-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #009EE3 0%, #FF7B49 100%);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.user-chip-meta {
  display: flex;
  align-items: center;
  gap: 6px;
}
.user-chip-name {
  font-size: 12.5px;
  font-weight: 700;
  max-width: 120px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #FFFFFF;
}
.user-chip-badge {
  background: #F59E0B;
  color: #0F172A;
  font-size: 9.5px;
  font-weight: 800;
  padding: 1px 5px;
  border-radius: 4px;
}

/* Logout Button */
.btn-unified-logout {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.25);
  color: #F87171;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-unified-logout:hover {
  background: #EF4444;
  color: #FFFFFF;
  border-color: #EF4444;
}

/* Mobile Adjustments */
@media (max-width: 1023px) {
  .unified-master-header .header-container {
    padding: 0 10px;
    gap: 6px;
  }
  .brand-tagline {
    display: none;
  }
  .brand-logo-wrap {
    gap: 6px !important;
  }
  .brand-logo-badge {
    padding: 4px 8px !important;
    border-radius: 8px !important;
  }
  .brand-logo-badge .brand-logo-img,
  .unified-master-header .brand-logo-wrap > .brand-logo-img {
    height: 30px !important;
    max-width: 85px !important;
  }
  .unified-master-header .brand-logo-wrap > .brand-logo-img {
    padding: 4px 8px !important;
  }
  .brand-title {
    display: none;
  }
  .mode-switch-btn {
    padding: 5px 9px;
    font-size: 11.5px;
    gap: 4px;
  }
  .header-quota-pill {
    display: none;
  }
  .user-chip-name {
    display: none;
  }
  .logout-text {
    display: none;
  }
  .btn-unified-logout {
    padding: 6px 8px;
  }
}

/* ==========================================================================
   EMLAKÇI YÖNETİM PANELİ (Yeni Nesil Dinamik & Sade Tasarım)
   ========================================================================== */
#emlakci-dashboard-screen {
  padding: 20px 20px calc(80px + env(safe-area-inset-bottom));
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

/* Hero Status Banner */
.emlak-hero-card {
  background: linear-gradient(135deg, #0B192C 0%, #162A45 60%, #0F223D 100%);
  border-radius: 20px;
  border: 1px solid rgba(0, 158, 227, 0.25);
  box-shadow: 0 8px 30px rgba(11, 25, 44, 0.15);
  padding: 22px 24px;
  color: #FFFFFF;
  margin-bottom: 20px;
}
.emlak-hero-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 18px;
}
.emlak-hero-profile {
  display: flex;
  align-items: center;
  gap: 14px;
}
.emlak-hero-avatar {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: linear-gradient(135deg, #009EE3 0%, #FF7B49 100%);
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 158, 227, 0.35);
  flex-shrink: 0;
}
.emlak-hero-info h1 {
  margin: 0;
  font-size: 17px;
  font-weight: 800;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.hero-role-pill {
  background: #F59E0B;
  color: #0F172A;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 6px;
}
.emlak-hero-info p {
  margin: 4px 0 0;
  font-size: 12px;
  color: #CBD5E1;
}
.emlak-hero-quotas {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.hero-quota-chip {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 12px;
  color: #E2E8F0;
  font-weight: 600;
}
.hero-quota-chip strong {
  color: #009EE3;
  font-weight: 800;
}

/* Quick Actions in Hero */
.emlak-hero-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.btn-hero-action {
  padding: 9px 18px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-hero-primary {
  background: #009EE3;
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(0, 158, 227, 0.35);
}
.btn-hero-primary:hover {
  background: #0087C2;
  transform: translateY(-1px);
}
.btn-hero-secondary {
  background: #10B981;
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.35);
}
.btn-hero-secondary:hover {
  background: #059669;
  transform: translateY(-1px);
}
.btn-hero-subtle {
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.btn-hero-subtle:hover {
  background: rgba(255, 255, 255, 0.18);
}

/* 3 Interactive KPI Cards */
.emlak-kpi-3grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 20px;
}
@media (max-width: 640px) {
  .emlak-kpi-3grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
.emlak-kpi-card-v2 {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 16px 20px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}
.emlak-kpi-card-v2:hover {
  border-color: #009EE3;
  box-shadow: 0 6px 20px rgba(0, 158, 227, 0.12);
  transform: translateY(-2px);
}
.kpi-v2-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}
.kpi-v2-title {
  font-size: 12px;
  font-weight: 700;
  color: #64748B;
  letter-spacing: 0.3px;
}
.kpi-v2-icon {
  font-size: 18px;
}
.kpi-v2-value {
  font-size: 26px;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 4px;
}
.kpi-v2-desc {
  font-size: 11.5px;
  color: #94A3B8;
  font-weight: 600;
}

/* Segmented Tabs Header */
.emlak-segmented-tabs {
  display: flex;
  align-items: center;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  padding: 4px;
  gap: 4px;
  margin-bottom: 18px;
  overflow-x: auto;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.03);
}
.tab-segment-btn {
  flex: 1;
  min-width: 140px;
  padding: 10px 14px;
  border-radius: 10px;
  border: none;
  background: transparent;
  color: #64748B;
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  white-space: nowrap;
}
.tab-segment-btn:hover {
  color: #0F172A;
  background: #F8FAFC;
}
.tab-segment-btn.active {
  background: #0B192C;
  color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(11, 25, 44, 0.15);
}

/* ==========================================================================
   TAB 4: KAPSAMLI ÜYELİK VE HESAP YÖNETİMİ KARTLARI
   ========================================================================== */
.membership-overview-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 18px;
  padding: 22px;
  margin-bottom: 18px;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
}
.membership-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #F1F5F9;
}
.membership-plan-badge {
  display: inline-block;
  background: #FEF3C7;
  color: #D97706;
  font-size: 10.5px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 6px;
  margin-bottom: 6px;
}
.membership-plan-title {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  color: #0F172A;
}
.membership-plan-sub {
  margin: 4px 0 0;
  font-size: 12.5px;
  color: #64748B;
}
.btn-upgrade-plan {
  background: #009EE3;
  color: #FFFFFF;
  border: none;
  border-radius: 10px;
  padding: 9px 16px;
  font-size: 12.5px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-upgrade-plan:hover {
  background: #0087C2;
}

.quotas-progress-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
}
.quota-progress-card {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  padding: 14px 16px;
}
.quota-prog-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.quota-prog-title {
  font-size: 12px;
  font-weight: 700;
  color: #334155;
}
.quota-prog-val {
  font-size: 12px;
  color: #009EE3;
  font-weight: 700;
}
.quota-prog-track {
  height: 7px;
  background: #E2E8F0;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 6px;
}
.quota-prog-bar {
  height: 100%;
  background: #009EE3;
  border-radius: 4px;
  transition: width 0.3s ease;
}
.quota-prog-hint {
  display: block;
  font-size: 11px;
  color: #94A3B8;
}

/* Profile Form & Settings Cards */
.profile-management-card,
.settings-management-card,
.logout-management-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 18px;
  padding: 22px;
  margin-bottom: 18px;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
}
.profile-card-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 18px;
}
.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 640px) {
  .form-grid-2 {
    grid-template-columns: 1fr;
  }
}
.btn-save-profile-main {
  width: 100%;
  height: 44px;
  background: #009EE3;
  color: #FFFFFF;
  border: none;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 800;
  cursor: pointer;
  margin-top: 14px;
  transition: background 0.2s ease;
}
.btn-save-profile-main:hover {
  background: #0087C2;
}

/* Setting Rows */
.setting-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid #F1F5F9;
}
.setting-row:last-child {
  border-bottom: none;
}
.setting-title {
  font-size: 13px;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 2px;
}
.setting-desc {
  font-size: 11.5px;
  color: #64748B;
}
.setting-active-badge {
  background: #ECFDF5;
  color: #059669;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 6px;
}

/* Switch Toggle */
.switch-toggle {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}
.switch-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.switch-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background-color: #CBD5E1;
  transition: .2s;
  border-radius: 24px;
}
.switch-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: .2s;
  border-radius: 50%;
}
input:checked + .switch-slider {
  background-color: #10B981;
}
input:checked + .switch-slider:before {
  transform: translateX(20px);
}

/* Logout Card */
.logout-card-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 14px;
}
.logout-card-title {
  margin: 0;
  font-size: 15px;
  font-weight: 800;
  color: #0F172A;
}
.logout-card-desc {
  margin: 2px 0 0;
  font-size: 12px;
  color: #64748B;
}
.btn-card-logout-action {
  background: #FEE2E2;
  color: #DC2626;
  border: 1px solid #FECACA;
  border-radius: 10px;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-card-logout-action:hover {
  background: #DC2626;
  color: #FFFFFF;
}
.account-delete-row {
  text-align: center;
  padding-top: 10px;
  border-top: 1px solid #F1F5F9;
}
.link-delete-account {
  font-size: 12px;
  color: #94A3B8;
  text-decoration: underline;
}
.link-delete-account:hover {
  color: #DC2626;
}


/* Responsive Mode Switcher & Mobile Polish */
.mode-text-short {
  display: none;
}
@media (max-width: 1023px) {
  .mode-text-full {
    display: none !important;
  }
  .mode-text-short {
    display: inline !important;
  }
  .unified-master-header .header-container {
    padding: 0 8px !important;
    gap: 4px !important;
    max-width: 100vw !important;
  }
  .brand-logo-wrap {
    gap: 6px !important;
  }
  .brand-logo-badge {
    padding: 4px 8px !important;
    border-radius: 8px !important;
  }
  .brand-logo-badge .brand-logo-img,
  .brand-logo-img {
    height: 30px !important;
    max-width: 85px !important;
  }
  .unified-mode-switcher {
    padding: 2px !important;
    gap: 1px !important;
    border-radius: 20px !important;
  }
  .mode-switch-btn {
    padding: 4px 8px !important;
    font-size: 11px !important;
    gap: 3px !important;
    border-radius: 16px !important;
  }
  .unified-header-user-group {
    gap: 4px !important;
  }
  .unified-user-chip {
    padding: 2px 6px 2px 2px !important;
    gap: 4px !important;
  }
  .user-chip-avatar {
    width: 24px !important;
    height: 24px !important;
    font-size: 10px !important;
  }
  .user-chip-meta {
    display: none !important;
  }
  .user-chip-chevron {
    width: 11px !important;
    height: 11px !important;
  }
  .btn-unified-logout {
    padding: 5px 7px !important;
  }
}


/* Responsive Mode Switcher & Mobile Polish */
.mode-text-short {
  display: none;
}
@media (max-width: 1023px) {
  .mode-text-full {
    display: none !important;
  }
  .mode-text-short {
    display: inline !important;
  }
  .unified-master-header .header-container {
    padding: 0 8px !important;
    gap: 4px !important;
    max-width: 100vw !important;
  }
  .brand-logo-wrap {
    gap: 6px !important;
  }
  .brand-logo-badge {
    padding: 4px 8px !important;
    border-radius: 8px !important;
  }
  .brand-logo-badge .brand-logo-img,
  .unified-master-header .brand-logo-wrap > .brand-logo-img {
    height: 30px !important;
    max-width: 85px !important;
  }
  .unified-master-header .brand-logo-wrap > .brand-logo-img {
    padding: 4px 8px !important;
  }
  .unified-mode-switcher {
    padding: 2px !important;
    gap: 1px !important;
    border-radius: 20px !important;
  }
  .mode-switch-btn {
    padding: 4px 8px !important;
    font-size: 11px !important;
    gap: 3px !important;
    border-radius: 16px !important;
  }
  .unified-header-user-group {
    gap: 4px !important;
  }
  .unified-user-chip {
    padding: 2px 6px 2px 2px !important;
    gap: 4px !important;
  }
  .user-chip-avatar {
    width: 24px !important;
    height: 24px !important;
    font-size: 10px !important;
  }
  .user-chip-meta {
    display: none !important;
  }
  .user-chip-chevron {
    width: 11px !important;
    height: 11px !important;
  }
  .btn-unified-logout {
    padding: 5px 7px !important;
  }
}

/* ==========================================================================
   MODERN LIGHT GIS PLATFORM SHOWCASE (Aydınlık, Prestijli ve Ferah Tasarım)
   ========================================================================== */
.gis-showcase-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  background: radial-gradient(ellipse at 50% -10%, #EBF4FF 0%, #F8FAFC 55%, #F1F5F9 100%);
  color: #0F172A;
  overflow-y: auto;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-sizing: border-box;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}
.gis-showcase-container.hidden {
  display: none !important;
}
.gis-showcase-container::-webkit-scrollbar {
  width: 6px;
}
.gis-showcase-container::-webkit-scrollbar-thumb {
  background: #CBD5E1;
  border-radius: 4px;
}

/* Showcase Hero Modern */
.showcase-hero-modern {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 18px;
  padding: 20px 24px;
  box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.05), 0 1px 3px rgba(0, 0, 0, 0.03);
}
.showcase-hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.95fr;
  gap: 24px;
  align-items: center;
}
.showcase-hero-left {
  display: flex;
  flex-direction: column;
}
.showcase-badge-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.showcase-badge-corp {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 12px;
  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  color: #0284C7;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.4px;
  border-radius: 20px;
  text-transform: uppercase;
}
.showcase-pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 8px #10B981;
  animation: showcasePulse 2s infinite;
}
@keyframes showcasePulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}
.showcase-badge-loc {
  font-size: 11.5px;
  color: #64748B;
  font-weight: 600;
}
.showcase-title-modern {
  font-size: 24px;
  font-weight: 800;
  color: #0F172A;
  margin: 0 0 8px 0;
  line-height: 1.3;
  letter-spacing: -0.4px;
}
.text-gradient-brand {
  background: linear-gradient(135deg, #0284C7 0%, #0369A1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.showcase-subtitle-modern {
  font-size: 13.5px;
  line-height: 1.55;
  color: #475569;
  margin: 0 0 16px 0;
}
.showcase-subtitle-modern strong {
  color: #0F172A;
}

/* Hero Right Visual Frame */
.showcase-hero-right {
  position: relative;
  width: 100%;
}
.hero-visual-header-tabs {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.btn-hero-tab {
  background: #F1F5F9;
  border: 1px solid #E2E8F0;
  color: #475569;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  user-select: none;
}
.btn-hero-tab:hover {
  background: #E2E8F0;
  color: #0F172A;
}
.btn-hero-tab.active {
  background: #0284C7;
  border-color: #0284C7;
  color: #FFFFFF;
  box-shadow: 0 2px 6px rgba(2, 132, 199, 0.25);
}
.showcase-visual-frame {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #E2E8F0;
  box-shadow: 0 8px 24px -4px rgba(15, 23, 42, 0.08);
  background: #F1F5F9;
  aspect-ratio: 16 / 9;
  max-height: 220px;
}
.showcase-visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.showcase-visual-frame:hover .showcase-visual-img {
  transform: scale(1.03);
}
.visual-floating-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 11px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.1);
  z-index: 5;
}
.badge-top-left {
  top: 10px;
  left: 10px;
}
.badge-bottom-right {
  bottom: 10px;
  right: 10px;
}
.visual-floating-badge .badge-icon {
  font-size: 14px;
}
.visual-floating-badge .badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.visual-floating-badge strong {
  font-size: 11px;
  font-weight: 700;
  color: #0F172A;
}
.visual-floating-badge small {
  font-size: 9.5px;
  color: #64748B;
  font-weight: 600;
}

/* Quick Try Chips */
.showcase-quick-try-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 14px;
  border-top: 1px solid #F1F5F9;
}
.quick-try-label {
  font-size: 11.5px;
  font-weight: 700;
  color: #475569;
}
.quick-try-chips {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.btn-quick-parcel {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 12px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 9px;
  color: #0F172A;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}
.btn-quick-parcel:hover {
  background: #EFF6FF;
  border-color: #38BDF8;
  color: #0284C7;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.15);
}
.chip-pin { font-size: 12px; }
.chip-title { font-weight: 700; color: #0F172A; }
.btn-quick-parcel:hover .chip-title { color: #0284C7; }
.chip-tag {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
}
.tag-cyan { background: #E0F2FE; color: #0284C7; }
.tag-green { background: #DCFCE7; color: #15803D; }
.tag-amber { background: #FEF3C7; color: #B45309; }
.tag-purple { background: #F3E8FF; color: #7E22CE; }

/* Features Grid (4 Modern White Cards) */
.showcase-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px;
}
.showcase-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  transition: all 0.2s ease;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.03);
}
.showcase-card:hover {
  border-color: #BAE6FD;
  box-shadow: 0 8px 24px -2px rgba(2, 132, 199, 0.09);
  transform: translateY(-2px);
}
.card-visual-thumb-wrap {
  position: relative;
  width: 100%;
  height: 135px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #E2E8F0;
  background: #F8FAFC;
  margin-bottom: 3px;
}
.card-visual-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.showcase-card:hover .card-visual-thumb {
  transform: scale(1.04);
}
.card-visual-floating-tag {
  position: absolute;
  bottom: 7px;
  left: 7px;
  background: rgba(15, 23, 42, 0.82);
  color: #FFFFFF;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.showcase-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card-icon-box {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
}
.icon-cyan { background: #E0F2FE; color: #0284C7; border-color: #BAE6FD; }
.icon-emerald { background: #DCFCE7; color: #16A34A; border-color: #BBF7D0; }
.icon-amber { background: #FEF3C7; color: #D97706; border-color: #FDE68A; }
.icon-purple { background: #F3E8FF; color: #9333EA; border-color: #E9D5FF; }

.card-header-badge-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
}
.card-pill {
  font-size: 10.5px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
}
.pill-cyan { background: #EFF6FF; color: #0284C7; border: 1px solid #DBEAFE; }
.pill-emerald { background: #ECFDF5; color: #059669; border: 1px solid #A7F3D0; }
.pill-amber { background: #FFFBEB; color: #D97706; border: 1px solid #FDE68A; }
.pill-purple { background: #FAF5FF; color: #7E22CE; border: 1px solid #E9D5FF; }

.card-metric {
  font-size: 10.5px;
  font-weight: 700;
  color: #64748B;
  background: #F8FAFC;
  padding: 3px 7px;
  border-radius: 6px;
  border: 1px solid #E2E8F0;
}
.card-heading {
  font-size: 15px;
  font-weight: 800;
  color: #0F172A;
  margin: 0;
  line-height: 1.35;
}
.card-summary {
  font-size: 12.5px;
  line-height: 1.5;
  color: #475569;
  margin: 0;
  flex: 1;
}
.card-feature-pills {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  padding-top: 2px;
}
.feature-tag {
  font-size: 10.5px;
  font-weight: 600;
  color: #334155;
  background: #F1F5F9;
  padding: 3px 8px;
  border-radius: 6px;
  border: 1px solid #E2E8F0;
}

/* Bottom Strip */
.showcase-footer-strip {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  padding: 13px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.03);
}
.strip-metrics-group {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.strip-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.strip-icon {
  font-size: 17px;
}
.strip-text {
  display: flex;
  flex-direction: column;
}
.strip-text strong {
  font-size: 11.5px;
  color: #0F172A;
  font-weight: 700;
}
.strip-text small {
  font-size: 10px;
  color: #64748B;
}
.strip-action-box {
  display: flex;
  align-items: center;
  gap: 10px;
}
.action-prompt {
  font-size: 11.5px;
  color: #64748B;
  font-weight: 600;
}
.btn-focus-search-form {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: linear-gradient(135deg, #0284C7 0%, #0369A1 100%);
  border: 1px solid #0284C7;
  border-radius: 9px;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(2, 132, 199, 0.25);
}
.btn-focus-search-form:hover {
  background: #0284C7;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.4);
  transform: translateY(-1px);
}
.btn-quick-empty-map {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: #F8FAFC;
  border: 1px solid #CBD5E1;
  border-radius: 9px;
  color: #334155;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-quick-empty-map:hover {
  background: #F1F5F9;
  color: #0F172A;
  border-color: #94A3B8;
}

@media (max-width: 1024px) {
  .showcase-hero-grid {
    grid-template-columns: 1fr;
  }
  .showcase-hero-right {
    max-width: 480px;
    margin: 0 auto;
  }
}
@media (max-width: 900px) {
  .showcase-features-grid {
    grid-template-columns: 1fr;
  }
  .showcase-footer-strip {
    flex-direction: column;
    align-items: flex-start;
  }
  .strip-action-box {
    width: 100%;
    justify-content: space-between;
  }
}
@media (max-width: 767px) {
  .gis-showcase-container {
    padding: 12px 10px 100px 10px !important;
    gap: 12px;
  }
  .showcase-hero-modern {
    padding: 14px 12px;
  }
  .showcase-title-modern {
    font-size: 18px;
  }
  .showcase-subtitle-modern {
    font-size: 12px;
  }
  .strip-metrics-group {
    gap: 10px;
  }
  .action-prompt {
    display: none;
  }
  .strip-action-box {
    flex-direction: column;
    width: 100%;
  }
  .btn-focus-search-form,
  .btn-quick-empty-map {
    width: 100%;
    justify-content: center;
  }
  .card-visual-thumb-wrap {
    height: 115px;
  }
}

body.gis-showcase-active .mobile-map-floating-sheet,
body.gis-showcase-active #mobile-map-sheet,
body.gis-showcase-active #mobileParcelSheet,
body.gis-showcase-active .mobile-map-search-bar {
  display: none !important;
}

/* ==========================================================================
   BİYOMETRİK GİRİŞ & BİLDİRİM İZİN SİSTEMİ STİLLERİ
   ========================================================================== */
.gate-biometric-wrap {
  width: 100%;
  box-sizing: border-box;
  animation: fadeInDown 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.gate-btn-biometric {
  width: 100%;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.16) 0%, rgba(0, 158, 227, 0.14) 100%);
  border: 1.5px solid #10B981;
  border-radius: 14px;
  padding: 8px 16px;
  color: #FFFFFF;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(16, 185, 129, 0.22);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
  text-align: left;
}

.gate-btn-biometric:hover {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.26) 0%, rgba(0, 158, 227, 0.22) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.35);
  border-color: #34D399;
}

.gate-btn-biometric:active {
  transform: translateY(0);
}

.biometric-icon-badge {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(16, 185, 129, 0.25);
  color: #10B981;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.biometric-text-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
  text-align: left;
  line-height: 1.25;
  overflow: hidden;
}

.biometric-main {
  font-size: 13.5px;
  font-weight: 800;
  color: #F8FAFC;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}

.biometric-sub {
  font-size: 11px;
  font-weight: 600;
  color: #94A3B8;
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}

.biometric-chevron {
  color: #10B981;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.gate-btn-biometric:hover .biometric-chevron {
  transform: translateX(3px);
}

/* Post Login Perms Modal Enhancements */
#emlakciPostLoginPermsModal .emlak-modal-card {
  animation: scaleInModal 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.45);
}

@keyframes scaleInModal {
  from {
    opacity: 0;
    transform: scale(0.92) translateY(12px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

