/* ==========================================================================
   HEM Gayrimenkul — Gece Laciverti & Buz / Çelik Mavisi Tasarım
   ========================================================================== */

:root {
  --primary-navy: #0f172a;        /* Derin Gece Laciverti */
  --primary-navy-light: #1e293b;  /* Açık Gece Laciverti */
  --accent-blue: #3b82f6;         /* Yumuşak Çelik Mavisi */
  --accent-ice: #93c5fd;          /* Açık Buz Mavisi */
  --bg-surface: #f8fafc;          /* İnci Beyazı Ferah Zemin */
  --text-main: #0f172a;
  --text-muted: #64748b;
  --border-light: #e2e8f0;

  /* --- Özel Derinlik ve Gölge Sistemi --- */
  --shadow-sm: 0 2px 4px rgba(15, 23, 42, 0.04), 0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow-card: 0 10px 25px -5px rgba(15, 23, 42, 0.07), 0 8px 10px -6px rgba(15, 23, 42, 0.04);
  --shadow-card-hover: 0 22px 35px -8px rgba(15, 23, 42, 0.16), 0 12px 16px -6px rgba(15, 23, 42, 0.08);
  --shadow-float: 0 14px 28px rgba(15, 23, 42, 0.18), 0 10px 10px rgba(15, 23, 42, 0.1);
  --shadow-button: 0 4px 14px rgba(15, 23, 42, 0.25);
  --shadow-badge: 0 4px 10px rgba(0, 0, 0, 0.15);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--bg-surface);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
}

/* ==========================================================================
   NAVBAR
   ========================================================================== */
.navbar {
  background: rgba(255, 255, 255, 0.94) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8) !important;
  box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.05); /* Yumuşak zemin gölgesi */
}

.brand-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background-color: var(--primary-navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.25); /* Logo rozetine derinlik */
}

.brand-icon i {
  color: #ffffff !important;
}

.contact-button {
  background-color: var(--primary-navy) !important;
  border-color: var(--primary-navy) !important;
  color: #ffffff !important;
  font-weight: 600;
  border-radius: 999px;
  box-shadow: var(--shadow-button);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-button:hover {
  background-color: var(--primary-navy-light) !important;
  border-color: var(--primary-navy-light) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.35); /* Tıklama hissi veren gölge */
}

/* ==========================================================================
   İLAN KARTLARI
   ========================================================================== */
.property-card {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: var(--shadow-card); /* Belirgin ve oturaklı kart gölgesi */
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
  overflow: hidden;
}

.property-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-card-hover) !important; /* Havalanma etkisi */
  border-color: #cbd5e1;
}

.property-image {
  border-radius: 17px 17px 0 0;
  overflow: hidden;
  height: 220px;
  background-color: #f1f5f9;
  position: relative;
}

.property-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.property-card:hover .property-image img {
  transform: scale(1.06);
}

.property-status {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: var(--shadow-badge); /* Fotoğraf üstündeki etiket gölgesi */
}

.property-status:not(.rent) {
  background-color: var(--accent-blue);
  color: #ffffff;
}

.property-status.rent {
  background-color: #d97706;
  color: #ffffff;
}

.property-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-navy);
}

.property-footer {
  border-top: 1px solid var(--border-light);
  padding-top: 12px;
}

.property-footer strong {
  color: var(--primary-navy);
  font-size: 1.15rem;
}

.property-footer .btn {
  border: 1px solid var(--border-light);
  color: var(--primary-navy);
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
}

.property-footer .btn:hover {
  background-color: var(--primary-navy);
  border-color: var(--primary-navy);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.2);
  transform: translateY(-1px);
}

/* ==========================================================================
   SABİT İLETİŞİM / WHATSAPP BUTONLARI
   ========================================================================== */
.floating-contact-buttons .btn {
  box-shadow: var(--shadow-float) !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.floating-contact-buttons .btn:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 18px 32px rgba(15, 23, 42, 0.28) !important;
}
/* ==========================================================================
   GOOEY NAV STİLLERİ (HEM Gayrimenkul Kırmızı & Lacivert Teması)
   ========================================================================== */
:root {
  --color-1: #dc2626; /* Tabela Kırmızısı */
  --color-2: #0f172a; /* Gece Laciverti */
  --color-3: #ef4444; /* Açık Kırmızı */
  --color-4: #ffffff; /* Beyaz */
}

.gooey-nav-container {
  position: relative;
  display: inline-flex;
  justify-content: center;
}

.gooey-nav-container nav {
  display: flex;
  position: relative;
  transform: translate3d(0, 0, 0.01px);
}

.gooey-nav-container nav ul {
  display: flex;
  gap: 0.5rem;
  list-style: none;
  padding: 4px;
  margin: 0;
  position: relative;
  z-index: 3;
}

.gooey-nav-container nav ul li {
  border-radius: 999px;
  position: relative;
  cursor: pointer;
  transition: color 0.3s ease;
}

.gooey-nav-container nav ul li a {
  display: inline-block;
  padding: 0.45rem 1rem;
  color: #334155;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: 999px;
}

.gooey-nav-container nav ul li.active a {
  color: #ffffff !important;
}

.gooey-nav-container .effect {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  opacity: 1;
  pointer-events: none;
  display: grid;
  place-items: center;
  z-index: 1;
  transition: left 0.4s cubic-bezier(0.25, 1, 0.5, 1), 
              top 0.4s cubic-bezier(0.25, 1, 0.5, 1), 
              width 0.4s cubic-bezier(0.25, 1, 0.5, 1), 
              height 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.gooey-nav-container .effect.filter {
  filter: blur(6px) contrast(80);
}

.gooey-nav-container .effect.filter::after {
  content: '';
  position: absolute;
  inset: 0;
  background: #dc2626; /* Seçili sekme zemin rengi */
  border-radius: 999px;
  transform: scale(1);
  transition: transform 0.3s ease;
}

.particle,
.point {
  display: block;
  opacity: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  transform-origin: center;
}

.particle {
  --time: 600ms;
  position: absolute;
  top: calc(50% - 9px);
  left: calc(50% - 9px);
  animation: gooeyParticle calc(var(--time)) ease 1;
}

.point {
  background: var(--color);
  opacity: 1;
  animation: gooeyPoint calc(var(--time)) ease 1;
}

@keyframes gooeyParticle {
  0% {
    transform: rotate(0deg) translate(var(--start-x), var(--start-y));
    opacity: 1;
  }
  70% {
    transform: rotate(calc(var(--rotate) * 0.5)) translate(calc(var(--end-x) * 1.2), calc(var(--end-y) * 1.2));
    opacity: 1;
  }
  100% {
    transform: rotate(var(--rotate)) translate(var(--end-x), var(--end-y));
    opacity: 0;
  }
}

@keyframes gooeyPoint {
  0% { transform: scale(0); opacity: 0; }
  30% { transform: scale(var(--scale)); opacity: 1; }
  85% { transform: scale(var(--scale)); opacity: 1; }
  100% { transform: scale(0); opacity: 0; }
}
/* Hero Alanı & GhostFibers Arka Planı */
.hero-wrapper {
  position: relative;
  min-height: 520px;
  background-color: #090e17;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

#ghost-fibers-canvas-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
}