/* ESTATE Gayrimenkul — Style Sheet */

:root {
  --bg: #080D18;
  --bg-2: #0D1525;
  --surface: #111D35;
  --surface-2: #162040;
  --gold: #C9A84C;
  --gold-2: #E8C96A;
  --gold-dim: rgba(201, 168, 76, 0.1);
  --gold-border: rgba(201, 168, 76, 0.25);
  --text: #F0ECE4;
  --text-2: #C8C4BC;
  --text-muted: #7A7F98;
  --border: rgba(255, 255, 255, 0.07);
  --radius: 8px;
  --radius-lg: 16px;
  --transition: 0.3s ease;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  --container: 1200px;
  --header-h: 76px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.2;
  font-weight: 600;
}
em { font-style: italic; color: var(--gold); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.text-center { text-align: center; }
.section { padding: 96px 0; }

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--text);
}
.section-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

/* Buttons */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: #080D18;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.03em;
  transition: var(--transition);
  border: none;
  white-space: nowrap;
}
.btn-gold:hover { background: var(--gold-2); transform: translateY(-1px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.88rem;
  border: 1px solid var(--gold-border);
  color: var(--gold);
  transition: var(--transition);
}
.btn-outline:hover { background: var(--gold-dim); border-color: var(--gold); }

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.88rem;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--text);
  transition: var(--transition);
}
.btn-outline-light:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.05); }

/* ── ANNOUNCEMENT BAR ── */
.announcement-bar {
  background: var(--gold);
  color: #080D18;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 200;
  overflow: hidden;
}
.ann-content { flex: 1; text-align: center; }
.ann-item { display: none; }
.ann-item:first-child { display: block; }
.ann-close {
  background: none;
  border: none;
  color: #080D18;
  font-size: 20px;
  line-height: 1;
  padding: 0 4px;
  opacity: 0.6;
  transition: opacity 0.2s;
  flex-shrink: 0;
}
.ann-close:hover { opacity: 1; }

/* ── HEADER ── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  transition: background 0.4s, box-shadow 0.4s;
}
.header.scrolled {
  background: rgba(8, 13, 24, 0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: var(--header-h);
}
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  flex-shrink: 0;
}
.logo-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.14em;
}
.logo-sub {
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 2px;
}
.nav-desktop {
  display: flex;
  gap: 32px;
  margin-left: auto;
}
.nav-link {
  font-size: 0.87rem;
  font-weight: 500;
  color: var(--text-2);
  transition: color 0.2s;
  letter-spacing: 0.02em;
}
.nav-link:hover, .nav-link.active { color: var(--gold); }

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  margin-left: auto;
  padding: 4px;
}

/* ── MOBILE MENU ── */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(320px, 85vw);
  height: 100vh;
  background: var(--surface);
  z-index: 300;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: right 0.35s ease;
  border-left: 1px solid var(--border);
}
.mobile-menu.open { right: 0; }
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--text);
  font-size: 28px;
  align-self: flex-end;
  margin-bottom: 20px;
  line-height: 1;
}
.mobile-nav-link {
  display: block;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-2);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-nav-link:hover, .mobile-nav-link.active { color: var(--gold); }
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 290;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}
.mobile-menu-overlay.active { opacity: 1; pointer-events: auto; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201,168,76,0.07) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(22,32,64,0.9) 0%, transparent 50%),
    linear-gradient(160deg, #0D1525 0%, #080D18 50%, #0A1020 100%);
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.6;
}
.hero .container { position: relative; z-index: 1; width: 100%; }
.hero-content {
  max-width: 720px;
  padding: 100px 0 80px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.hero-title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: var(--text);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 44px;
  line-height: 1.75;
}

/* Search Bar */
.search-bar {
  display: flex;
  align-items: stretch;
  background: rgba(17, 29, 53, 0.9);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  backdrop-filter: blur(20px);
  max-width: 700px;
}
.search-fields { display: flex; flex: 1; align-items: stretch; }
.search-field {
  flex: 1;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.search-field label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.search-field select {
  background: none;
  border: none;
  color: var(--text);
  font-size: 0.88rem;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
}
.search-field select option { background: var(--surface); }
.search-divider { width: 1px; background: var(--border); margin: 10px 0; flex-shrink: 0; }
.search-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: #080D18;
  padding: 0 28px;
  font-weight: 700;
  font-size: 0.88rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.search-btn:hover { background: var(--gold-2); }

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: pulse-line 2s ease-in-out infinite;
}
@keyframes pulse-line { 0%, 100% { opacity: 0.3; } 50% { opacity: 1; } }

/* ── PROPERTY CARDS ── */
.featured-section { background: var(--bg); }
.properties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.property-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.property-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--gold-border);
}
.property-img {
  height: 220px;
  position: relative;
  display: flex;
  align-items: flex-start;
  padding: 16px;
  justify-content: space-between;
}
.img-1 { background: linear-gradient(160deg, #1a2a50 0%, #0d1a35 65%, #05090f 100%); }
.img-2 { background: linear-gradient(160deg, #0d2540 0%, #0a1a30 65%, #05090f 100%); }
.img-3 { background: linear-gradient(160deg, #251a40 0%, #1a1228 65%, #05090f 100%); }
.img-4 { background: linear-gradient(160deg, #1a3020 0%, #0f2018 65%, #05090f 100%); }
.img-5 { background: linear-gradient(160deg, #2a1a10 0%, #1a1008 65%, #05090f 100%); }
.img-6 { background: linear-gradient(160deg, #101a2a 0%, #080d18 65%, #030508 100%); }
.img-7 { background: linear-gradient(160deg, #20102a 0%, #150a1c 65%, #05090f 100%); }
.img-8 { background: linear-gradient(160deg, #1a2520 0%, #101818 65%, #05090f 100%); }
.img-9 { background: linear-gradient(160deg, #2a2010 0%, #1a1508 65%, #05090f 100%); }
/* Building silhouette */
.property-img::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 120'%3E%3Crect x='10' y='50' width='50' height='70' fill='rgba(255,255,255,0.04)'/%3E%3Crect x='20' y='25' width='30' height='95' fill='rgba(255,255,255,0.06)'/%3E%3Crect x='75' y='60' width='70' height='60' fill='rgba(255,255,255,0.03)'/%3E%3Crect x='95' y='30' width='30' height='90' fill='rgba(255,255,255,0.05)'/%3E%3Crect x='160' y='10' width='55' height='110' fill='rgba(255,255,255,0.07)'/%3E%3Crect x='175' y='35' width='25' height='8' fill='rgba(201,168,76,0.15)'/%3E%3Crect x='230' y='50' width='65' height='70' fill='rgba(255,255,255,0.04)'/%3E%3Crect x='248' y='20' width='28' height='100' fill='rgba(255,255,255,0.06)'/%3E%3Crect x='310' y='40' width='55' height='80' fill='rgba(255,255,255,0.03)'/%3E%3Crect x='360' y='55' width='35' height='65' fill='rgba(255,255,255,0.04)'/%3E%3C/svg%3E") no-repeat bottom center;
  background-size: 100% auto;
  pointer-events: none;
}
.property-tag {
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}
.tag-satilik { background: var(--gold); color: #080D18; }
.tag-kiralik { background: rgba(26, 188, 156, 0.9); color: white; }
.property-badge {
  background: rgba(201,168,76,0.12);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  position: relative;
  z-index: 1;
}
.property-body { padding: 24px; }
.property-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 8px;
  line-height: 1;
}
.property-price small {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
}
.property-title {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.property-location {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.property-features {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.property-features span {
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--text-2);
  font-size: 0.73rem;
  padding: 4px 10px;
  border-radius: 4px;
}
.property-link {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--gold);
  transition: letter-spacing 0.2s;
}
.property-link:hover { letter-spacing: 0.04em; }

/* ── STATS ── */
.stats-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 60px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-item { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.stat-number span { font-size: 1.4rem; color: var(--text-muted); }
.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── SERVICES ── */
.services-section { background: var(--bg-2); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: border-color 0.3s, transform 0.3s;
}
.service-card:hover { border-color: var(--gold-border); transform: translateY(-4px); }
.service-icon { font-size: 2rem; margin-bottom: 16px; }
.service-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}
.service-card p { font-size: 0.87rem; color: var(--text-muted); line-height: 1.7; }

/* ── WHY US ── */
.why-section { background: var(--bg); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-img-block { position: relative; height: 480px; }
.why-img-main {
  position: absolute;
  top: 0; left: 0; right: 60px; bottom: 60px;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, #162040 0%, #0d1525 100%);
  border: 1px solid var(--border);
  overflow: hidden;
}
.why-img-main::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 70%, rgba(201,168,76,0.12) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 500 400'%3E%3Crect x='30' y='100' width='100' height='300' fill='rgba(255,255,255,0.03)'/%3E%3Crect x='50' y='50' width='60' height='350' fill='rgba(255,255,255,0.05)'/%3E%3Crect x='160' y='140' width='120' height='260' fill='rgba(255,255,255,0.04)'/%3E%3Crect x='200' y='60' width='50' height='340' fill='rgba(255,255,255,0.06)'/%3E%3Crect x='310' y='20' width='90' height='380' fill='rgba(255,255,255,0.07)'/%3E%3Crect x='330' y='70' width='20' height='12' fill='rgba(201,168,76,0.2)'/%3E%3Crect x='415' y='80' width='75' height='320' fill='rgba(255,255,255,0.04)'/%3E%3C/svg%3E") no-repeat bottom center / cover;
}
.why-img-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 190px; height: 190px;
  background: var(--gold);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 16px;
}
.accent-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 600;
  color: #080D18;
  line-height: 1;
}
.accent-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(8,13,24,0.65);
  margin-top: 6px;
  text-align: center;
  line-height: 1.4;
}
.why-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 12px 0 16px;
}
.why-content > p {
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.75;
  font-size: 0.95rem;
}
.why-list { display: flex; flex-direction: column; gap: 24px; margin-bottom: 40px; }
.why-list li { display: flex; gap: 16px; align-items: flex-start; }
.why-check {
  flex-shrink: 0;
  width: 28px; height: 28px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem; font-weight: 700;
  margin-top: 2px;
}
.why-list strong { display: block; margin-bottom: 4px; font-size: 0.95rem; color: var(--text); }
.why-list p { font-size: 0.87rem; color: var(--text-muted); line-height: 1.65; }

/* ── TESTIMONIALS ── */
.testimonials-section { background: var(--bg-2); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: border-color 0.3s;
}
.testimonial-card:hover { border-color: var(--gold-border); }
.t-stars { color: var(--gold); font-size: 0.88rem; margin-bottom: 16px; letter-spacing: 2px; }
.t-text {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}
.t-author { display: flex; align-items: center; gap: 14px; }
.t-avatar {
  width: 44px; height: 44px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700; color: var(--gold);
  flex-shrink: 0;
}
.t-author strong { display: block; font-family: 'Inter', sans-serif; font-size: 0.9rem; color: var(--text); }
.t-author span { font-size: 0.75rem; color: var(--text-muted); }

/* ── CTA ── */
.cta-section {
  background: linear-gradient(135deg, var(--surface-2) 0%, var(--bg-2) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 96px 0;
}
.cta-inner { text-align: center; max-width: 600px; margin: 0 auto; }
.cta-inner h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 16px; }
.cta-inner p { color: var(--text-muted); margin-bottom: 40px; font-size: 1.05rem; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
.footer {
  background: #050810;
  border-top: 1px solid var(--border);
  padding: 72px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}
.footer-brand .logo-main { font-size: 1.5rem; }
.footer-brand p {
  font-size: 0.87rem;
  color: var(--text-muted);
  margin: 14px 0 24px;
  max-width: 260px;
  line-height: 1.7;
}
.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li { font-size: 0.87rem; color: var(--text-muted); }
.footer-col ul a { font-size: 0.87rem; color: var(--text-muted); transition: color 0.2s; }
.footer-col ul a:hover { color: var(--gold); }
.social-links { display: flex; gap: 10px; flex-wrap: wrap; }
.social-links a {
  font-size: 0.75rem;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 4px;
  transition: color 0.2s, border-color 0.2s;
}
.social-links a:hover { color: var(--gold); border-color: var(--gold-border); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { font-size: 0.8rem; color: var(--text-muted); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 0.8rem; color: var(--text-muted); transition: color 0.2s; }
.footer-legal a:hover { color: var(--gold); }

/* ── WHATSAPP FAB ── */
.whatsapp-fab {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  z-index: 500;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s, transform 0.4s, background 0.2s;
}
.whatsapp-fab.visible { opacity: 1; transform: translateY(0); }
.whatsapp-fab:hover { background: #128C7E; }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: 104px 0 64px;
  background:
    radial-gradient(ellipse at 80% 40%, rgba(201,168,76,0.06) 0%, transparent 55%),
    linear-gradient(160deg, #0D1525 0%, #080D18 100%);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .eyebrow {
  display: inline-block;
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
}
.page-hero h1 { font-size: clamp(2.4rem, 5vw, 4rem); color: var(--text); margin-bottom: 14px; }
.page-hero p { font-size: 1rem; color: var(--text-muted); max-width: 480px; line-height: 1.7; }

/* ── İLANLAR PAGE ── */
.listings-section { padding: 72px 0; }
.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 48px; align-items: center; }
.filter-btn {
  padding: 9px 22px;
  border-radius: 50px;
  font-size: 0.82rem; font-weight: 600;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-muted);
  transition: all 0.2s;
  cursor: pointer;
}
.filter-btn:hover { border-color: var(--gold-border); color: var(--gold); }
.filter-btn.active { background: var(--gold); color: #080D18; border-color: var(--gold); }
.listings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

/* ── HAKKIMIZDA PAGE ── */
.about-mission { padding: 80px 0; background: var(--bg-2); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-text h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 20px; }
.about-text p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.8; margin-bottom: 16px; }
.about-visual {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  height: 360px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.about-visual::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 70%, rgba(201,168,76,0.12) 0%, transparent 50%),
    linear-gradient(135deg, #162040 0%, #0d1525 100%);
}
.about-visual-inner { position: relative; z-index: 1; text-align: center; }
.big-year {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 8rem;
  font-weight: 600;
  color: rgba(201,168,76,0.12);
  line-height: 1;
}
.year-label {
  display: block;
  font-size: 0.75rem; font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.25em; text-transform: uppercase;
  margin-top: -8px;
}

.team-section { padding: 80px 0; background: var(--bg); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.team-card:hover { border-color: var(--gold-border); transform: translateY(-4px); }
.team-img {
  height: 180px;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
  background: linear-gradient(135deg, var(--surface-2), var(--bg-2));
  position: relative;
}
.team-img::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(transparent, var(--surface));
}
.team-info { padding: 20px; }
.team-info h4 { font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.team-info .team-title { font-size: 0.8rem; color: var(--gold); display: block; }
.team-info p { font-size: 0.82rem; color: var(--text-muted); margin-top: 8px; line-height: 1.6; }

.values-section { padding: 80px 0; background: var(--bg-2); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: border-color 0.3s;
}
.value-card:hover { border-color: var(--gold-border); }
.value-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem; font-weight: 600;
  color: rgba(201,168,76,0.2);
  line-height: 1; margin-bottom: 14px;
}
.value-card h3 { font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.value-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.75; }

/* ── İLETİŞİM PAGE ── */
.contact-section { padding: 80px 0; background: var(--bg); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.contact-form-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.contact-form-wrap h3 { font-size: 1.6rem; margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--text);
  font-size: 0.92rem;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold-border); }
.form-group select option { background: var(--surface); }
.form-group textarea { resize: vertical; }
.form-error { display: none; color: #ef4444; font-size: 0.82rem; margin-bottom: 12px; }
.form-success {
  display: none;
  background: rgba(201,168,76,0.08);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  padding: 16px; border-radius: var(--radius);
  font-size: 0.9rem; text-align: center;
  margin-top: 16px;
}
.contact-info-wrap h3 { font-size: 1.6rem; margin-bottom: 28px; }
.contact-info-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.contact-info-item:last-of-type { border-bottom: none; }
.contact-info-icon {
  font-size: 1.1rem; flex-shrink: 0;
  width: 44px; height: 44px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
}
.contact-info-item h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 4px;
}
.contact-info-item p,
.contact-info-item a { font-size: 0.92rem; color: var(--text-2); transition: color 0.2s; }
.contact-info-item a:hover { color: var(--gold); }
.map-block {
  margin-top: 28px;
  height: 260px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  gap: 8px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .properties-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 48px; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { gap: 40px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: 40px; }
  .contact-grid { gap: 40px; }
}

@media (max-width: 768px) {
  .nav-desktop { display: none; }
  .mobile-menu-btn { display: flex; }
  .header-inner .btn-gold { display: none; }

  .hero-content { padding: 80px 0 60px; }
  .search-bar { flex-direction: column; }
  .search-fields { flex-direction: column; }
  .search-divider { width: 100%; height: 1px; margin: 0; }
  .search-btn { padding: 14px; justify-content: center; }

  .section { padding: 64px 0; }
  .properties-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .why-visual { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { display: none; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .listings-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero-title { font-size: clamp(2.4rem, 8vw, 3.2rem); }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; align-items: center; }
  .container { padding: 0 16px; }
}

/* ── INNER PAGES — CLASS ALIASES & EXTRAS ── */

/* Page hero */
.page-hero-eyebrow {
  display: inline-block;
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
}
.page-hero-title { font-size: clamp(2.4rem, 5vw, 4rem); margin-bottom: 14px; }
.page-hero-desc { font-size: 1rem; color: var(--text-muted); max-width: 480px; line-height: 1.7; }

/* Section headers (used on hakkimizda) */
.section-header { text-align: center; margin-bottom: 48px; }
.section-eyebrow {
  display: inline-block;
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
}
.section-title { font-size: clamp(1.8rem, 3vw, 2.6rem); }

/* Filter section wrapper */
.filter-section { padding: 48px 0 0; }

/* Property card — ilanlar page aliases */
.property-loc {
  display: flex; align-items: center; gap: 5px;
  font-size: 0.8rem; color: var(--text-muted); margin-bottom: 8px;
}
.property-loc svg { flex-shrink: 0; stroke: var(--gold); }
.property-specs {
  display: flex; gap: 8px; flex-wrap: wrap; margin: 10px 0 18px;
}
.property-specs span {
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--text-2);
  font-size: 0.73rem;
  padding: 4px 10px;
  border-radius: 4px;
}
.property-footer {
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 12px; flex-wrap: wrap;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.property-footer .property-price { margin-bottom: 0; }
.badge-satilik { background: var(--gold) !important; color: #080D18 !important; }
.badge-kiralik { background: rgba(26,188,156,0.9) !important; color: white !important; }
.property-badge-type {
  background: rgba(8,13,24,0.7) !important;
  border: 1px solid var(--border) !important;
  color: var(--text-2) !important;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.63rem; font-weight: 700;
  letter-spacing: 0.06em;
  position: relative; z-index: 1;
  align-self: flex-start;
}
.btn-outline-gold {
  display: inline-flex; align-items: center;
  padding: 7px 16px;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  color: var(--gold);
  font-size: 0.78rem; font-weight: 600;
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
}
.btn-outline-gold:hover { background: var(--gold); color: #080D18; }

/* About section (hakkimizda) */
.about-section { padding: 80px 0; background: var(--bg-2); }
.about-highlight {
  display: flex; gap: 32px; flex-wrap: wrap;
  margin-top: 32px; padding-top: 32px;
  border-top: 1px solid var(--border);
}
.about-highlight-item { display: flex; flex-direction: column; gap: 4px; }
.about-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem; font-weight: 600;
  color: var(--gold); line-height: 1;
}
.about-label {
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-muted);
}
.about-year-block {
  position: absolute; inset: 0;
  z-index: 1;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
}
.about-year {
  font-family: 'Cormorant Garamond', serif;
  font-size: 7rem; font-weight: 600;
  color: rgba(201,168,76,0.14); line-height: 1;
  display: block;
}
.about-year-label {
  display: block;
  font-size: 0.75rem; font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.25em; text-transform: uppercase;
  margin-top: -8px;
}
.about-visual-card {
  position: absolute; inset: 0;
  border-radius: inherit;
}

/* Team card — avatar style */
.team-avatar {
  height: 140px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem; font-weight: 600;
  color: var(--gold);
  background: linear-gradient(135deg, var(--surface-2), var(--bg-2));
  letter-spacing: 0.04em;
}
.team-name {
  font-family: 'Inter', sans-serif;
  font-size: 1rem; font-weight: 700;
  color: var(--text); margin-bottom: 4px;
}
.team-bio {
  font-size: 0.82rem; color: var(--text-muted);
  margin-top: 8px; line-height: 1.6;
}

/* Stats banner */
.stats-banner {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 60px 0;
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem; font-weight: 600;
  color: var(--gold); line-height: 1;
}

/* Contact page extras */
.contact-form-title { font-size: 1.6rem; margin-bottom: 8px; }
.contact-form-sub { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 28px; }
.contact-info-title { font-size: 1.6rem; margin-bottom: 28px; }
.contact-info-label {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 4px;
}
.contact-info-value { font-size: 0.92rem; color: var(--text-2); line-height: 1.55; }
.contact-info-value a { color: var(--text-2); transition: color 0.2s; }
.contact-info-value a:hover { color: var(--gold); }
.form-label {
  display: block;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 8px;
}
.form-input {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--text);
  font-size: 0.92rem;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.2s;
  outline: none;
}
.form-input:focus { border-color: var(--gold-border); }
select.form-input option { background: var(--surface); }
.form-textarea { resize: vertical; }
.form-submit {
  width: 100%;
  padding: 14px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 8px;
  justify-content: center;
}
.form-success-msg {
  text-align: center;
  padding: 40px 24px;
}
.form-success-msg svg { margin: 0 auto 16px; }
.form-success-msg h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem; font-weight: 700;
  color: var(--text); margin-bottom: 8px;
}
.form-success-msg p { font-size: 0.9rem; color: var(--text-muted); }
.map-placeholder {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px;
  font-size: 0.88rem; color: var(--text-muted);
  width: 100%; height: 100%;
}

/* CTA section element aliases */
.cta-title { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 16px; }
.cta-desc { color: var(--text-muted); margin-bottom: 40px; font-size: 1.05rem; }

/* ════════════════════════════════════════════════════════════
   FAZ 1+2 PATCH (2026-06-12) — a11y skip-link + gerçek görsel pattern
   img: z-index 0 · overlay: z-index 1 · tag/badge: z-index 2
   ════════════════════════════════════════════════════════════ */

/* Skip link (G4) */
.skip-link {
  position: absolute;
  top: -56px;
  left: 12px;
  z-index: 9999;
  background: var(--gold);
  color: var(--bg);
  padding: 10px 16px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 12px; outline: 2px solid var(--gold-2); }

/* Property kartı gerçek görsel (G2) */
.property-img { overflow: hidden; }
.property-img .property-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
/* Görsel varsa SVG silüet placeholder'ı gizle */
.property-img:has(.property-photo)::before { display: none; }
/* Tag okunabilirliği için alttan koyu degrade overlay */
.property-img:has(.property-photo)::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,13,24,0.05) 35%, rgba(8,13,24,0.65) 100%);
  z-index: 1;
  pointer-events: none;
}
.property-img .property-tag,
.property-img .property-badge { z-index: 2; }

/* Hero arka plan görseli — koyu lüks degradenin altında hayalet doku */
.hero-bg .hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.30;
}

/* Why-us blok görseli — .why-img-main zaten absolute+overflow:hidden, position'ı EZME */
.why-img-main .why-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.why-img-main::after { z-index: 1; }
.why-img-accent { z-index: 2; }
