/* ==========================================================================
   Düşkün Emlak — site stilleri
   Palet logodan türetildi: siyah / altın / kırık beyaz
   ========================================================================== */

:root {
  --black: #0b0b0b;
  --ink: #151515;
  --ink-2: #1f1f1f;
  --gold: #c9a03e;
  --gold-2: #e6c466;
  --gold-dark: #9c7a2b;
  --cream: #f7f4ec;
  --paper: #ffffff;
  --text: #1b1b1b;
  --muted: #6a6a6a;
  --line: rgba(0, 0, 0, 0.08);
  --line-light: rgba(255, 255, 255, 0.12);

  --font-head: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --gutter: 16px;
  --container: 1180px;
  --radius: 14px;
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  --header-h: 76px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--paper);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  line-height: 1.15;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2rem, 5.2vw, 3.6rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  font-weight: 800;
}

h3 {
  font-size: 1.15rem;
  font-weight: 700;
}

p {
  margin: 0 0 1em;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

@media (min-width: 768px) {
  :root {
    --gutter: 32px;
  }
}

.section {
  padding: clamp(64px, 9vw, 120px) 0;
}

.section--cream {
  background: var(--cream);
}

.section--dark {
  background: var(--black);
  color: #fff;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--gold);
}

.section-head {
  max-width: 680px;
  margin-bottom: clamp(32px, 5vw, 56px);
}

.section-head p {
  color: var(--muted);
  font-size: 1.05rem;
}

.section--dark .section-head p {
  color: rgba(255, 255, 255, 0.7);
}

/* --------------------------------------------------------------------------
   Butonlar
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.btn svg {
  width: 20px;
  height: 20px;
  flex: none;
}

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

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

.btn:focus-visible {
  outline: 3px solid var(--gold-2);
  outline-offset: 3px;
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold-2), var(--gold) 55%, var(--gold-dark));
  color: var(--black);
  box-shadow: 0 10px 30px rgba(201, 160, 62, 0.35);
}

.btn--gold:hover {
  box-shadow: 0 14px 36px rgba(201, 160, 62, 0.5);
}

.btn--outline-light {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}

.btn--outline-light:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.btn--dark {
  background: var(--black);
  color: #fff;
}

.btn--dark:hover {
  background: var(--ink-2);
}

.btn--whatsapp {
  background: #25d366;
  color: #fff;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.btn--whatsapp:hover {
  background: #1ebe5b;
}

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

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */

.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.3s ease, box-shadow 0.3s ease, height 0.3s ease;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header__logo {
  display: block;
  height: 44px;
}

.header__logo img {
  height: 100%;
  width: auto;
}

.header__logo .logo-dark {
  display: none;
}

.header--solid {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--line), 0 10px 30px rgba(0, 0, 0, 0.06);
  height: 68px;
}

.header--solid .header__logo .logo-light {
  display: none;
}

.header--solid .header__logo .logo-dark {
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__list {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__link {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  color: #fff;
  position: relative;
  padding: 6px 0;
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
}

.nav__link:hover::after,
.nav__link:focus-visible::after {
  width: 100%;
}

.header--solid .nav__link {
  color: var(--text);
}

.nav__cta {
  border-color: var(--gold);
  color: #fff;
}

.header--solid .nav__cta {
  color: var(--black);
}

.nav__cta:hover {
  background: var(--gold);
  color: var(--black);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  padding: 10px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.header--solid .nav-toggle span {
  background: var(--black);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--black);
    padding: 8px var(--gutter) 24px;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.25s ease, opacity 0.25s ease, visibility 0.25s;
    border-top: 1px solid var(--line-light);
  }

  .header--solid .nav {
    top: 68px;
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav__list {
    flex-direction: column;
    gap: 0;
  }

  .nav__link,
  .header--solid .nav__link {
    display: block;
    padding: 14px 0;
    font-size: 1.05rem;
    color: #fff;
    border-bottom: 1px solid var(--line-light);
  }

  .nav__link::after {
    display: none;
  }

  .nav__cta,
  .header--solid .nav__cta {
    margin-top: 18px;
    color: #fff;
  }
}

/* Alt sayfalarda her zaman açık zeminli, menüsüz header */
.header--static .nav,
.header--static .nav.is-open {
  position: static;
  opacity: 1;
  visibility: visible;
  transform: none;
  background: none;
  padding: 0;
  border: 0;
}

.header--static .nav__cta {
  margin: 0;
  color: var(--black);
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 48px) 0 80px;
  background: var(--black);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  /* ince altın grid */
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 160, 62, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 160, 62, 0.07) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at 30% 40%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 30% 40%, #000 20%, transparent 75%);
  z-index: -2;
}

.hero::after {
  /* sıcak altın parıltı */
  content: "";
  position: absolute;
  width: 70vw;
  height: 70vw;
  max-width: 900px;
  max-height: 900px;
  right: -20vw;
  top: -20vw;
  background: radial-gradient(circle, rgba(201, 160, 62, 0.22), transparent 60%);
  z-index: -1;
  pointer-events: none;
}

.hero__mark {
  position: absolute;
  right: -4%;
  top: 50%;
  width: min(52vw, 620px);
  transform: translateY(-50%);
  opacity: 0.08;
  z-index: -1;
  pointer-events: none;
  filter: grayscale(1) brightness(2);
}

.hero__content {
  max-width: 720px;
}

.hero .eyebrow {
  color: var(--gold-2);
}

.hero h1 {
  margin-bottom: 20px;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold-2);
}

.hero__lead {
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  color: rgba(255, 255, 255, 0.78);
  max-width: 560px;
  margin-bottom: 34px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 40px;
  padding-top: 28px;
  border-top: 1px solid var(--line-light);
}

.hero__meta div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero__meta strong {
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: #fff;
}

.hero__meta span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 600px) {
  .hero {
    min-height: auto;
    padding-bottom: 64px;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero__mark {
    width: 80vw;
    right: -30vw;
    top: 42%;
    opacity: 0.06;
  }
}

/* --------------------------------------------------------------------------
   Güven şeridi
   -------------------------------------------------------------------------- */

.trust {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}

.trust__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  background: var(--line);
}

.trust__item {
  background: var(--cream);
  padding: 28px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.trust__item svg {
  width: 28px;
  height: 28px;
  flex: none;
  color: var(--gold);
}

.trust__item h3 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.trust__item p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

/* --------------------------------------------------------------------------
   Hakkımızda
   -------------------------------------------------------------------------- */

.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 900px) {
  .about__grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 72px;
  }
}

.about__text p {
  font-size: 1.05rem;
  color: #3a3a3a;
}

.about__list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 12px;
}

.about__list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-weight: 500;
}

.about__list svg {
  width: 22px;
  height: 22px;
  flex: none;
  color: var(--gold);
  margin-top: 2px;
}

.about__card {
  position: relative;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 48px);
  box-shadow: var(--shadow);
}

.about__card::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(201, 160, 62, 0.35);
  border-radius: calc(var(--radius) - 6px);
  pointer-events: none;
}

.about__card img {
  width: 100%;
  margin-bottom: 28px;
}

.about__owner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.about__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--black);
  color: var(--gold-2);
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  flex: none;
}

.about__owner strong {
  display: block;
  font-family: var(--font-head);
}

.about__owner span {
  font-size: 0.9rem;
  color: var(--muted);
}

/* --------------------------------------------------------------------------
   Hizmetler
   -------------------------------------------------------------------------- */

.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 600px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .services__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

.service {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
  overflow: hidden;
}

.service::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-2), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.service:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(201, 160, 62, 0.4);
}

.service:hover::after {
  transform: scaleX(1);
}

.service__icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--black);
  color: var(--gold-2);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}

.service__icon svg {
  width: 26px;
  height: 26px;
}

.service p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* --------------------------------------------------------------------------
   İlanlar CTA
   -------------------------------------------------------------------------- */

.listings {
  position: relative;
  overflow: hidden;
}

.listings::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(201, 160, 62, 0.18), transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(201, 160, 62, 0.12), transparent 40%);
  pointer-events: none;
}

.listings__inner {
  position: relative;
  display: grid;
  gap: 36px;
  align-items: center;
}

@media (min-width: 900px) {
  .listings__inner {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 64px;
  }
}

.listings h2 {
  color: #fff;
}

.listings h2 em {
  font-style: normal;
  color: var(--gold-2);
}

.listings p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
  max-width: 560px;
}

.listings__card {
  background: linear-gradient(160deg, var(--ink-2), var(--ink));
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 44px);
  text-align: center;
}

.listings__badge {
  display: inline-block;
  background: #ffe800;
  color: #000;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  padding: 6px 14px;
  border-radius: 6px;
  margin-bottom: 18px;
}

.listings__card h3 {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.listings__card p {
  font-size: 0.95rem;
  margin: 0 auto 24px;
}

.listings__card .btn {
  width: 100%;
}

.listings__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.listings__tags span {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.8);
}

/* --------------------------------------------------------------------------
   İletişim
   -------------------------------------------------------------------------- */

.contact__grid {
  display: grid;
  gap: 32px;
}

@media (min-width: 900px) {
  .contact__grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 48px;
  }
}

.contact__list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

a.contact__item:hover {
  border-color: rgba(201, 160, 62, 0.5);
  box-shadow: var(--shadow);
}

.contact__item svg {
  width: 24px;
  height: 24px;
  flex: none;
  color: var(--gold);
  margin-top: 2px;
}

.contact__item strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2px;
}

.contact__item span {
  font-weight: 500;
  font-size: 1.02rem;
}

.contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  min-height: 360px;
  background: #e9e6df;
}

.map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}

@media (min-width: 900px) {
  .map,
  .map iframe {
    min-height: 100%;
    height: 100%;
  }
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.7);
  padding: 56px 0 28px;
  font-size: 0.92rem;
}

.footer__top {
  display: grid;
  gap: 32px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line-light);
}

@media (min-width: 768px) {
  .footer__top {
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 48px;
  }
}

.footer__logo {
  width: 240px;
  margin-bottom: 16px;
}

.footer h4 {
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.footer a:hover {
  color: var(--gold-2);
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  padding-top: 22px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
}

/* --------------------------------------------------------------------------
   Sabit WhatsApp butonu
   -------------------------------------------------------------------------- */

.wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s ease;
}

.wa-float svg {
  width: 30px;
  height: 30px;
}

.wa-float:hover {
  transform: scale(1.08);
}

.wa-float::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: wa-pulse 2s ease-out infinite;
}

@keyframes wa-pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

/* --------------------------------------------------------------------------
   Scroll-reveal
   -------------------------------------------------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal[data-delay="1"] {
  transition-delay: 0.1s;
}

.reveal[data-delay="2"] {
  transition-delay: 0.2s;
}

.reveal[data-delay="3"] {
  transition-delay: 0.3s;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .wa-float::after {
    animation: none;
  }
}

/* --------------------------------------------------------------------------
   Alt sayfalar (gizlilik, 404)
   -------------------------------------------------------------------------- */

.page {
  padding-top: calc(var(--header-h) + 48px);
  min-height: 70vh;
}

.page .prose {
  max-width: 760px;
}

.prose h2 {
  font-size: 1.35rem;
  margin-top: 2em;
}

.prose p,
.prose li {
  color: #3a3a3a;
}

.page-404 {
  min-height: 100svh;
  display: flex;
  align-items: center;
  text-align: center;
  background: var(--black);
  color: #fff;
}

.page-404 .container {
  max-width: 640px;
}

.page-404 img {
  width: 120px;
  margin: 0 auto 32px;
}

.page-404 h1 {
  font-size: clamp(2.4rem, 8vw, 4.5rem);
}

.page-404 p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 28px;
}
