/* ===== PRESİGE EMLAK – STYLE.CSS ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --bg:        #08080a;
  --bg2:       #0e0e12;
  --bg3:       #141418;
  --gold:      #d4a853;
  --gold-dark: #b8892e;
  --gold-light:#e8c47a;
  --gold-glow: rgba(212,168,83,0.12);
  --text:      #ede8df;
  --muted:     #7a7268;
  --border:    rgba(212,168,83,0.12);
  --radius:    12px;
  --ff-serif:  'Playfair Display', Georgia, serif;
  --ff:        'Inter', sans-serif;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--ff);
  line-height: 1.7;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(8,8,10,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.logo {
  font-family: var(--ff-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.logo span { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--gold); }

.btn-nav {
  background: var(--gold) !important;
  color: #080808 !important;
  padding: 9px 22px !important;
  border-radius: 6px !important;
  font-weight: 600 !important;
  transition: background var(--transition) !important;
}
.btn-nav:hover { background: var(--gold-light) !important; }

.hamburger {
  display: none;
  background: none; border: none;
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--bg2);
  padding: 16px 24px;
  border-top: 1px solid var(--border);
}
.mobile-menu a {
  color: var(--muted);
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.mobile-menu.open { display: flex; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 50% 80% at 80% 40%, rgba(212,168,83,0.07) 0%, transparent 70%),
    linear-gradient(180deg, #08080a 0%, #0e0a08 100%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4a853' fill-opacity='0.025'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 100px;
  width: 100%;
  max-width: 900px;
}
.hero-label {
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero h1 {
  font-family: var(--ff-serif);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 18px;
  color: var(--text);
}
.hero h1 span { color: var(--gold); font-style: italic; }

.hero-sub {
  color: var(--muted);
  font-size: 1rem;
  max-width: 500px;
  margin-bottom: 44px;
}

/* ── SEARCH FORM ── */
.search-form {
  display: flex;
  align-items: flex-end;
  gap: 0;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px 20px;
  margin-bottom: 52px;
  flex-wrap: wrap;
  gap: 16px;
}
.search-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  min-width: 150px;
}
.search-field label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.search-field select {
  background: var(--bg3);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 10px 14px;
  border-radius: 7px;
  font-size: 0.875rem;
  font-family: var(--ff);
  outline: none;
  transition: border-color var(--transition);
  cursor: pointer;
}
.search-field select:focus {
  border-color: var(--gold);
}
.search-field select option { background: var(--bg3); }

.search-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: #080808;
  border: none;
  padding: 12px 24px;
  border-radius: 7px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--ff);
  transition: all var(--transition);
  white-space: nowrap;
  align-self: flex-end;
}
.search-btn:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 40px;
}
.hstat strong {
  display: block;
  font-family: var(--ff-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hstat span {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 4px;
  display: block;
}
.hstat-div {
  width: 1px;
  height: 44px;
  background: var(--border);
}

/* ── SECTION COMMONS ── */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-header h2 {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
}
.section-header h2 span { color: var(--gold); font-style: italic; }

/* ── LISTINGS ── */
.listings { padding: 100px 0; }

.listings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.listing-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}
.listing-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212,168,83,0.3);
  box-shadow: 0 20px 48px rgba(212,168,83,0.08);
}
.listing-img {
  position: relative;
  height: 220px;
}
.listing-badge {
  position: absolute;
  top: 14px; left: 14px;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 4px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.badge-sale { background: var(--gold); color: #080808; }
.badge-rent { background: rgba(20,184,166,0.9); color: #fff; }

.listing-fav {
  position: absolute;
  top: 14px; right: 14px;
  width: 34px; height: 34px;
  background: rgba(8,8,10,0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition);
  user-select: none;
}
.listing-fav:hover { background: rgba(8,8,10,0.9); }

.listing-body { padding: 20px 22px; }
.listing-location {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 6px;
}
.listing-body h3 {
  font-family: var(--ff-serif);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 14px;
  line-height: 1.3;
}
.listing-specs {
  display: flex;
  gap: 14px;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.listing-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.listing-price {
  font-family: var(--ff-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
}
.listing-price small {
  font-size: 0.75rem;
  font-family: var(--ff);
  font-weight: 400;
  color: var(--muted);
}
.detail-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 500;
  transition: all var(--transition);
}
.detail-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ── WHY US ── */
.why-us {
  padding: 100px 0;
  background: var(--bg2);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition);
}
.why-card:hover {
  border-color: rgba(212,168,83,0.25);
  transform: translateY(-4px);
}
.why-icon {
  font-size: 2.2rem;
  margin-bottom: 18px;
}
.why-card h3 {
  font-family: var(--ff-serif);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--gold);
}
.why-card p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ── ADVISORS ── */
.advisors { padding: 100px 0; }
.advisors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.advisor-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  align-items: center;
  gap: 24px;
  transition: all var(--transition);
}
.advisor-card:hover {
  border-color: rgba(212,168,83,0.3);
  transform: translateY(-4px);
}
.advisor-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid rgba(212,168,83,0.3);
}
.advisor-info { flex: 1; }
.advisor-info h3 {
  font-family: var(--ff-serif);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.advisor-title {
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 8px;
}
.advisor-phone {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 14px;
}
.wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(37,211,102,0.1);
  border: 1px solid rgba(37,211,102,0.25);
  color: #25d366;
  padding: 7px 14px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 600;
  transition: all var(--transition);
}
.wa-btn:hover {
  background: rgba(37,211,102,0.2);
}

/* ── FOOTER ── */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 72px 24px 48px;
}
.footer-brand p {
  color: var(--muted);
  font-size: 0.85rem;
  margin-top: 10px;
  margin-bottom: 20px;
}
.footer-address {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-address p {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links h4 {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--text); }

.footer-social-col h4 {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.social-row { display: flex; gap: 10px; }
.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 700;
  transition: all var(--transition);
}
.social-icon:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-bottom {
  text-align: center;
  padding: 24px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.78rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 1024px) {
  .listings-grid { grid-template-columns: repeat(2, 1fr); }
  .advisors-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
  .listings-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .search-form { flex-direction: column; }
  .search-field { min-width: 100%; }
  .hero-stats { gap: 20px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .advisor-card { flex-direction: column; text-align: center; }
}
