* { box-sizing: border-box; }

:root {
  --color-primary: #c24e4e;
  --color-primary-hover: #a84242;
  --color-accent: #d66a6a;
  --color-coral: #e88880;
  --color-peach: #f0b8b0;
  --bg-page: #f4f6f9;
  --bg-card: #ffffff;
  --bg-muted: #eef1f5;
  --bg-warm: #faf9f8;
  --text-body: #2c2d33;
  --text-muted: #5c636a;
  --border-soft: #e8eaef;
  --border-tint: #f0e8e7;
  --radius-md: 12px;
  --radius-lg: 14px;
  --shadow-sm: 0 2px 14px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 10px 32px rgba(0, 0, 0, 0.08);
  --space-section-y: 96px;
  --space-section-x: 40px;
  --space-section-x-sm: 28px;
  --header-pad-y: 22px;
  --header-pad-x: 36px;
  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-heading: var(--font-display);
}

body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, sans-serif;
  margin: 0;
  background: var(--bg-page);
  color: var(--text-body);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.04em;
}
h4, h5, h6 {
  font-family: 'Poppins', system-ui, sans-serif;
  font-weight: 600;
  letter-spacing: -0.02em;
}
a { color: inherit; }

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: var(--header-pad-y) var(--header-pad-x);
  background: var(--bg-card);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1200;
  box-shadow: var(--shadow-sm);
}
.site-header--translucent { background: rgba(255,255,255,0.96); }
.site-header .logo {
  font-family: 'Plus Jakarta Sans', 'Poppins', system-ui, sans-serif;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.82rem;
  color: var(--color-primary);
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 1.2;
}
.site-header .logo__img {
  display: block;
  height: auto;
  max-height: 100%;
  width: auto;
  max-width: min(200px, 46vw);
  object-fit: contain;
  object-position: left center;
}
.site-header nav {
  display: flex;
  gap: 18px;
  justify-content: flex-end;
  flex-wrap: wrap;
  align-items: center;
}
.site-header nav a {
  position: relative;
  font-family: 'Plus Jakarta Sans', 'Poppins', system-ui, sans-serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: #4a4844;
  padding: 8px 12px;
  white-space: nowrap;
  text-decoration: none;
  transition: color 0.3s ease;
}
.site-header nav a:hover {
  color: var(--color-primary);
}
.site-header--navline nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width 0.3s ease, background 0.3s ease;
}
.site-header--navline nav a:hover::after { width: 100%; }
.site-header--navline nav a.active {
  color: var(--color-primary);
}
.site-header--navline nav a.active::after {
  width: 100%;
  background: var(--color-primary);
}

#menuToggle.menu-toggle,
button#menuToggle.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  height: 44px;
  width: 44px;
  min-width: 44px;
  min-height: 44px;
  z-index: 1210;
  padding: 0;
  border: none;
  background: transparent;
  border-radius: 10px;
  position: relative;
  flex-shrink: 0;
  color: var(--color-primary);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
#menuToggle.menu-toggle .menu-toggle__svg {
  display: block;
  overflow: visible;
}
#menuToggle.menu-toggle .menu-toggle__bar {
  transform-origin: center;
  transition: transform 0.28s ease, opacity 0.2s ease;
}
body.menu-open #menuToggle.menu-toggle .menu-toggle__bar--1 {
  transform: translateY(5.75px) rotate(45deg);
}
body.menu-open #menuToggle.menu-toggle .menu-toggle__bar--2 {
  opacity: 0;
}
body.menu-open #menuToggle.menu-toggle .menu-toggle__bar--3 {
  transform: translateY(-5.75px) rotate(-45deg);
}

.overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 100dvh;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  z-index: 1180;
}
.overlay.active {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 1023px) {
  body.menu-open {
    overflow: hidden;
    touch-action: none;
  }
  .site-header .logo {
    min-width: 0;
    max-width: calc(100vw - var(--header-pad-x) * 2 - 56px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .site-header .logo__img {
    max-width: min(200px, calc(100vw - var(--header-pad-x) * 2 - 56px));
  }
  .site-header nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 80vw;
    max-width: 360px;
    height: 100vh;
    height: 100dvh;
    margin: 0;
    padding: calc(76px + env(safe-area-inset-top, 0px)) 22px 28px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    background: #fff;
    border-radius: 0;
    box-shadow: -8px 0 32px rgba(0,0,0,0.18);
    transform: translateX(100%);
    transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 1190;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    gap: 0;
  }
  body.menu-open .site-header nav {
    transform: translateX(0);
  }
  #menuToggle.menu-toggle,
  button#menuToggle.menu-toggle {
    display: flex !important;
  }
  .site-header nav a {
    font-family: 'Plus Jakarta Sans', 'Poppins', system-ui, sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 14px 12px;
    border-radius: 10px;
    white-space: normal;
    position: relative;
  }
  .site-header nav a + a {
    border-top: 1px solid #f0f0f0;
  }
  /* Mobil çekmece: masaüstündeki alt çizgi yerine ince accent */
  .site-header--navline nav a::after {
    display: block;
    left: 12px;
    right: 12px;
    bottom: 0;
    top: auto;
    width: auto;
    height: 2px;
    transform: none;
    border-radius: 1px;
    opacity: 0;
    transition: opacity 0.2s ease;
  }
  .site-header--navline nav a:hover::after,
  .site-header--navline nav a.active::after {
    opacity: 1;
    width: auto;
  }
  .site-header--navline nav a.active::after {
    background: var(--color-primary);
  }
  /* Ana sayfa hero üstünde: ikon kontrastı */
  body.page-home #menuToggle.menu-toggle {
    color: #000000;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.45));
  }
  body.page-home .site-header.site-header--scrolled #menuToggle.menu-toggle {
    color: var(--color-primary);
    filter: none;
  }
}

/* Hero (home) */
.hero {
  position: relative;
  height: 550px;
  margin-top: 80px;
  overflow: hidden;
}
.hero .slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}
.hero .slide.active { opacity: 1; }
.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.35);
  z-index: 1;
}
.hero-inner {
  position: absolute;
  z-index: 2;
  color: #fff;
  text-align: center;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 24px;
}
.hero-inner h1 {
  font-size: 2.75rem;
  margin: 0 0 12px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}
.hero-inner p {
  font-size: 1.25rem;
  margin: 0;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}
a.cta {
  display: inline-block;
  margin-top: 8px;
  padding: 12px 28px;
  background: var(--color-primary);
  color: #fff !important;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease, background 0.3s, color 0.3s, border-color 0.3s;
}
a.cta:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.hero-inner a.cta { margin-top: 18px; }
@media (max-width: 768px) {
  .hero-inner h1 { font-size: 2rem; }
}

/* Ana sayfa: tam ekran slider + lüks / emlak estetiği */
body.page-home {
  background: var(--bg-muted);
}
body.page-home .hero {
  margin-top: 0;
  height: 100vh;
  min-height: 100vh;
}
body.page-home .hero-overlay {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.45) 0%,
    rgba(0, 0, 0, 0.52) 50%,
    rgba(0, 0, 0, 0.58) 100%
  );
}
body.page-home .hero-inner {
  top: 52%;
  padding: 0 36px;
  max-width: 920px;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
body.page-home .hero-inner h1 {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  font-weight: 800;
  font-size: clamp(2.65rem, 6.5vw, 4.25rem);
  letter-spacing: -0.03em;
  line-height: 1.08;
  text-shadow: 0 2px 4px rgba(0,0,0,0.35), 0 12px 48px rgba(0,0,0,0.45);
  margin: 0 0 18px;
}
body.page-home .hero-inner p {
  font-family: 'Plus Jakarta Sans', 'Poppins', sans-serif;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: none;
  line-height: 1.55;
  text-shadow: 0 2px 24px rgba(0,0,0,0.5);
  opacity: 0.96;
  max-width: 38rem;
  margin-left: auto;
  margin-right: auto;
}
body.page-home .hero-inner a.cta {
  margin-top: 32px;
  padding: 15px 40px;
  background: transparent;
  border: 1px solid rgba(212, 175, 106, 0.88);
  color: #fff !important;
  border-radius: 2px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background 0.35s ease, border-color 0.35s ease, transform 0.25s ease, box-shadow 0.35s ease;
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
}
body.page-home .hero-inner a.cta:hover {
  background: rgba(212, 175, 106, 0.18);
  border-color: #e8d5a8;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 32px rgba(0,0,0,0.28);
}
body.page-home .hero-search-wrap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  padding: 0 18px 28px;
  pointer-events: none;
}
body.page-home .hero-search {
  pointer-events: auto;
  max-width: 1080px;
  margin: 0 auto;
}
body.page-home .hero-search__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 10px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 4px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.25);
}
body.page-home .hero-search__field {
  flex: 1 1 140px;
  min-width: 0;
  padding: 12px 14px;
  font-family: 'Plus Jakarta Sans', 'Poppins', sans-serif;
  font-size: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.95);
  color: #1a1a1a;
}
body.page-home .hero-search__field::placeholder {
  color: #666;
}
body.page-home .hero-search__select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23333' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}
body.page-home .hero-search__field--narrow {
  flex: 1 1 110px;
  max-width: 160px;
}
body.page-home .hero-search__submit {
  flex: 0 0 auto;
  padding: 12px 28px;
  font-family: 'Plus Jakarta Sans', 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  background: #d4af6a;
  color: #1a1510;
  transition: background 0.25s, transform 0.2s;
}
body.page-home .hero-search__submit:hover {
  background: #e4c77e;
  transform: translateY(-1px);
}
@media (max-width: 1023px) {
  body.page-home .hero-inner {
    top: 42%;
    padding: 32px 16px 0;
  }
  body.page-home .hero-search-wrap {
    padding: 0 12px 14px;
  }
  body.page-home .hero-search {
    max-height: min(52vh, 360px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  body.page-home .hero-search__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 10px;
    align-items: stretch;
    padding: 10px 12px;
    flex-direction: unset;
    flex-wrap: unset;
  }
  body.page-home .hero-search__inner > *:nth-child(1) {
    grid-column: 1 / -1;
  }
  body.page-home .hero-search__inner > *:nth-child(6) {
    grid-column: 1 / -1;
  }
  body.page-home .hero-search__field,
  body.page-home .hero-search__select {
    width: 100%;
    min-height: 42px;
    padding: 8px 10px;
    font-size: 16px;
    line-height: 1.25;
    border-radius: 3px;
  }
  body.page-home .hero-search__field--narrow {
    max-width: none;
    min-width: 0;
  }
  body.page-home .hero-search__select {
    background-position: right 10px center;
    padding-right: 28px;
  }
  body.page-home .hero-search__submit {
    width: 100%;
    min-height: 44px;
    padding: 10px 18px;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
  }
}
@media (max-width: 380px) {
  body.page-home .hero-search__inner {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  body.page-home .hero-search__inner > *:nth-child(2),
  body.page-home .hero-search__inner > *:nth-child(3),
  body.page-home .hero-search__inner > *:nth-child(4),
  body.page-home .hero-search__inner > *:nth-child(5) {
    grid-column: 1 / -1;
  }
}
body.page-home .site-header {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: none;
  transition:
    background 0.4s ease,
    box-shadow 0.4s ease,
    border-color 0.4s ease,
    backdrop-filter 0.4s ease;
}
body.page-home .site-header--translucent {
  background: rgb(254 254 254 / 30%);
}
body.page-home .site-header .logo {
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.82rem;
  text-shadow: 0 2px 16px rgba(0,0,0,0.35);
  transition: color 0.35s ease, text-shadow 0.35s ease;
}
body.page-home .site-header .logo__img {
  filter: drop-shadow(0 2px 14px rgba(0, 0, 0, 0.45));
  transition: filter 0.35s ease, opacity 0.35s ease;
}
@media (min-width: 769px) {
  body.page-home .site-header:not(.site-header--scrolled) nav a {
    color: rgba(255, 255, 255, 0.92);
  }
  body.page-home .site-header:not(.site-header--scrolled) nav a:hover {
    color: #fff;
  }
  body.page-home .site-header:not(.site-header--scrolled).site-header--navline nav a::after {
    background: #d4af6a;
    height: 1px;
    bottom: 2px;
  }
  body.page-home .site-header:not(.site-header--scrolled).site-header--navline nav a:hover::after,
  body.page-home .site-header:not(.site-header--scrolled).site-header--navline nav a.active::after {
    background: #fff;
    width: 100%;
  }
  body.page-home .site-header:not(.site-header--scrolled).site-header--navline nav a.active {
    color: #fff;
  }
}
body.page-home .site-header.site-header--scrolled {
  background: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.08);
}
body.page-home .site-header.site-header--scrolled .logo {
  color: #2a2622 !important;
  text-shadow: none;
}
body.page-home .site-header.site-header--scrolled .logo__img {
  filter: none;
}
@media (min-width: 769px) {
  body.page-home .site-header.site-header--scrolled nav a {
    color: #4a4844 !important;
  }
  body.page-home .site-header.site-header--scrolled.site-header--navline nav a::after {
    background: var(--color-primary);
  }
  body.page-home .site-header.site-header--scrolled.site-header--navline nav a:hover,
  body.page-home .site-header.site-header--scrolled.site-header--navline nav a.active {
    color: var(--color-primary) !important;
  }
  body.page-home .site-header.site-header--scrolled.site-header--navline nav a:hover::after,
  body.page-home .site-header.site-header--scrolled.site-header--navline nav a.active::after {
    background: var(--color-primary);
    width: 100%;
  }
}
body.page-home .about.about--home,
body.page-about .about.about--home.page-about__intro {
  background: var(--bg-warm);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.06);
}
body.page-about .about.about--home.page-about__intro {
  margin-top: 88px;
}
body.page-home .about.about--home .about__heading h2,
body.page-about .about.about--home .about__heading .about__page-title,
body.page-home .section > h2 {
  color: #2c2a26;
}
body.page-home .section > h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
}
body.page-home .about.about--home .about__heading h2,
body.page-about .about.about--home .about__heading .about__page-title {
  font-size: clamp(2.15rem, 4.5vw, 3.15rem);
  line-height: 1.12;
  margin: 0;
}
body.page-home .about.about--home .about__label,
body.page-about .about.about--home .about__label {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin: 0 0 0.65rem;
  opacity: 0.92;
}
body.page-home .about.about--home .about__heading,
body.page-about .about.about--home .about__heading {
  margin-bottom: 1.35rem;
}
body.page-home .about.about--home .about__divider,
body.page-about .about.about--home .about__divider {
  display: block;
  width: 100%;
  max-width: 4.5rem;
  height: 1px;
  margin-top: 1rem;
  background: linear-gradient(90deg, var(--color-primary), rgba(194, 78, 78, 0.15));
  border-radius: 1px;
}
body.page-home .about.about--home.about--no-image .about__divider,
body.page-about .about.about--home.about--no-image .about__divider {
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 900px) {
  body.page-home .about.about--home .about__divider,
  body.page-about .about.about--home .about__divider {
    margin-left: auto;
    margin-right: auto;
  }
}
body.page-home .section .lead {
  color: #5c5854;
  font-weight: 300;
  letter-spacing: 0.02em;
}
body.page-home .card {
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: #fff;
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.05);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
body.page-home .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}
body.page-home .about.about--home .about__actions .cta,
body.page-home .section a.cta,
body.page-about .about.about--home .about__actions .cta {
  background: #2a2622;
  border: 1px solid #2a2622;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  padding: 13px 26px;
  border-radius: 2px;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease, background 0.3s, color 0.3s, border-color 0.3s;
}
body.page-home .about.about--home .about__actions .cta:hover,
body.page-home .section a.cta:hover,
body.page-about .about.about--home .about__actions .cta:hover {
  background: #fff;
  color: #2a2622 !important;
  border-color: #2a2622;
  transform: scale(1.04);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}
@media (max-width: 768px) {
  body.page-home .hero-inner h1 {
    font-size: clamp(2rem, 9vw, 2.85rem);
  }
}

.about {
  padding: 72px 40px;
  max-width: 900px;
  margin: 72px auto;
  text-align: center;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.about h2 { color: var(--color-primary); margin-top: 0; }
.about .about-body { text-align: left; max-width: 720px; margin: 0 auto; line-height: 1.65; }

/* Ana sayfa — hakkımızda: metin + görsel (2 kolon) */
.about.about--home {
  max-width: 1120px;
  text-align: left;
}
.about.about--home .about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
}
.about.about--home.about--no-image .about__grid {
  grid-template-columns: 1fr;
  max-width: 720px;
  margin: 0 auto;
}
.about.about--home.about--no-image {
  text-align: center;
}
.about.about--home.about--no-image .about__col--text {
  text-align: center;
}
.about.about--home.about--no-image .about-body {
  margin-left: auto;
  margin-right: auto;
}
.about.about--home .about__heading {
  text-align: left;
}
.about.about--home.about--no-image .about__heading {
  text-align: center;
}
.about.about--home .about-body {
  max-width: none;
  margin: 0;
}
.about.about--home .about__features {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.about.about--home .about__feature {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  padding: 12px 14px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.35;
  color: #2c2a26;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}
.about.about--home .about__feature-icon {
  color: var(--color-primary);
  font-size: 0.95rem;
  line-height: 1;
  flex-shrink: 0;
}
.about.about--home .about__actions {
  margin: 24px 0 0;
}
.about.about--home .about__secondary-actions {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start;
  align-items: center;
}
.about.about--home.about--no-image .about__secondary-actions {
  justify-content: center;
}
.about.about--home .about__figure {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.about.about--home .about__photo {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
/* Mobil: hakkımızda tek sütun (metin + görsel üst üste), özellik kutuları tek sütun */
@media (max-width: 768px) {
  .about.about--home {
    padding: 56px 20px;
    max-width: 100%;
  }
  .about.about--home .about__grid {
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: stretch;
  }
  .about.about--home .about__col--text {
    width: 100%;
    min-width: 0;
    order: 1;
    text-align: center;
  }
  .about.about--home .about__heading {
    text-align: center;
  }
  .about.about--home .about-body {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    text-align: left;
  }
  .about.about--home .about__features {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .about.about--home .about__col--media {
    width: 100%;
    min-width: 0;
    order: 2;
  }
  .about.about--home .about__secondary-actions {
    justify-content: center;
  }
}

.about-page-hero {
  margin-top: 80px;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: #fff;
  text-align: center;
  padding: 56px 32px;
}
.about-page-hero__inner { max-width: 720px; }
.about-page-hero__eyebrow {
  margin: 0 0 10px;
  font-size: 0.95rem;
  opacity: 0.92;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.about-page-hero__title {
  margin: 0;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 700;
  text-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

.page-about__section {
  padding-top: 40px;
  padding-bottom: 96px;
}
.page-about__below {
  max-width: 900px;
  margin: 0 auto;
}
.page-about__mv {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.page-about__mv-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: left;
  box-shadow: 0 6px 28px rgba(0,0,0,0.07);
  border: 1px solid #ececec;
}
.page-about__mv-card h2 {
  font-size: 1.2rem;
  color: var(--color-primary);
  margin: 0 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border-tint);
}
.page-about__mv-body { line-height: 1.7; color: #444; font-size: 1rem; }
.page-about__mv-body ul, .page-about__mv-body ol { margin: 0; padding-left: 1.2rem; }
@media (max-width: 700px) {
  .page-about__mv { grid-template-columns: 1fr; }
}
.page-about__ghost {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 8px;
  border: 2px solid var(--color-primary);
  color: var(--color-primary) !important;
  font-weight: 600;
  text-decoration: none;
  background: transparent;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), background 0.3s, color 0.3s, border-color 0.3s;
}
.page-about__ghost:hover {
  background: #fdf5f4;
  transform: scale(1.04);
}

.section { padding: var(--space-section-y) var(--space-section-x); text-align: center; }
.section h2 { color: var(--color-primary); font-size: 1.85rem; font-weight: 700; margin: 0 0 16px; }
.section .lead { color: var(--text-muted); margin: 0 auto 40px; max-width: 640px; }
@media (max-width: 768px) {
  .section { padding: 72px var(--space-section-x-sm); }
}

.cards {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}
.card {
  background: var(--bg-card);
  padding: 22px;
  border-radius: var(--radius-md);
  width: 300px;
  transition: 0.3s;
  border: 1px solid var(--border-soft);
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}
.card img.cover {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}
.card h3 { color: var(--color-primary); margin: 12px 0 8px; font-size: 1.65rem; }

.services-grid .card {
  width: 280px;
  text-align: left;
}
.services-grid .card p {
  margin: 0;
  font-size: 0.95rem;
  color: #444;
  line-height: 1.55;
}

.site-footer {
  background: linear-gradient(135deg, #c0392b, #8e2b23);
  color: #fff;
  padding: 72px 40px 0;
}
.site-footer__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 40px);
  padding-bottom: 56px;
}
.site-footer__heading {
  margin: 0 0 16px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.92;
}
.site-footer__col--brand .site-footer__logo {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1;
}
.site-footer__logo-text {
  font-family: 'Poppins', system-ui, sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.site-footer__logo-img {
  display: block;
  max-height: 48px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}
.site-footer__tagline {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.55;
  opacity: 0.9;
  max-width: 260px;
}
.site-footer__nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
.site-footer__nav a {
  position: relative;
  display: inline-block;
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 6px 0;
  transition: color 0.25s ease;
}
.site-footer__nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 0;
  height: 1px;
  background: #fff;
  transition: width 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
.site-footer__nav a:hover {
  color: #fff;
}
.site-footer__nav a:hover::after {
  width: 100%;
}
.site-footer__contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.site-footer__contact-list > li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.site-footer__contact-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition:
    background 0.28s ease,
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}
.site-footer__contact-list > li:hover .site-footer__contact-icon {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.16);
}
.site-footer__contact-icon svg {
  display: block;
  width: 20px;
  height: 20px;
}
.site-footer__contact-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  font-size: 0.92rem;
  line-height: 1.45;
}
.site-footer__contact-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.75;
}
.site-footer__contact-body a {
  color: #fff;
  text-decoration: none;
  word-break: break-word;
  transition: opacity 0.2s ease;
}
.site-footer__contact-body a:hover {
  opacity: 0.85;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.site-footer__addr {
  line-height: 1.55;
  opacity: 0.95;
  white-space: pre-line;
}
.site-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.site-footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  text-decoration: none;
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.28s ease,
    color 0.28s ease,
    box-shadow 0.28s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}
.site-footer__social-link:hover {
  transform: scale(1.1);
  background: #fff;
  color: #8e2b23;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
}
.site-footer__social-link svg {
  display: block;
}
.site-footer__social-empty {
  margin: 0;
  opacity: 0.7;
}
.site-footer__subbar {
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  padding: 14px 40px 22px;
  margin-top: 8px;
}
.site-footer__subbar-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 24px;
}
.site-footer__copyright {
  margin: 0;
  font-size: 0.8rem;
  opacity: 0.88;
  line-height: 1.4;
  text-align: left;
}
.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 10px;
  font-size: 0.8rem;
}
.site-footer__legal-link {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.2s ease, text-decoration-color 0.2s ease;
  text-underline-offset: 3px;
}
.site-footer__legal-link:hover {
  opacity: 1;
  text-decoration: underline;
}
.site-footer__legal-sep {
  opacity: 0.55;
  user-select: none;
}
@media (max-width: 992px) {
  .site-footer__inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 36px;
    padding-bottom: 48px;
  }
  .site-footer__col {
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .site-footer__heading {
    width: 100%;
    text-align: center;
  }
  .site-footer__tagline {
    margin-left: auto;
    margin-right: auto;
    max-width: 28rem;
  }
  .site-footer__col--brand .site-footer__logo {
    margin-left: auto;
    margin-right: auto;
  }
  .site-footer__nav {
    align-items: center;
  }
  .site-footer__nav a::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .site-footer__nav a:hover::after {
    width: 100%;
    transform: translateX(-50%);
  }
  .site-footer__contact-list {
    align-items: center;
    width: 100%;
  }
  .site-footer__contact-list > li {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
  }
  .site-footer__contact-body {
    align-items: center;
    text-align: center;
  }
  .site-footer__contact-icon {
    margin-bottom: 2px;
  }
  .site-footer__social {
    justify-content: center;
  }
  .site-footer__logo-img {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 768px) {
  .site-footer {
    padding: 56px var(--space-section-x-sm) 0;
  }
  .site-footer__inner {
    padding-bottom: 40px;
    gap: 32px;
  }
  .site-footer__subbar {
    padding: 12px var(--space-section-x-sm) 20px;
  }
  .site-footer__subbar-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .site-footer__copyright {
    text-align: center;
  }
  .site-footer__legal {
    justify-content: center;
  }
}
.page-legal__wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 120px var(--space-section-x) 64px;
}
.page-legal__title {
  font-family: var(--font-heading);
  font-size: clamp(1.65rem, 3vw, 2rem);
  color: #1a1a1a;
  margin: 0 0 0.5rem;
}
.page-legal__divider {
  width: 48px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, #c12d2d, #e85a4f);
  margin: 0 0 1.75rem;
}
.page-legal__content {
  font-size: 1rem;
  line-height: 1.75;
  color: #444;
}
.page-legal__content h2 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: #222;
  margin: 1.75rem 0 0.65rem;
}
.page-legal__content h2:first-child {
  margin-top: 0;
}
.page-legal__content p {
  margin: 0 0 1rem;
}
.page-legal__content ul {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}
.page-legal__content a {
  color: #b32a2a;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.page-legal__content a:hover {
  color: #8e2222;
}
@media (max-width: 768px) {
  .page-legal__wrap {
    padding: 100px var(--space-section-x-sm) 48px;
  }
}

.contact-bubble {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 10000;
}
.contact-bubble a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
  text-decoration: none;
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.28s ease,
    background 0.25s ease;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
}
.contact-bubble a svg {
  display: block;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.contact-bubble a.phone {
  background: linear-gradient(145deg, var(--color-primary), #9e2f28);
}
.contact-bubble a.whatsapp {
  background: linear-gradient(145deg, #2fe06d, #128c7e);
}
.contact-bubble a:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.28);
}
.contact-bubble a:active {
  transform: scale(1.02);
}

/* Listings page */
body.page-listings {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.page-listings .inner { flex: 1; max-width: 1200px; margin: 0 auto; padding: 80px var(--space-section-x); width: 100%; }
@media (max-width: 1023px) {
  .page-listings .inner { padding: 48px var(--space-section-x-sm) 40px; }
}
.listings-page__title {
  text-align: center;
  margin: 0 0 28px;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  color: var(--color-primary);
}
.page-listings .top-slider {
  position: relative;
  width: 100%;
  height: 420px;
  margin-top: 80px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
@media (max-width: 1023px) {
  .page-listings .top-slider {
    height: min(42vw, 220px);
    min-height: 168px;
    margin-top: 68px;
    border-radius: 12px;
  }
}
@media (max-width: 480px) {
  .page-listings .top-slider {
    height: min(40vw, 200px);
    min-height: 152px;
    margin-top: 60px;
  }
}
.page-listings .top-slider .slide {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-listings .top-slider .slide.active { opacity: 1; }
.page-listings .top-slider .slide:nth-child(1){ background: linear-gradient(135deg,var(--color-primary),var(--color-accent)); }
.page-listings .top-slider .slide:nth-child(2){ background: linear-gradient(135deg, var(--color-accent), var(--color-coral)); }
.page-listings .top-slider .slide:nth-child(3){ background: linear-gradient(135deg, var(--color-coral), var(--color-peach)); }
.page-listings .slide-text {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 600;
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  text-align: center;
  padding: 16px 28px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s;
}
.page-listings .slide.active .slide-text { opacity: 1; transform: translateY(0); }
@media (max-width: 1023px) {
  .page-listings .slide-text {
    font-size: clamp(1.05rem, 4vw, 1.5rem);
    padding: 12px 16px;
    line-height: 1.25;
  }
}
.page-listings .filters--listings {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  margin-bottom: 36px;
  align-items: flex-end;
}
.page-listings .filters--listings .filters__search {
  flex: 1 1 200px;
  min-width: 160px;
  max-width: 280px;
}
.page-listings .filters--listings .filters__select {
  width: 160px;
}
.page-listings .filters--listings input,
.page-listings .filters--listings select {
  padding: 12px;
  font-size: 1em;
  border-radius: 8px;
  border: 1px solid #ccc;
  background: var(--bg-card);
}
.page-listings .filters--listings .filters__prices {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: flex-end;
}
.page-listings .filters--listings .filters__price {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0;
  cursor: default;
}
.page-listings .filters--listings .filters__price-hint {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.page-listings .filters--listings .filters__price input {
  width: 130px;
  padding: 12px;
  font-size: 1em;
  border-radius: 8px;
  border: 1px solid #ccc;
  background: var(--bg-card);
}
.page-listings .filters--listings .filters__clear {
  padding: 12px 18px;
  border: none;
  border-radius: 8px;
  background: var(--color-primary);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  font-size: 1rem;
}
.page-listings .listing-card {
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 20px;
  width: 280px;
  background: var(--bg-card);
  transition: 0.3s;
}
.page-listings .listing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.page-listings .listing-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 10px;
}
.page-listings .listing-card h3 { margin: 10px 0; font-size: 1.35rem; color: var(--color-primary); }
@media (max-width: 1023px) {
  .listings-page__title {
    margin-bottom: 14px;
  }
  .page-listings .filters--listings {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 12px;
    margin-bottom: 24px;
    align-items: stretch;
    justify-items: stretch;
  }
  .page-listings .filters--listings .filters__search {
    grid-column: 1 / -1;
    max-width: none;
    width: 100%;
    min-width: 0;
  }
  .page-listings .filters--listings .filters__select {
    width: 100%;
    min-width: 0;
  }
  .page-listings .filters--listings .filters__prices {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: 100%;
  }
  .page-listings .filters--listings .filters__price input {
    width: 100%;
  }
  .page-listings .filters--listings .filters__clear {
    grid-column: 1 / -1;
    width: 100%;
    padding: 11px 16px;
  }
  .page-listings .filters--listings input,
  .page-listings .filters--listings select {
    font-size: 16px;
    padding: 10px 12px;
  }
  .page-listings .listing-card { width: 90%; }
}

/* Contact */
.page-contact .contact-hero {
  min-height: 380px;
  margin-top: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary) center/cover no-repeat;
  position: relative;
}
.page-contact .contact-hero.no-img {
  background-image: linear-gradient(135deg, var(--color-primary), var(--color-accent));
}
.page-contact .contact-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
}
.page-contact .contact-hero .inner {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
  padding: 48px 32px;
}
.page-contact .contact-hero h1 {
  font-size: 2.4rem;
  margin: 0 0 10px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.page-contact .contact-section {
  display: flex;
  gap: 40px;
  padding: 80px var(--space-section-x);
  max-width: 1200px;
  margin: 0 auto;
}
.page-contact .contact-form {
  flex: 1;
  background: var(--bg-card);
  padding: 36px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}
.page-contact .contact-form h2 { color: var(--color-primary); margin-top: 0; }
.page-contact .contact-form input,
.page-contact .contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: inherit;
}
.page-contact .contact-form button {
  background: var(--color-primary);
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 8px;
  width: 100%;
  font-weight: 600;
  cursor: pointer;
}
.page-contact .map {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  min-height: 400px;
}
.page-contact .map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: 0;
}
.page-contact .note { padding: 12px; border-radius: 8px; margin-bottom: 16px; font-size: 14px; }
.page-contact .note.ok { background: #d4edda; color: #155724; }
.page-contact .note.err { background: #fdeaea; color: var(--color-primary); }
@media (max-width: 768px) {
  .page-contact .contact-section { flex-direction: column; padding: 56px var(--space-section-x-sm); }
}

/* Services page */
.page-services .page-intro { max-width: 720px; margin: 0 auto 48px; color: var(--text-muted); line-height: 1.65; }

/* İlan detay — galeri */
.page-listing-detail .listing-detail { max-width: 960px; margin: 0 auto; padding: 104px 32px 80px; }
.listing-gallery-wrap { margin-bottom: 28px; }
.listing-gallery {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  background: #111;
}
.listing-gallery__stage {
  position: relative;
  aspect-ratio: 16 / 9;
  max-height: 480px;
}
.listing-gallery__main {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.listing-gallery__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  background: var(--color-primary);
  color: #fff;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
}
.listing-gallery__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  color: #222;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.15s;
}
.listing-gallery__nav:hover { background: #fff; transform: translateY(-50%) scale(1.05); }
.listing-gallery__nav--prev { left: 12px; }
.listing-gallery__nav--next { right: 12px; }
.listing-gallery__fs {
  position: absolute;
  bottom: 12px;
  right: 12px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 10px;
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  transition: background 0.2s;
}
.listing-gallery__fs:hover { background: rgba(0,0,0,0.75); }
.listing-gallery__counter {
  position: absolute;
  bottom: 12px;
  left: 12px;
  z-index: 2;
  background: rgba(0,0,0,0.55);
  color: #fff;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
}
.listing-gallery__thumbs {
  display: flex;
  gap: 8px;
  padding: 10px;
  background: var(--bg-muted);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.listing-gallery__thumb {
  flex: 0 0 auto;
  width: 72px;
  height: 48px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  background: #ddd;
  opacity: 0.75;
  transition: opacity 0.2s, border-color 0.2s;
}
.listing-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.listing-gallery__thumb:hover { opacity: 1; }
.listing-gallery__thumb.is-active {
  opacity: 1;
  border-color: var(--color-primary);
}
.listing-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 56px;
}
.listing-lightbox[hidden] { display: none !important; }
.listing-lightbox__close {
  position: absolute;
  top: 16px;
  right: 20px;
  z-index: 2;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s;
}
.listing-lightbox__close:hover { background: rgba(255,255,255,0.28); }
.listing-lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  transition: background 0.2s;
}
.listing-lightbox__nav:hover { background: rgba(255,255,255,0.22); }
.listing-lightbox__nav--prev { left: 16px; }
.listing-lightbox__nav--next { right: 16px; }
.listing-lightbox img {
  max-width: 100%;
  max-height: calc(100vh - 96px);
  width: auto;
  height: auto;
  object-fit: contain;
  pointer-events: none;
}
.listing-lightbox__counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.9);
  font-size: 14px;
  font-weight: 600;
}
.listing-lightbox__caption {
  position: absolute;
  bottom: 52px;
  left: 50%;
  transform: translateX(-50%);
  max-width: min(90vw, 720px);
  margin: 0;
  text-align: center;
  color: rgba(255,255,255,0.9);
  font-size: 15px;
  line-height: 1.45;
  padding: 0 16px;
}
.listing-lightbox__caption[hidden] {
  display: none !important;
}
@media (max-width: 600px) {
  .listing-gallery__nav { width: 38px; height: 38px; font-size: 22px; }
  .listing-gallery__nav--prev { left: 8px; }
  .listing-gallery__nav--next { right: 8px; }
  .listing-lightbox { padding: 56px 12px; }
  .listing-lightbox__nav { width: 42px; height: 42px; font-size: 26px; }
}

.page-gallery__section > h1 {
  text-align: center;
}
.page-gallery__section .page-intro {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.page-gallery__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
  justify-content: center;
}
.page-gallery__filter {
  font: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 10px 18px;
  border-radius: 999px;
  border: 2px solid var(--color-primary, #c24e4e);
  background: #fff;
  color: var(--color-primary, #c24e4e);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.page-gallery__filter:hover {
  background: rgba(194, 78, 78, 0.08);
}
.page-gallery__filter.is-active {
  background: var(--color-primary, #c24e4e);
  color: #fff;
  border-color: var(--color-primary, #c24e4e);
}
.page-gallery__filter:focus-visible {
  outline: 2px solid var(--color-primary, #c24e4e);
  outline-offset: 3px;
}
.page-gallery__filter-empty {
  margin-top: 20px;
  color: #666;
  text-align: center;
}
.page-gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(168px, 200px));
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}
.page-gallery__thumb {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 12px;
  overflow: hidden;
  cursor: zoom-in;
  background: #eee;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.page-gallery__thumb:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}
.page-gallery__thumb:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}
.page-gallery__thumb img {
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.page-gallery__thumb-caption {
  display: block;
  padding: 10px 12px 12px;
  background: #fff;
  color: var(--text-body);
  font: inherit;
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1.3;
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.page-gallery__empty {
  margin-top: 20px;
  color: #666;
  text-align: center;
}

.listing-detail__wrap { padding: 0 4px; }
.listing-detail__crumb { font-size: 14px; margin: 0 0 12px; }
.listing-detail__crumb a { color: var(--color-primary); text-decoration: none; }
.listing-detail__crumb a:hover { text-decoration: underline; }
.listing-detail__wrap h1 { margin: 0 0 8px; font-size: 1.85rem; font-weight: 700; color: var(--text-body); }
.listing-detail__loc { margin: 0 0 8px; color: #555; }
.listing-detail__date { font-size: 14px; color: #666; margin: 0 0 10px; }
.listing-detail__price { font-size: 1.5rem; font-weight: 700; color: var(--color-primary); margin: 0 0 10px; }
.listing-detail__prose img { max-width: 100%; height: auto; border-radius: 8px; }
.listing-detail__prose ul, .listing-detail__prose ol { margin: 0 0 12px; padding-left: 1.25rem; }
.listing-detail__summary { color: #444; margin: 0 0 28px; line-height: 1.5; }
.listing-detail__block { margin-bottom: 28px; }
.listing-detail__block h2 { font-size: 1.15rem; color: var(--color-primary); margin: 0 0 12px; border-bottom: 2px solid #eee; padding-bottom: 8px; }
.listing-detail__dl {
  display: grid;
  grid-template-columns: minmax(120px, 200px) 1fr;
  gap: 8px 16px;
  margin: 0;
}
.listing-detail__dl dt { margin: 0; font-weight: 600; color: #555; font-size: 14px; }
.listing-detail__dl dd { margin: 0; color: #222; font-size: 14px; }
.listing-detail__prose { line-height: 1.65; color: #333; }
.listing-detail__actions { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.listing-detail__back { color: var(--color-primary); text-decoration: none; font-weight: 600; }
.listing-detail__back:hover { text-decoration: underline; }
@media (max-width: 600px) {
  .listing-detail__dl { grid-template-columns: 1fr; }
  .listing-detail__dl dt { padding-top: 8px; border-top: 1px solid #eee; }
  .listing-detail__dl dt:first-of-type { border-top: none; padding-top: 0; }
}

.page-listings .listing-card--link {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 12px;
  cursor: pointer;
  transition: box-shadow 0.2s, transform 0.15s;
}
.page-listings .listing-card--link:hover {
  box-shadow: 0 10px 28px rgba(0,0,0,0.12);
}
.page-listings .listing-card .listing-card-cta {
  display: inline-block;
  margin-top: 10px;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 14px;
}
.page-listings .listing-card .purpose-tag {
  display: inline-block;
  font-size: 10px;
  background: rgba(42, 38, 34, 0.9);
  color: #fff;
  padding: 6px 10px;
  border-radius: 4px;
  margin-right: 6px;
  margin-bottom: 8px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.page-listings .listing-card .type-tag {
  display: inline-block;
  font-size: 11px;
  background: #f5e9e8;
  color: var(--color-primary);
  padding: 4px 8px;
  border-radius: 6px;
  margin-bottom: 8px;
  font-weight: 600;
}
.page-listings .listing-card .sub { font-size: 13px; color: #555; margin: 6px 0 0; line-height: 1.4; }

.cards > a.index-listing-card {
  width: 300px;
  max-width: 100%;
  text-decoration: none;
  color: inherit;
  display: block;
}
.index-listing-card:hover .card { box-shadow: 0 10px 28px rgba(0,0,0,0.14); }
.index-listing-card .type-tag {
  display: inline-block;
  font-size: 11px;
  background: #f5e9e8;
  color: var(--color-primary);
  padding: 4px 8px;
  border-radius: 6px;
  margin-bottom: 8px;
  font-weight: 600;
}
.index-listing-card .sub { font-size: 13px; color: #555; margin: 8px 0 0; line-height: 1.4; }
.index-listing-card .more { font-size: 13px; color: var(--color-primary); font-weight: 600; margin-top: 10px; }

/* Hizmet kartı tıklanabilir */
.service-card-link {
  width: 300px;
  max-width: 100%;
  text-decoration: none;
  color: inherit;
  display: block;
}
.service-card-link:hover .card { box-shadow: 0 10px 28px rgba(0,0,0,0.14); }
.service-card-more {
  display: inline-block;
  margin-top: 10px;
  font-size: 13px;
  color: var(--color-primary);
  font-weight: 600;
}
.service-card-link .card > p {
  margin: 8px 0 0;
  font-size: 14px;
  color: #555;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Hizmet detay */
.page-service-detail .service-detail { max-width: 720px; margin: 0 auto; padding-bottom: 48px; }
.service-detail__crumb { font-size: 14px; margin: 0 0 12px; }
.service-detail__crumb a { color: var(--color-primary); text-decoration: none; }
.service-detail__title { font-size: 1.85rem; color: #222; margin: 0 0 20px; }
.service-detail__hero {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.service-detail__hero img { width: 100%; display: block; max-height: 420px; object-fit: cover; }
.service-detail__body {
  line-height: 1.7;
  color: #333;
}
.service-detail__body img { max-width: 100%; height: auto; border-radius: 8px; }
.service-detail__body ul, .service-detail__body ol { padding-left: 1.25rem; }
.service-detail__back { margin-top: 32px; }

/* —— Animations: fade-in metinler, buton hover scale —— */
@keyframes emlk-fade-in-up {
  from {
    opacity: 0;
    transform: translate3d(0, 1rem, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes emlk-fade-in-up-soft {
  from {
    opacity: 0;
    transform: translate3d(0, 1rem, 0);
  }
  to {
    opacity: 0.96;
    transform: translate3d(0, 0, 0);
  }
}

.hero-inner > h1 {
  animation: emlk-fade-in-up 0.88s cubic-bezier(0.22, 1, 0.36, 1) 0.06s both;
}
.hero-inner > p {
  animation: emlk-fade-in-up 0.88s cubic-bezier(0.22, 1, 0.36, 1) 0.22s both;
}
body.page-home .hero-inner > p {
  animation: emlk-fade-in-up-soft 0.88s cubic-bezier(0.22, 1, 0.36, 1) 0.22s both;
}
.hero-inner > a.cta {
  animation: emlk-fade-in-up 0.88s cubic-bezier(0.22, 1, 0.36, 1) 0.42s both;
}

body.page-home section.section > h2 {
  animation: emlk-fade-in-up 0.82s cubic-bezier(0.22, 1, 0.36, 1) 0.08s both;
}
body.page-home section.section > .lead {
  animation: emlk-fade-in-up 0.82s cubic-bezier(0.22, 1, 0.36, 1) 0.18s both;
}
body.page-home section.section .cards > a:nth-child(1) .card { animation: emlk-fade-in-up 0.72s cubic-bezier(0.22, 1, 0.36, 1) 0.28s both; }
body.page-home section.section .cards > a:nth-child(2) .card { animation: emlk-fade-in-up 0.72s cubic-bezier(0.22, 1, 0.36, 1) 0.36s both; }
body.page-home section.section .cards > a:nth-child(3) .card { animation: emlk-fade-in-up 0.72s cubic-bezier(0.22, 1, 0.36, 1) 0.44s both; }
body.page-home section.section .cards > a:nth-child(4) .card { animation: emlk-fade-in-up 0.72s cubic-bezier(0.22, 1, 0.36, 1) 0.52s both; }
body.page-home section.section .cards > a:nth-child(5) .card { animation: emlk-fade-in-up 0.72s cubic-bezier(0.22, 1, 0.36, 1) 0.6s both; }
body.page-home section.section .cards > a:nth-child(6) .card { animation: emlk-fade-in-up 0.72s cubic-bezier(0.22, 1, 0.36, 1) 0.68s both; }
body.page-home section.section > p {
  animation: emlk-fade-in-up 0.82s cubic-bezier(0.22, 1, 0.36, 1) 0.5s both;
}

.fade-in-scroll {
  opacity: 0;
  transform: translate3d(0, 1rem, 0);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.fade-in-scroll.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  will-change: auto;
}

/* Ana sayfa hakkımızda: scroll ile biraz daha belirgin yukarı kayma */
.fade-in-scroll.fade-in-scroll--about {
  transform: translate3d(0, 1.35rem, 0);
}

/* Özellik kartları: viewport’a girince sırayla fade + yukarı */
.about.about--home .about__features.about__features--reveal .about__feature {
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.about.about--home .about__features.about__features--reveal:not(.is-visible) .about__feature {
  opacity: 0;
  transform: translate3d(0, 1.1rem, 0);
}
.about.about--home .about__features.about__features--reveal.is-visible .about__feature:nth-child(1) { transition-delay: 0.06s; }
.about.about--home .about__features.about__features--reveal.is-visible .about__feature:nth-child(2) { transition-delay: 0.14s; }
.about.about--home .about__features.about__features--reveal.is-visible .about__feature:nth-child(3) { transition-delay: 0.22s; }

button:not(.menu-toggle):not(#menuToggle):not(.listing-gallery__nav):not(.listing-lightbox__nav):not(.listing-lightbox__close):not(.listing-gallery__thumb):not(.listing-gallery__fs):not(.page-gallery__thumb):not(.page-gallery__filter),
.hero-search__submit,
.page-listings .filters__clear,
.page-contact .contact-form button {
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease, background 0.3s, filter 0.2s;
}
button:not(.menu-toggle):not(#menuToggle):not(.listing-gallery__nav):not(.listing-lightbox__nav):not(.listing-lightbox__close):not(.listing-gallery__thumb):not(.listing-gallery__fs):not(.page-gallery__thumb):not(.page-gallery__filter):hover,
.hero-search__submit:hover,
.page-listings .filters__clear:hover,
.page-contact .contact-form button:hover {
  transform: scale(1.04);
}

@media (prefers-reduced-motion: reduce) {
  .hero-inner > h1,
  .hero-inner > p,
  .hero-inner > a.cta,
  body.page-home section.section > h2,
  body.page-home section.section > .lead,
  body.page-home section.section .cards > a .card,
  body.page-home section.section > p {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .fade-in-scroll {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .about.about--home .about__features.about__features--reveal .about__feature {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    transition-delay: 0s !important;
  }
  a.cta:hover,
  button:not(.menu-toggle):not(#menuToggle):hover,
  .hero-search__submit:hover,
  .page-about__ghost:hover,
  .site-footer__social-link:hover {
    transform: none !important;
  }
}
