/*
Theme Name: Emlak Pro
Theme URI: https://example.com/emlak-pro
Author: Claude
Author URI: https://claude.ai
Description: Modern ve şık konut satış & kiralama emlak teması. İlan listeleme, filtreleme, blog ve iletişim özellikleriyle tam donanımlı.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Tags: real-estate, property, listings, blog, responsive, custom-colors
Text Domain: emlak-pro
*/

/* =============================================
   CSS VARIABLES
   ============================================= */
:root {
  --navy: #0A1628;
  --navy-mid: #152238;
  --navy-light: #1E3A5F;
  --blue: #1B4F9B;
  --blue-bright: #2563EB;
  --accent: #F59E0B;
  --accent-light: #FCD34D;
  --white: #FFFFFF;
  --off-white: #F8FAFF;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-400: #94A3B8;
  --gray-600: #475569;
  --gray-800: #1E293B;
  --text: #0F172A;
  --text-muted: #64748B;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', 'Segoe UI', sans-serif;
  --font-mono: 'DM Mono', monospace;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  --shadow-sm: 0 1px 3px rgba(10,22,40,0.08), 0 1px 2px rgba(10,22,40,0.06);
  --shadow-md: 0 4px 16px rgba(10,22,40,0.10), 0 2px 6px rgba(10,22,40,0.08);
  --shadow-lg: 0 20px 48px rgba(10,22,40,0.14), 0 8px 20px rgba(10,22,40,0.10);
  --shadow-xl: 0 32px 80px rgba(10,22,40,0.18);

  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-top: 12px;
  max-width: 600px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.badge-accent {
  background: rgba(245, 158, 11, 0.12);
  color: var(--accent);
  border: 1px solid rgba(245, 158, 11, 0.25);
}

.badge-navy {
  background: var(--navy);
  color: var(--white);
}

.badge-sale { background: #EF4444; color: white; }
.badge-rent { background: var(--blue-bright); color: white; }
.badge-new { background: #10B981; color: white; }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--blue-bright);
  color: white;
  border-color: var(--blue-bright);
}
.btn-primary:hover {
  background: var(--blue);
  border-color: var(--blue);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(37,99,235,0.35);
}

.btn-accent {
  background: var(--accent);
  color: var(--navy);
  border-color: var(--accent);
}
.btn-accent:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(245,158,11,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--gray-200);
}
.btn-outline:hover {
  background: var(--gray-100);
  border-color: var(--navy);
}

.btn-white {
  background: white;
  color: var(--navy);
  border-color: white;
}
.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(255,255,255,0.25);
}

.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }


/* =============================================
   ÜST BAR (TOPBAR)
   ============================================= */
.topbar {
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 0;
  position: relative;
  z-index: 1001;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 38px;
  gap: 24px;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color var(--transition);
  white-space: nowrap;
}
.topbar-item:hover { color: rgba(255,255,255,0.9); }
.topbar-item svg { flex-shrink: 0; opacity: 0.7; }
.topbar-hours { cursor: default; }

.topbar-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.topbar-social {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.60);
  text-decoration: none;
  transition: all var(--transition);
}
.topbar-social:hover {
  background: rgba(255,255,255,0.18);
  color: white;
}

.topbar-cta {
  padding: 4px 14px;
  border-radius: 100px;
  background: var(--blue-bright);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  text-decoration: none;
  transition: background var(--transition);
  white-space: nowrap;
}
.topbar-cta:hover { background: var(--blue); color: white; }

/* =============================================
   HEADER & NAVIGATION
   ============================================= */
#site-header {
  position: relative;
  background: white;
  border-bottom: 2px solid var(--gray-100);
  z-index: 1000;
  height: var(--header-height, 80px);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

/* Sticky: header topbar+header birlikte yapışır */
#site-header.sticky {
  position: sticky;
  top: 0;
}

/* Scroll sonrası (sticky) */
#site-header.sticky.scrolled {
  box-shadow: 0 2px 20px rgba(10,22,40,0.10);
  border-bottom-color: transparent;
}

/* Topbar sticky için body padding — sticky header olan site */
body.has-sticky-header {
  /* Topbar yüksekliği (38px) + header yüksekliği otomatik handle edilir sticky ile */
}

#site-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height, 80px);
  gap: 24px;
}

/* ── Logo ── */
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 800;
  color: var(--navy);
  flex-shrink: 0;
  text-decoration: none;
  letter-spacing: -0.02em;
}
.site-logo:hover { opacity: 0.85; }

.logo-icon {
  width: 40px; height: 40px;
  background: var(--blue-bright);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1rem;
  flex-shrink: 0;
}
.logo-text { white-space: nowrap; }

/* ── Ana Menü ── */
.main-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}

.main-nav ul { display: flex; align-items: center; gap: 2px; list-style: none; margin: 0; padding: 0; }
.main-nav ul li { position: relative; }

.main-nav a,
.main-nav ul li a {
  display: block;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: var(--menu-font-size, 14px);
  font-weight: 600;
  color: var(--gray-600);
  text-decoration: none;
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.main-nav a:hover,
.main-nav ul li a:hover,
.main-nav ul li.current-menu-item > a,
.main-nav ul li.current_page_item > a {
  color: var(--navy);
  background: var(--gray-100);
}

/* Alt menü */
.main-nav ul li ul {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: white; border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg); min-width: 190px; padding: 6px;
  opacity: 0; pointer-events: none; transform: translateY(-6px);
  transition: all var(--transition); z-index: 200;
  border: 1px solid var(--gray-100);
}
.main-nav ul li:hover > ul { opacity: 1; pointer-events: auto; transform: translateY(0); }
.main-nav ul li ul li a { color: var(--gray-600) !important; text-transform: none; font-size: 0.88rem; }
.main-nav ul li ul li a:hover { color: var(--navy) !important; background: var(--gray-100) !important; }

/* ── Header Aksiyonlar ── */
.header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.header-cta { white-space: nowrap; }

/* ── Hamburger ── */
.hamburger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  cursor: pointer; padding: 6px; background: none; border: none;
  border-radius: var(--radius-sm); transition: background var(--transition);
}
.hamburger:hover { background: var(--gray-100); }
.hamburger span {
  width: 22px; height: 2px; background: var(--navy); border-radius: 2px; display: block; transition: all var(--transition);
}

/* ── Mobil Overlay & Nav ── */
.mobile-overlay {
  position: fixed; inset: 0; background: rgba(10,22,40,0.55);
  backdrop-filter: blur(3px); z-index: 998; opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.mobile-overlay.visible { opacity: 1; pointer-events: auto; }

.mobile-nav {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(320px,85vw);
  background: var(--navy); z-index: 999;
  display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform 0.35s cubic-bezier(0.4,0,0.2,1); overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); }

.mobile-nav-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mobile-logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: white; text-decoration: none; }
.mobile-nav-close {
  width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,0.1); border: none; color: white;
  display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background var(--transition);
}
.mobile-nav-close:hover { background: rgba(255,255,255,0.2); }
.mobile-nav-links { flex: 1; padding: 16px; display: flex; flex-direction: column; gap: 2px; }
.mobile-nav-links a, .mobile-nav-links ul { list-style: none; padding: 0; margin: 0; }
.mobile-nav-links a, .mobile-nav-links ul li a {
  display: block; padding: 13px 16px; color: rgba(255,255,255,0.72); font-size: 1rem; font-weight: 600;
  border-radius: var(--radius-md); text-decoration: none; transition: all var(--transition);
  text-transform: uppercase; letter-spacing: 0.04em; font-size: 0.92rem;
}
.mobile-nav-links a:hover, .mobile-nav-links ul li a:hover { color: white; background: rgba(255,255,255,0.1); }
.mobile-nav-footer { padding: 16px 20px; border-top: 1px solid rgba(255,255,255,0.1); }
.mobile-call-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px; background: var(--blue-bright); color: white; border-radius: var(--radius-md);
  font-weight: 700; text-decoration: none; font-size: 0.95rem; transition: background var(--transition);
}
.mobile-call-btn:hover { background: var(--blue); }

/* =============================================
   HERO — TAM EKRAN ŞEHİR FOTOĞRAFI
   ============================================= */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 80vh;
  background: var(--navy);
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1524231757912-21f4fe3a7200?w=1920&q=85');
  background-size: cover;
  background-position: center top;
  transform: scale(1.03);
  transition: transform 8s ease;
}
.hero:hover .hero-bg { transform: scale(1); }

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,22,40,0.55) 0%,
    rgba(10,22,40,0.45) 40%,
    rgba(10,22,40,0.70) 80%,
    rgba(10,22,40,0.88) 100%
  );
}

.hero-body {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
  padding: 72px 0 80px;
}

.hero-content {
  max-width: 680px;
}

.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  animation: fadeUp 0.6s ease both;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 800;
  color: white;
  line-height: 1.08;
  margin-bottom: 20px;
  animation: fadeUp 0.6s 0.1s ease both;
}
.hero h1 em { font-style: normal; color: var(--accent); }

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 500px;
  animation: fadeUp 0.6s 0.2s ease both;
}

.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px;
  animation: fadeUp 0.6s 0.3s ease both;
}
.btn-hero { padding: 16px 32px; font-size: 1rem; font-weight: 700; border-radius: var(--radius-md); }

/* Hero İstatistikler */
.hero-stats {
  display: flex; align-items: center; gap: 0;
  animation: fadeUp 0.6s 0.4s ease both;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hs-item { display: flex; flex-direction: column; gap: 3px; padding: 0 28px; }
.hs-item:first-child { padding-left: 0; }
.hs-n { font-family: var(--font-display); font-size: 1.85rem; font-weight: 700; color: white; line-height: 1; }
.hs-l { font-size: 0.75rem; color: rgba(255,255,255,0.50); text-transform: uppercase; letter-spacing: 0.08em; }
.hs-divider { width: 1px; height: 34px; background: rgba(255,255,255,0.15); }

/* ── Arama Dock ── */
.hero-search-dock {
  position: relative;
  z-index: 3;
  padding-bottom: 0;
  animation: fadeUp 0.6s 0.5s ease both;
}

.search-dock-box {
  background: white;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  padding: 0;
  box-shadow: 0 -8px 40px rgba(10,22,40,0.15);
  overflow: hidden;
}

.sdb-tabs {
  display: flex;
  border-bottom: 2px solid var(--gray-100);
}

.sdb-tab {
  flex: 1;
  padding: 14px 20px;
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: none;
  background: none;
  color: var(--gray-600);
  cursor: pointer;
  transition: all var(--transition);
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
}
.sdb-tab:hover { color: var(--navy); background: var(--gray-100); }
.sdb-tab.active {
  color: var(--navy);
  border-bottom-color: var(--blue-bright);
  background: white;
}

.sdb-fields {
  display: flex;
  align-items: stretch;
  padding: 0;
}

.sdb-field {
  flex: 1;
  padding: 14px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sdb-field label {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.sdb-field input, .sdb-field select {
  border: none; outline: none; background: transparent;
  font-family: var(--font-body); font-size: 0.95rem; font-weight: 600;
  color: var(--navy); appearance: none; cursor: pointer; padding: 0;
}
.sdb-field input::placeholder { color: var(--gray-400); font-weight: 400; }

.sdb-vsep { width: 1px; background: var(--gray-200); margin: 10px 0; flex-shrink: 0; }

.sdb-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 0 32px;
  background: var(--navy);
  color: white;
  border: none;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 0.03em;
}
.sdb-btn:hover { background: var(--blue-bright); }

/* =============================================
   SATILIK / KİRALIK EYLEM KARTLARI
   ============================================= */
.action-cards-section {
  padding: 40px 0;
  background: var(--off-white);
  border-top: 1px solid var(--gray-200);
}

.action-cards-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.action-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  min-height: 120px;
  display: flex;
  align-items: stretch;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.action-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.ac-bg {
  position: absolute; inset: 0;
  transition: opacity 0.3s ease;
  opacity: 0;
}
.action-card:hover .ac-bg { opacity: 1; }

.ac-sale { background: linear-gradient(135deg, var(--navy) 0%, #162d54 100%); }
.ac-sale .ac-bg { background: linear-gradient(135deg, #0f1e38 0%, var(--blue) 100%); }

.ac-rent { background: linear-gradient(135deg, var(--blue-bright) 0%, #1d4ed8 100%); }
.ac-rent .ac-bg { background: linear-gradient(135deg, #3b82f6 0%, var(--blue-bright) 100%); }

.ac-content {
  position: relative; z-index: 1;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 32px;
}

.ac-icon {
  font-size: 2.2rem;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.2));
}

.ac-text { flex: 1; }
.ac-title { font-family: var(--font-display); font-size: 1.7rem; font-weight: 700; color: white; line-height: 1; margin-bottom: 5px; }
.ac-desc { font-size: 0.88rem; color: rgba(255,255,255,0.68); }

.ac-meta { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.ac-count {
  background: rgba(255,255,255,0.18); color: rgba(255,255,255,0.90);
  padding: 4px 12px; border-radius: 100px; font-size: 0.8rem; font-weight: 700;
  backdrop-filter: blur(4px); white-space: nowrap;
}
.ac-arrow {
  font-size: 1.5rem; color: rgba(255,255,255,0.50);
  transition: all 0.3s ease;
}
.action-card:hover .ac-arrow { color: white; transform: translateX(4px); }

/* =============================================
   ÖZELLİKLER ŞERİDİ
   ============================================= */
.features-strip {
  background: var(--navy);
  padding: 24px 0;
}

.features-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 24px;
  flex: 1;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.feature-item:last-child { border-right: none; }

.feature-icon { font-size: 1.4rem; flex-shrink: 0; }
.feature-text-label { font-size: 0.78rem; font-weight: 700; color: rgba(255,255,255,0.9); text-transform: uppercase; letter-spacing: 0.06em; }
.feature-text-value { font-size: 0.72rem; color: rgba(255,255,255,0.45); margin-top: 2px; }

/* =============================================
   İLANLAR — 4 SÜTUN GRID
   ============================================= */
.listings-section {
  padding: 60px 0 80px;
  background: white;
}

.listings-top-bar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--gray-100);
}

.listings-heading h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}

.listings-heading p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-top: 6px;
}

.listings-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* 4 Sütun Grid */
.listings-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Property Card */
.property-card {
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  transition: all 0.3s ease;
  cursor: pointer;
}
.property-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gray-200);
}

.card-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--gray-100);
}
.card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.property-card:hover .card-image img { transform: scale(1.05); }

.card-badges {
  position: absolute; top: 10px; left: 10px;
  display: flex; gap: 6px;
}

.card-favorite {
  position: absolute; top: 10px; right: 10px;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,0.9);
  border: none; cursor: pointer; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
  backdrop-filter: blur(4px);
}
.card-favorite:hover, .card-favorite.active { background: white; }

.card-price-tag {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(10,22,40,0.80));
  padding: 20px 12px 10px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: white;
}

.card-body { padding: 14px; }

.card-title {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 7px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.card-location {
  display: flex; align-items: center; gap: 4px;
  font-size: 0.80rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.card-location svg { flex-shrink: 0; }

.card-stats {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.80rem; color: var(--gray-600);
  padding-top: 10px;
  border-top: 1px solid var(--gray-100);
}
.card-stat { display: flex; align-items: center; gap: 4px; white-space: nowrap; }
.card-stat-sep { color: var(--gray-400); font-size: 0.65rem; }

/* Eski grid de uyumlu */
.listings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.listings-footer {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.result-count {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 20px;
}

/* Filtre satırı */
.listing-filter-row {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px; margin-bottom: 32px;
}

.status-filter-bar {
  display: flex; align-items: center; gap: 4px;
  background: var(--gray-100); border-radius: var(--radius-sm);
  padding: 4px;
}
.status-filter-btn {
  padding: 8px 18px; border-radius: var(--radius-sm);
  font-size: 0.85rem; font-weight: 700; cursor: pointer; border: none;
  background: none; color: var(--gray-600); transition: all var(--transition);
  white-space: nowrap;
}
.status-filter-btn:hover { color: var(--navy); }
.status-filter-btn.active { background: white; color: var(--navy); box-shadow: var(--shadow-sm); }
.status-filter-btn.active-satilik { background: var(--navy) !important; color: white !important; }
.status-filter-btn.active-kiralik { background: var(--blue-bright) !important; color: white !important; }

.filter-select {
  padding: 10px 16px; border-radius: var(--radius-sm);
  border: 2px solid var(--gray-200); background: white; color: var(--navy);
  font-family: var(--font-body); font-size: 0.88rem; font-weight: 600; cursor: pointer;
  appearance: none; min-width: 130px;
}

/* =============================================
   CTA BANT
   ============================================= */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(37,99,235,.20) 0%, transparent 60%);
}
.cta-inner {
  position: relative;
  display: flex; align-items: center; justify-content: space-between;
  gap: 48px;
}
.cta-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: 100px;
  background: rgba(245,158,11,0.15); color: var(--accent);
  border: 1px solid rgba(245,158,11,0.25);
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 16px;
}
.cta-text h2 { font-family: var(--font-display); font-size: clamp(1.8rem,3vw,2.6rem); font-weight: 800; color: white; line-height: 1.2; margin-bottom: 12px; }
.cta-text p { color: rgba(255,255,255,0.65); max-width: 500px; }
.cta-actions { display: flex; gap: 16px; flex-shrink: 0; flex-wrap: wrap; }

/* =============================================
   BLOG
   ============================================= */
.blog-section { padding: 80px 0; background: var(--off-white); }
.section-top-row {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; margin-bottom: 40px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  background: white; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--gray-100); transition: all 0.3s ease;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.blog-card-image {
  position: relative; aspect-ratio: 16/9; overflow: hidden; background: var(--gray-100);
}
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.blog-card:hover .blog-card-image img { transform: scale(1.05); }
.blog-cat-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--navy); color: white;
  padding: 4px 10px; border-radius: 100px;
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
}

.blog-card-body { padding: 20px; }
.blog-card-title { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--navy); line-height: 1.4; margin-bottom: 10px; }
.blog-card-excerpt { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 14px; }
.blog-read-more { font-size: 0.85rem; font-weight: 700; color: var(--blue-bright); text-decoration: none; transition: color var(--transition); }
.blog-read-more:hover { color: var(--navy); }

/* =============================================
   İLETİŞİM
   ============================================= */
.contact-section { padding: 80px 0; background: white; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.contact-items { margin-top: 28px; display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; }
.contact-item-icon { width: 40px; height: 40px; background: var(--gray-100); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.contact-item-label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 2px; }
.contact-item-value { font-size: 0.95rem; font-weight: 600; color: var(--navy); }

.contact-form-card {
  background: white; border-radius: var(--radius-xl);
  padding: 40px 36px; border: 2px solid var(--gray-100);
  box-shadow: var(--shadow-md);
}
.contact-form-card h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.contact-form-card > p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 24px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; border: 2px solid var(--gray-200); border-radius: var(--radius-md);
  font-family: var(--font-body); font-size: 0.95rem; color: var(--navy); background: var(--gray-100);
  transition: border-color var(--transition), box-shadow var(--transition); outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--blue-bright); box-shadow: 0 0 0 4px rgba(37,99,235,.1); background: white;
}
.form-group textarea { resize: vertical; min-height: 110px; line-height: 1.6; }

/* =============================================
   FOOTER
   ============================================= */
.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 60px 0 40px;
}

.footer-brand .site-logo { font-size: 1.5rem; color: white; margin-bottom: 16px; display: inline-flex; }
.footer-brand p { color: rgba(255,255,255,0.50); font-size: 0.88rem; line-height: 1.7; margin-bottom: 20px; max-width: 260px; }
.footer-socials { display: flex; gap: 8px; }
.social-btn {
  width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.55); display: flex; align-items: center; justify-content: center;
  font-size: 0.88rem; font-weight: 700; text-decoration: none; transition: all var(--transition);
}
.social-btn:hover { background: var(--blue-bright); color: white; }

.footer-col h4 { font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.4); margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.88rem; color: rgba(255,255,255,0.58); text-decoration: none; transition: color var(--transition); }
.footer-col ul li a:hover { color: white; }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-bottom p { font-size: 0.80rem; color: rgba(255,255,255,0.35); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 0.80rem; color: rgba(255,255,255,0.35); text-decoration: none; transition: color var(--transition); }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.65); }

#site-footer { background: var(--navy); }

/* =============================================
   ARŞİV SAYFASI
   ============================================= */
.archive-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 100px 0 60px; position: relative; overflow: hidden;
}
.archive-header::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(37,99,235,.18) 0%, transparent 60%);
}
.archive-header .container { position: relative; }
.archive-header h1 {
  font-family: var(--font-display); font-size: clamp(2rem,4vw,3rem);
  font-weight: 800; color: white; margin: 12px 0 8px;
}
.archive-header p { color: rgba(255,255,255,.65); font-size: 1rem; }

/* =============================================
   ANIMASYONLAR
   ============================================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.animate-on-scroll { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

/* =============================================
   YARDIMCI
   ============================================= */
.badge { display: inline-flex; align-items: center; gap: 6px; padding: 5px 10px; border-radius: 100px; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.badge-sale { background: #EF4444; color: white; }
.badge-rent { background: var(--blue-bright); color: white; }
.badge-navy { background: var(--navy); color: white; }
.badge-accent { background: rgba(245,158,11,0.12); color: var(--accent); border: 1px solid rgba(245,158,11,0.25); }
.badge-new  { background: #10B981; color: white; }

.section-title { font-family: var(--font-display); font-size: clamp(1.8rem,3.5vw,2.8rem); font-weight: 700; color: var(--navy); line-height: 1.2; }
.section-subtitle { color: var(--text-muted); font-size: 1rem; margin-top: 10px; max-width: 560px; }

/* Single property page */
.listing-grid { display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: start; }

.text-center { text-align: center; }
.hidden { display: none !important; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.82rem; color: var(--text-muted); text-align: center; margin-top: 8px; }
.alignnone { margin: 0; }
.aligncenter { display: block; margin: 0 auto; }
.alignright { float: right; margin: 0 0 16px 16px; }
.alignleft  { float: left;  margin: 0 16px 16px 0; }

/* =============================================
   FLOATING BUTONLAR
   ============================================= */
.ep-fw { position: fixed; bottom: 28px; right: 24px; z-index: 9000; display: flex; flex-direction: column; gap: 12px; align-items: flex-end; }
.ep-fb { width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; cursor: pointer; border: none; box-shadow: 0 4px 20px rgba(0,0,0,.22); transition: transform .2s, box-shadow .2s; text-decoration: none; color: white; position: relative; }
.ep-fb:hover { transform: scale(1.1); }
.ep-wa  { background: #25D366; }
.ep-tel { background: #2563EB; }
.ep-tip { position: absolute; right: 62px; background: var(--navy); color: white; padding: 6px 12px; border-radius: 6px; font-size: 12px; font-weight: 700; white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity .2s; }
.ep-fb:hover .ep-tip { opacity: 1; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1200px) {
  .listings-grid-4 { grid-template-columns: repeat(3, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 1024px) {
  .listings-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .listing-grid { grid-template-columns: 1fr; }
  .sdb-fields { flex-wrap: wrap; }
  .sdb-field { min-width: 160px; }
  .sdb-vsep { display: none; }
}

@media (max-width: 768px) {
  /* Topbar */
  .topbar-email, .topbar-hours { display: none; }

  /* Header */
  .main-nav { display: none !important; }
  .hamburger { display: flex !important; }
  .header-cta { display: none; }

  /* Hero */
  .hero-body { padding: 48px 0 56px; }
  .hero-stats { flex-wrap: wrap; gap: 0; }
  .hs-item { min-width: 33%; padding: 0 16px; }
  .hs-item:first-child { padding-left: 0; }
  .hs-divider { display: none; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  /* Arama */
  .sdb-tabs { overflow-x: auto; }
  .sdb-fields { flex-direction: column; }
  .sdb-field { padding: 12px 16px; }
  .sdb-btn { width: 100%; padding: 16px; }

  /* Action Cards */
  .action-cards-row { grid-template-columns: 1fr; gap: 12px; }
  .ac-content { padding: 22px 24px; }

  /* Features */
  .features-strip-inner { flex-wrap: wrap; gap: 12px; justify-content: center; }
  .feature-item { min-width: calc(50% - 6px); border-right: none; padding: 10px; }

  /* Listings */
  .listings-grid-4, .listings-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .listings-top-bar { flex-direction: column; align-items: flex-start; }
  .listings-controls { width: 100%; flex-direction: column; align-items: stretch; }
  .status-filter-bar { width: 100%; }
  .status-filter-btn { flex: 1; justify-content: center; }
  .filter-select { width: 100%; }

  /* CTA */
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }

  /* Blog */
  .blog-grid { grid-template-columns: 1fr; }
  .section-top-row { flex-direction: column; }

  /* Footer */
  .footer-main { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-card { padding: 28px 20px; }
}

@media (max-width: 480px) {
  .listings-grid-4, .listings-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.4rem; }
  .hs-item { min-width: 50%; }
  .topbar-inner { height: 34px; }
  .container { padding: 0 16px; }
}



/* ═══════════════════════════════════════════════════
   ANA SAYFA — NASA-İLHAMLI TASARIM
   Koyu, güçlü, sade, etkileyici
═══════════════════════════════════════════════════ */

/* ── HERO ── */
.ns-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: #030811;
}

.ns-hero-bg {
  position: absolute; inset: 0;
  background-image: var(--hero-img, url('https://images.unsplash.com/photo-1524231757912-21f4fe3a7200?w=1920&q=85'));
  background-size: cover;
  background-position: center 35%;
  opacity: 0.22;
  transform: scale(1.06);
  transition: transform 16s ease;
}
.ns-hero:hover .ns-hero-bg { transform: scale(1); }

.ns-hero-vignette {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 110%, #030811 35%, transparent 100%),
    radial-gradient(ellipse 60% 80% at 0% 50%,   rgba(3,8,17,0.95) 0%, transparent 70%);
}

/* Dekoratif yatay çizgiler — NASA vibe */
.ns-hero-grid-lines {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(transparent 98%, rgba(255,255,255,0.03) 100%);
  background-size: 100% 48px;
}

.ns-hero-body {
  position: relative; z-index: 2;
  padding: 0 24px;
  max-width: 900px;
}

/* Breadcrumb / eyebrow */
.ns-breadcrumb {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: rgba(255,255,255,0.35);
  margin-bottom: 40px;
  animation: nsFadeUp 0.8s ease both;
}
.ns-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent,#F59E0B);
  box-shadow: 0 0 8px rgba(245,158,11,0.8);
  animation: nsPulse 2.5s infinite;
}
@keyframes nsPulse {
  0%,100% { opacity: 1; }
  50%      { opacity: 0.3; }
}

/* Başlık */
.ns-hero-h1 {
  font-family: var(--font-display,'Playfair Display',Georgia,serif);
  font-size: clamp(3rem, 6.5vw, 6rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  animation: nsFadeUp 0.8s 0.1s ease both;
}
.ns-hero-h1 em {
  font-style: normal;
  color: var(--accent,#F59E0B);
}

.ns-hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: rgba(255,255,255,0.50);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 48px;
  animation: nsFadeUp 0.8s 0.2s ease both;
}

/* Arama */
.ns-search {
  margin-bottom: 56px;
  animation: nsFadeUp 0.8s 0.3s ease both;
}

.ns-search-tabs {
  display: flex; gap: 0;
  margin-bottom: 0;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  width: fit-content;
}
.ns-tab {
  padding: 8px 20px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  border: none; background: transparent; color: rgba(255,255,255,0.35);
  cursor: pointer; transition: color 0.2s;
  border-bottom: 2px solid transparent; margin-bottom: -1px;
}
.ns-tab:hover  { color: rgba(255,255,255,0.70); }
.ns-tab.active { color: var(--accent,#F59E0B); border-bottom-color: var(--accent,#F59E0B); }

.ns-search-bar {
  display: flex; align-items: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-top: none;
  border-radius: 0 0 10px 10px;
  padding: 6px 6px 6px 20px;
  max-width: 580px;
  backdrop-filter: blur(12px);
}
.ns-search-bar svg { color: rgba(255,255,255,0.30); flex-shrink: 0; }
.ns-search-bar input {
  flex: 1; border: none; background: transparent; outline: none;
  font-family: var(--font-body); font-size: 0.96rem;
  color: white; padding: 10px 14px;
}
.ns-search-bar input::placeholder { color: rgba(255,255,255,0.28); }
.ns-search-go {
  padding: 12px 24px; border-radius: 7px;
  background: var(--accent,#F59E0B); color: #030811;
  border: none; font-family: var(--font-body);
  font-size: 0.70rem; font-weight: 800; letter-spacing: 0.14em;
  cursor: pointer; transition: background 0.2s; white-space: nowrap;
  text-transform: uppercase;
}
.ns-search-go:hover { background: #fbbf24; }

/* İstatistikler */
.ns-stats {
  display: flex; align-items: center; gap: 0;
  animation: nsFadeUp 0.8s 0.4s ease both;
}
.ns-stat { display: flex; flex-direction: column; gap: 4px; padding: 0 32px; }
.ns-stat:first-child { padding-left: 0; }
.ns-stat strong {
  font-family: var(--font-display); font-size: 2rem;
  font-weight: 700; color: white; line-height: 1;
}
.ns-stat span {
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,0.35);
}
.ns-stat-line { width: 1px; height: 36px; background: rgba(255,255,255,0.10); flex-shrink: 0; }

/* Scroll hint */
.ns-scroll-hint {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.25);
  font-size: 0.60rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  animation: nsFadeUp 1s 0.8s ease both;
  z-index: 2;
}
.ns-scroll-arrow {
  width: 1px; height: 40px;
  background: linear-gradient(rgba(255,255,255,0.25), transparent);
  animation: nsScrollLine 2s ease infinite;
}
@keyframes nsScrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  50.01%{ transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

@keyframes nsFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── PORTALS (Satılık / Kiralık) ── */
.ns-portals {
  background: #050d1a;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.ns-portals .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.ns-portal {
  position: relative;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 52px 48px;
  text-decoration: none;
  overflow: hidden;
  transition: background 0.35s ease;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.ns-portal:last-child { border-right: none; }
.ns-portal:hover { background: rgba(255,255,255,0.04); }

/* Hover'da köşeden ışık */
.ns-portal::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 200px; height: 200px;
  border-radius: 50%;
  opacity: 0; transition: opacity 0.4s;
  pointer-events: none;
}
.ns-portal-sale::before { background: radial-gradient(circle, rgba(37,99,235,0.15), transparent 70%); }
.ns-portal-rent::before { background: radial-gradient(circle, rgba(245,158,11,0.12), transparent 70%); }
.ns-portal:hover::before { opacity: 1; }

.ns-portal-label {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.22em;
  color: rgba(255,255,255,0.20); text-transform: uppercase;
  margin-bottom: 28px;
}

.ns-portal-center { flex: 1; }
.ns-portal-icon {
  font-size: 2.4rem; margin-bottom: 16px;
  color: rgba(255,255,255,0.55);
  transition: color 0.3s;
}
.ns-portal:hover .ns-portal-icon { color: var(--accent,#F59E0B); }

.ns-portal h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700; color: white; margin-bottom: 10px;
}
.ns-portal p {
  font-size: 0.88rem; color: rgba(255,255,255,0.38); line-height: 1.6;
}

.ns-portal-arrow {
  align-self: flex-end;
  font-size: 1.8rem; color: rgba(255,255,255,0.18);
  transition: all 0.3s; margin-top: 32px;
}
.ns-portal:hover .ns-portal-arrow {
  color: var(--accent,#F59E0B);
  transform: translate(4px,-4px);
}

/* ── İLANLAR ── */
.ns-listings {
  background: #f8f9fb;
  padding: 72px 0 88px;
}

.ns-listings-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; margin-bottom: 36px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e2e8f0;
}

.ns-section-eyebrow {
  display: block;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--blue-bright,#2563EB);
  margin-bottom: 8px;
}
.ns-listings-title-group h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700; color: #0A1628; line-height: 1.15;
}

.ns-listings-controls { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.ns-filter-group {
  display: flex; background: #edf0f5; border-radius: 8px; padding: 3px; gap: 2px;
}
.ns-filter-btn {
  padding: 8px 18px; border-radius: 6px;
  font-size: 0.80rem; font-weight: 700; cursor: pointer;
  border: none; background: transparent; color: #64748B;
  transition: all 0.18s; white-space: nowrap;
}
.ns-filter-btn:hover { color: #0A1628; }
.ns-filter-btn.active { background: #0A1628; color: white; }
.ns-filter-btn[data-status="satilik"].active { background: #0A1628; }
.ns-filter-btn[data-status="kiralik"].active { background: #2563EB; }

.ns-sort {
  padding: 9px 14px; border: 1.5px solid #e2e8f0;
  border-radius: 8px; background: white; color: #0A1628;
  font-family: var(--font-body); font-size: 0.82rem; font-weight: 600;
  cursor: pointer; appearance: none; outline: none; min-width: 110px;
}

.ns-result-count { font-size: 0.82rem; color: #94A3B8; margin-bottom: 24px; }

/* İlan Grid — 4 sütun */
.ns-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

/* See All */
.ns-see-all { margin-top: 52px; display: flex; justify-content: center; }
.ns-see-all-btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 40px; border-radius: 8px;
  background: #0A1628; color: white;
  font-size: 0.88rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; text-decoration: none;
  transition: all 0.2s;
}
.ns-see-all-btn span { font-size: 1.1rem; transition: transform 0.2s; }
.ns-see-all-btn:hover { background: #2563EB; }
.ns-see-all-btn:hover span { transform: translateX(4px); }

/* ── Property Card — temiz ── */
.property-card {
  background: white; border-radius: 12px; overflow: hidden;
  border: 1px solid #edf2f7; position: relative;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.property-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 44px rgba(10,22,40,0.10);
  border-color: #e2e8f0;
}

.card-link-wrap { display: block; text-decoration: none; color: inherit; }

.card-image {
  position: relative; aspect-ratio: 4/3;
  overflow: hidden; background: #f1f5f9;
}
.card-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.property-card:hover .card-image img { transform: scale(1.07); }

.card-badges { position: absolute; top: 10px; left: 10px; }

.card-favorite {
  position: absolute; top: 10px; right: 10px;
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(255,255,255,0.90);
  border: none; cursor: pointer; font-size: 0.95rem;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s; z-index: 2;
}
.card-favorite.active { color: #EF4444; }

.card-price-tag {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(5,13,26,0.80));
  padding: 18px 12px 10px;
  font-family: var(--font-display); font-size: 0.98rem; font-weight: 700; color: white;
}

.card-body { padding: 14px; }
.card-title {
  font-size: 0.88rem; font-weight: 700; color: #0A1628;
  line-height: 1.35; margin-bottom: 7px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.card-location {
  display: flex; align-items: center; gap: 4px;
  font-size: 0.75rem; color: #94A3B8; margin-bottom: 10px;
}
.card-stats {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.76rem; color: #64748B;
  padding-top: 10px; border-top: 1px solid #f1f5f9;
}
.card-stat-sep { color: #CBD5E1; font-size: 0.55rem; }

/* Badges */
.badge {
  display: inline-flex; align-items: center;
  padding: 4px 10px; border-radius: 100px;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
}
.badge-sale { background: #EF4444; color: white; }
.badge-rent { background: #2563EB; color: white; }
.badge-new  { background: #10B981; color: white; }
.badge-navy { background: #0A1628; color: white; }

/* Animate */
.animate-on-scroll { opacity: 0; transform: translateY(16px); transition: opacity 0.5s ease, transform 0.5s ease; }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

/* JS hook — hidden status filter (legacy) */
.status-filter-btn { display: none; }
.hp-filter-tab     { display: none; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .ns-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .ns-portals .container { grid-template-columns: 1fr; }
  .ns-portal { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); padding: 36px 32px; }
  .ns-portal:last-child { border-bottom: none; }
  .ns-grid { grid-template-columns: repeat(2, 1fr); }
  .ns-listings-head { flex-direction: column; align-items: flex-start; }
  .ns-listings-controls { width: 100%; }
}
@media (max-width: 640px) {
  .ns-hero-h1 { font-size: 2.6rem; }
  .ns-hero-body { max-width: 100%; }
  .ns-stats { gap: 0; }
  .ns-stat { padding: 0 16px; }
  .ns-stat strong { font-size: 1.5rem; }
  .ns-stat:nth-child(4), .ns-stat:nth-child(5) { display: none; }
  .ns-stat-line:last-of-type { display: none; }
  .ns-search-bar { max-width: 100%; }
  .ns-search-go { padding: 12px 16px; }
  .ns-portal { padding: 28px 24px; }
  .ns-filter-group { width: 100%; }
  .ns-filter-btn { flex: 1; text-align: center; }
  .ns-sort { width: 100%; }
}
@media (max-width: 480px) {
  .ns-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════
   ANA SAYFA  —  NASA-İLHAMLI TASARIM  v7
   Tüm renkler :root'tan CSS değişkeni olarak gelir.
═══════════════════════════════════════════════════ */

/* ── HERO ──────────────────────────────────────── */
.ns-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: var(--hero-bg, #030811);
}

/* Fotoğraf katmanı */
.ns-hero-photo {
  position: absolute; inset: 0;
  background-image: var(--hero-img,
    url('https://images.unsplash.com/photo-1524231757912-21f4fe3a7200?w=1920&q=85'));
  background-size: cover;
  background-position: center 35%;
  opacity: .22;
  transform: scale(1.05);
  transition: transform 16s ease;
  will-change: transform;
}
.ns-hero:hover .ns-hero-photo { transform: scale(1); }

/* Karartma gradyanı — alta doğru yoğunlaşır */
.ns-hero-shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(3,8,17,.28)   0%,
      rgba(3,8,17,.18)  35%,
      rgba(3,8,17,.72)  72%,
      rgba(3,8,17,.97) 100%);
}

/* Dekoratif yatay çizgiler */
.ns-hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(transparent 98%, rgba(255,255,255,.025) 100%);
  background-size: 100% 52px;
}

/* İç düzen */
.ns-hero-inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 80px;
}

/* ── Eyebrow / breadcrumb */
.ns-eyebrow {
  display: flex; align-items: center; gap: 14px;
  font-size: .68rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--accent, #C9A84C);
  margin-bottom: 22px;
  opacity: 0; animation: nsFadeUp .8s .1s ease forwards;
}
.ns-eyebrow-line {
  width: 28px; height: 1px;
  background: var(--accent, #C9A84C);
  flex-shrink: 0;
}

/* ── Büyük başlık */
.ns-h1 {
  font-family: var(--font-display, 'Libre Baskerville', Georgia, serif);
  font-size: clamp(2.8rem, 5.5vw, 5.4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.06;
  letter-spacing: -.025em;
  margin-bottom: 22px;
  opacity: 0; animation: nsFadeUp .9s .22s ease forwards;
}
.ns-h1 em {
  font-style: italic;
  color: var(--accent-lt, #E2C97E);
}

/* ── Alt metin */
.ns-sub {
  font-size: 1rem; font-weight: 300; line-height: 1.75;
  color: rgba(255,255,255,.52);
  max-width: 480px;
  opacity: 0; animation: nsFadeUp .9s .34s ease forwards;
}

/* ── Arama kartı (sağ kolon) */
.ns-hero-right {
  opacity: 0; animation: nsSlideIn .9s .3s ease forwards;
}
@keyframes nsSlideIn {
  from { opacity:0; transform:translateX(24px); }
  to   { opacity:1; transform:translateX(0); }
}

.ns-search-card {
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 24px 64px rgba(0,0,0,.35);
}

.ns-search-tabs {
  display: flex; gap: 2px;
  background: rgba(0,0,0,.28);
  border-radius: 8px; padding: 4px;
  margin-bottom: 18px;
}
.ns-stab {
  flex: 1; padding: 9px 6px;
  font-family: var(--font-body); font-size: .72rem;
  font-weight: 600; letter-spacing: .07em; text-transform: uppercase;
  border: none; background: transparent;
  color: rgba(255,255,255,.38);
  border-radius: 6px; cursor: pointer; transition: all .2s;
}
.ns-stab:hover { color: rgba(255,255,255,.72); }
.ns-stab.active {
  background: var(--accent, #C9A84C);
  color: var(--ink, #0A0F1A);
}

.ns-sfield {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 10px;
  padding: 13px 16px;
  margin-bottom: 12px;
  transition: border-color .2s;
}
.ns-sfield:focus-within { border-color: var(--accent, #C9A84C); }
.ns-sfield svg { color: rgba(255,255,255,.32); flex-shrink: 0; }
.ns-sfield input,
.ns-sfield select {
  flex: 1; border: none; background: transparent; outline: none;
  font-family: var(--font-body); font-size: .92rem;
  color: #fff; appearance: none; cursor: pointer;
}
.ns-sfield input::placeholder { color: rgba(255,255,255,.28); }
.ns-sfield select option { background: var(--hero-bg, #030811); color: #fff; }

.ns-search-go {
  width: 100%; padding: 15px;
  background: var(--accent, #C9A84C);
  color: var(--ink, #0A0F1A);
  border: none; border-radius: 10px;
  font-family: var(--font-body); font-size: .72rem;
  font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
  cursor: pointer; transition: opacity .2s;
  margin-top: 4px;
}
.ns-search-go:hover { opacity: .85; }

/* ── İstatistik şeridi */
.ns-stats-bar {
  position: relative; z-index: 2;
  border-top: 1px solid rgba(255,255,255,.07);
  background: rgba(3,8,17,.55);
  backdrop-filter: blur(12px);
}
.ns-stats-inner {
  display: flex; align-items: center;
  padding-top: 20px; padding-bottom: 20px;
  gap: 0;
}
.ns-stat {
  display: flex; flex-direction: column; gap: 3px;
  padding: 0 36px 0 0;
  opacity: 0; animation: nsFadeUp .8s .55s ease forwards;
}
.ns-stat strong {
  font-family: var(--font-display); font-size: 1.85rem;
  font-weight: 700; color: #fff; line-height: 1;
}
.ns-stat span {
  font-size: .63rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,.32);
}
.ns-stat-sep {
  width: 1px; height: 36px;
  background: rgba(255,255,255,.10);
  flex-shrink: 0; margin-right: 36px;
}
.ns-stat-spacer { flex: 1; }
.ns-stat-link {
  font-size: .70rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: rgba(255,255,255,.30);
  text-decoration: none; white-space: nowrap;
  transition: color .2s;
  opacity: 0; animation: nsFadeUp .8s .65s ease forwards;
}
.ns-stat-link:hover { color: var(--accent, #C9A84C); }

/* ── Scroll hint */
.ns-scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,.22);
  font-size: .58rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  z-index: 2; pointer-events: none;
  opacity: 0; animation: nsFadeUp .8s .9s ease forwards;
}
.ns-scroll-bar {
  width: 1px; height: 44px;
  background: linear-gradient(rgba(255,255,255,.25), transparent);
  animation: nsScrollPulse 2.4s ease infinite;
}
@keyframes nsScrollPulse {
  0%   { transform: scaleY(0); transform-origin: top; opacity:1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity:1; }
  50.1%{ transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity:0; }
}

@keyframes nsFadeUp {
  from { opacity:0; transform:translateY(20px); }
  to   { opacity:1; transform:translateY(0); }
}

/* ── PORTALS ────────────────────────────────────── */
.ns-portals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(255,255,255,.05);
}

.ns-portal {
  position: relative;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 56px 52px;
  text-decoration: none; overflow: hidden;
  border-right: 1px solid rgba(255,255,255,.05);
  transition: background .35s ease;
}
.ns-portal:last-child { border-right: none; }
.ns-portal:hover { background: rgba(255,255,255,.035); }

/* Hover köşe ışığı */
.ns-portal::after {
  content: ''; position: absolute;
  top: -80px; right: -80px;
  width: 300px; height: 300px; border-radius: 50%;
  pointer-events: none; opacity: 0; transition: opacity .5s;
}
.ns-portal-sale::after { background: radial-gradient(circle, rgba(37,99,235,.14), transparent 65%); }
.ns-portal-rent::after { background: radial-gradient(circle, var(--accent, rgba(201,168,76,.12)), transparent 65%); }
.ns-portal:hover::after { opacity: 1; }

.ns-portal-num {
  font-size: .62rem; font-weight: 600; letter-spacing: .22em;
  text-transform: uppercase; color: rgba(255,255,255,.18);
  margin-bottom: 0;
}
.ns-portal-body { flex: 1; padding: 28px 0 20px; }
.ns-portal-icon {
  font-size: 2.4rem; margin-bottom: 16px;
  color: rgba(255,255,255,.45);
  transition: color .3s;
}
.ns-portal:hover .ns-portal-icon { color: var(--accent, #C9A84C); }
.ns-portal-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 700; color: #fff; line-height: 1.1;
  margin-bottom: 10px;
}
.ns-portal-desc {
  font-size: .88rem; font-weight: 300;
  color: rgba(255,255,255,.38); line-height: 1.65;
}
.ns-portal-count { color: var(--accent, #C9A84C); font-style: normal; }

.ns-portal-cta {
  display: flex; align-items: center; gap: 12px;
  font-size: .70rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: rgba(255,255,255,.22);
  transition: color .3s;
}
.ns-portal-arrow {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem; transition: all .3s;
}
.ns-portal:hover .ns-portal-cta { color: #fff; }
.ns-portal:hover .ns-portal-arrow {
  border-color: var(--accent, #C9A84C);
  background: var(--accent, #C9A84C);
  color: var(--ink, #0A0F1A);
  transform: rotate(45deg);
}

/* ── İLANLAR ────────────────────────────────────── */
.ns-listings {
  padding: 72px 0 96px;
}

.ns-listings-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; padding-bottom: 24px;
  border-bottom: 1px solid #e2e8f0;
  margin-bottom: 36px;
}

.ns-eyebrow-sm {
  display: block; font-size: .65rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--blue, #2563EB); margin-bottom: 7px;
}
.ns-listings-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700; color: var(--ink, #0A0F1A); line-height: 1.2;
}

.ns-listings-controls { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.ns-filter-group {
  display: flex;
  background: #eaecf1; border-radius: 8px; padding: 3px; gap: 2px;
}
.ns-fbtn {
  padding: 8px 18px; border-radius: 6px;
  font-family: var(--font-body); font-size: .78rem;
  font-weight: 600; cursor: pointer;
  border: none; background: transparent; color: #64748B;
  transition: all .18s; white-space: nowrap;
}
.ns-fbtn:hover { color: var(--ink, #0A0F1A); }
.ns-fbtn.active                     { background: var(--ink, #0A0F1A);  color: #fff; }
.ns-fbtn[data-status="kiralik"].active { background: var(--blue, #2563EB); color: #fff; }

.ns-sort-sel {
  padding: 9px 14px; border: 1.5px solid #dde1eb;
  border-radius: 8px; background: #fff;
  color: var(--ink, #0A0F1A);
  font-family: var(--font-body); font-size: .80rem; font-weight: 600;
  cursor: pointer; appearance: none; outline: none; min-width: 110px;
}

.ns-result-count {
  font-size: .82rem; color: #94A3B8; margin-bottom: 24px;
}

/* 4 sütun ilan grid */
.ns-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

/* Tüm İlanlar butonu */
.ns-see-all { margin-top: 52px; display: flex; justify-content: center; }
.ns-see-all-btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 40px; border-radius: 8px;
  border: 1.5px solid var(--ink, #0A0F1A);
  color: var(--ink, #0A0F1A); background: transparent;
  font-family: var(--font-body);
  font-size: .78rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  text-decoration: none; transition: all .22s;
}
.ns-see-all-btn span { font-size: 1rem; transition: transform .2s; }
.ns-see-all-btn:hover { background: var(--ink, #0A0F1A); color: #fff; }
.ns-see-all-btn:hover span { transform: translateX(5px); }

/* ── PROPERTY CARD ─────────────────────────────── */
.property-card {
  background: #fff; border-radius: var(--radius-lg, 14px);
  border: 1px solid #edf0f7; position: relative; overflow: hidden;
  transition: transform .28s ease, box-shadow .28s ease, border-color .2s;
}
.property-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg, 0 20px 52px rgba(10,15,26,.10));
  border-color: #d8dee9;
}

.card-link-wrap { display: block; text-decoration: none; color: inherit; }

.card-image {
  position: relative; aspect-ratio: 4/3;
  overflow: hidden; background: #f1f5f9;
}
.card-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .55s ease;
  display: block;
}
.property-card:hover .card-image img { transform: scale(1.07); }

.card-badges {
  position: absolute; top: 10px; left: 10px; display: flex; gap: 6px;
}
.badge {
  display: inline-flex; align-items: center;
  padding: 4px 10px; border-radius: 100px;
  font-size: .68rem; font-weight: 700;
  letter-spacing: .05em; text-transform: uppercase;
}
.badge-sale { background: #EF4444; color: #fff; }
.badge-rent { background: var(--blue, #2563EB); color: #fff; }
.badge-new  { background: #10B981; color: #fff; }
.badge-navy { background: var(--ink, #0A0F1A); color: #fff; }

.card-favorite {
  position: absolute; top: 10px; right: 10px;
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(255,255,255,.90); border: none; cursor: pointer;
  font-size: .95rem; display: flex; align-items: center; justify-content: center;
  transition: all .2s; z-index: 2;
}
.card-favorite.active { color: #EF4444; }

.card-price-tag {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(5,10,20,.80));
  padding: 20px 14px 10px;
  font-family: var(--font-display); font-size: .98rem; font-weight: 700; color: #fff;
}

.card-body { padding: 14px 14px 16px; }
.card-title {
  font-size: .88rem; font-weight: 700; color: var(--ink, #0A0F1A);
  line-height: 1.35; margin-bottom: 7px;
  display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
}
.card-location {
  display: flex; align-items: center; gap: 4px;
  font-size: .75rem; color: #94A3B8; margin-bottom: 10px;
}
.card-stats {
  display: flex; align-items: center; gap: 8px;
  font-size: .75rem; color: #64748B;
  padding-top: 10px; border-top: 1px solid #f1f5f9;
}
.card-stat-sep { color: #CBD5E1; font-size: .55rem; }

/* Scroll animasyonu */
.animate-on-scroll {
  opacity: 0; transform: translateY(16px);
  transition: opacity .5s ease, transform .5s ease;
}
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

/* Eski JS hook'ları ile uyumluluk */
.status-filter-btn { display: none; }
.hp-filter-tab     { display: none; }

/* ── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 1100px) {
  .ns-hero-inner { grid-template-columns: 1fr 340px; gap: 40px; }
  .ns-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .ns-hero-inner { grid-template-columns: 1fr; }
  .ns-hero-right { display: none; } /* küçük ekranda arama kartı hero'dan kaldırılır */
  .ns-portals { grid-template-columns: 1fr; }
  .ns-portal { border-right: none; border-bottom: 1px solid rgba(255,255,255,.05); padding: 40px 32px; }
  .ns-portal:last-child { border-bottom: none; }
  .ns-grid { grid-template-columns: repeat(2, 1fr); }
  .ns-listings-head { flex-direction: column; align-items: flex-start; }
  .ns-listings-controls { width: 100%; }
}

@media (max-width: 640px) {
  .ns-hero-inner { padding-top: 60px; padding-bottom: 48px; }
  .ns-h1 { font-size: 2.6rem; }
  .ns-stat { padding-right: 20px; }
  .ns-stat strong { font-size: 1.55rem; }
  .ns-stat:last-of-type { display: none; }
  .ns-stat-sep:last-of-type { display: none; }
  .ns-filter-group { width: 100%; }
  .ns-fbtn { flex: 1; text-align: center; }
  .ns-sort-sel { width: 100%; }
}

@media (max-width: 480px) {
  .ns-grid { grid-template-columns: 1fr; }
  .ns-h1 { font-size: 2.1rem; }
  .ns-portal { padding: 32px 24px; }
}

/* ═══════════════════════════════════════════════════
   SINGLE PROPERTY SAYFASI
═══════════════════════════════════════════════════ */
.sp-wrap { background: #f7f8fa; min-height: 60vh; }

.sp-breadcrumb {
  padding: 16px 24px;
  font-size: .78rem; color: #94A3B8;
  display: flex; align-items: center; gap: 8px;
}
.sp-breadcrumb a { color: #64748B; text-decoration: none; }
.sp-breadcrumb a:hover { color: var(--ink, #0A0F1A); }
.sp-breadcrumb span { color: #CBD5E1; }

/* Hero fotoğraf */
.sp-hero {
  position: relative; width: 100%;
  max-height: 520px; overflow: hidden;
  background: #e2e8f0;
}
.sp-hero-img {
  width: 100%; max-height: 520px;
  object-fit: cover; display: block;
}
.sp-hero-placeholder {
  width: 100%; height: 340px;
  background: linear-gradient(135deg, #1a2744 0%, #2563EB 100%);
}
.sp-hero-overlay {
  position: absolute; bottom: 20px; left: 28px;
  display: flex; align-items: center; gap: 12px;
}
.sp-hero-price {
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 700;
  color: white;
  text-shadow: 0 2px 8px rgba(0,0,0,.5);
}

/* Body layout */
.sp-body {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
  padding-top: 32px;
  padding-bottom: 64px;
  align-items: start;
}

/* Main */
.sp-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700; color: var(--ink, #0A0F1A);
  line-height: 1.2; margin-bottom: 18px;
}

.sp-quick-stats {
  display: flex; gap: 20px; flex-wrap: wrap;
  padding: 16px 20px;
  background: white; border-radius: 10px;
  border: 1px solid #e2e8f0;
  margin-bottom: 28px;
}
.sp-qs {
  display: flex; align-items: center; gap: 8px;
  font-size: .9rem; font-weight: 600; color: #334155;
}

.sp-desc, .sp-features {
  background: white; border-radius: 12px;
  border: 1px solid #e2e8f0;
  padding: 24px 28px; margin-bottom: 20px;
}
.sp-desc h2, .sp-features h2 {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 700;
  color: var(--ink, #0A0F1A);
  margin-bottom: 14px; padding-bottom: 12px;
  border-bottom: 1px solid #f1f5f9;
}
.sp-desc p { font-size: .95rem; color: #475569; line-height: 1.75; }

.sp-features-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0;
}
.sp-feature-item {
  display: flex; justify-content: space-between;
  padding: 11px 0;
  border-bottom: 1px solid #f1f5f9;
  font-size: .88rem;
}
.sp-feature-item:nth-child(odd) { padding-right: 20px; }
.sp-feature-label { color: #94A3B8; }
.sp-feature-val   { font-weight: 600; color: #1E293B; }

/* Sidebar */
.sp-price-card {
  background: var(--ink, #0A0F1A);
  border-radius: 14px;
  padding: 24px;
  margin-bottom: 14px;
  display: flex; flex-direction: column; gap: 12px;
}
.sp-price-big {
  font-family: var(--font-display);
  font-size: 1.9rem; font-weight: 700; color: white;
}

.sp-contact-btns {
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 14px;
}
.sp-btn {
  display: block; width: 100%; padding: 14px;
  border-radius: 10px; text-align: center;
  font-size: .82rem; font-weight: 700;
  letter-spacing: .06em; text-decoration: none;
  text-transform: uppercase; transition: all .2s;
}
.sp-btn-call {
  background: var(--accent, #C9A84C);
  color: var(--ink, #0A0F1A);
}
.sp-btn-call:hover { opacity: .85; }
.sp-btn-wa {
  background: #25D366; color: white;
}
.sp-btn-wa:hover { background: #1dba57; }
.sp-btn-outline {
  border: 1.5px solid #e2e8f0;
  background: white; color: #475569;
}
.sp-btn-outline:hover { border-color: var(--ink,#0A0F1A); color: var(--ink,#0A0F1A); }

.sp-share {
  background: white; border-radius: 10px;
  border: 1px solid #e2e8f0; padding: 16px 18px;
}
.sp-share-label {
  font-size: .72rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: #94A3B8; margin-bottom: 10px;
}
.sp-share-btns { display: flex; gap: 8px; flex-wrap: wrap; }
.sp-share-btns a {
  padding: 7px 14px; border-radius: 6px;
  border: 1px solid #e2e8f0;
  font-size: .75rem; font-weight: 600; color: #475569;
  text-decoration: none; transition: all .18s;
}
.sp-share-btns a:hover { border-color: var(--blue,#2563EB); color: var(--blue,#2563EB); }

/* Benzer ilanlar */
.sp-related { padding: 56px 0 72px; background: #f7f8fa; }
.sp-related-title {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 700;
  color: var(--ink,#0A0F1A); margin-bottom: 28px;
}
.sp-related-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 20px;
}

@media (max-width: 860px) {
  .sp-body { grid-template-columns: 1fr; }
  .sp-sidebar { order: -1; }
  .sp-related-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 520px) {
  .sp-features-grid { grid-template-columns: 1fr; }
  .sp-related-grid { grid-template-columns: 1fr; }
  .sp-hero { max-height: 260px; }
  .sp-hero-img { max-height: 260px; }
}

/* ── İLAN KARTI ALT AKSIYONLAR ────────────────── */
.card-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-top: 1px solid #f1f5f9;
}
.card-phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  justify-content: center;
  padding: 8px 12px;
  background: var(--ink, #0A0F1A);
  color: white;
  border-radius: 7px;
  font-size: .75rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: .04em;
  transition: background .2s;
}
.card-phone-btn:hover { background: var(--blue, #2563EB); color: white; }
.card-favorite {
  width: 36px; height: 36px;
  border-radius: 8px;
  border: 1.5px solid #e2e8f0;
  background: white;
  cursor: pointer;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s; flex-shrink: 0;
}
.card-favorite:hover, .card-favorite.active { border-color: #EF4444; color: #EF4444; }
