﻿/* ════════════════════ Kılıç Emlak — Master Stylesheet ════════════════════ */

/* ── Tokens ── */
:root {
  --bg: #f6f8fc;
  --bg-soft: #eef2f9;
  --panel: #ffffff;
  --panel-2: #f9fbff;
  --line: #d9e2f1;
  --text: #1e2a3b;
  --muted: #58657a;
  --brand: #b48738;
  --brand-2: #dbbb7a;
  --brand-dark: #9e742b;
  --ok: #2a9c68;
  --danger: #d63e4d;
  --info: #356fc4;
  --shadow: 0 14px 34px rgba(21, 35, 57, 0.10);
  --shadow-lg: 0 24px 56px rgba(21, 35, 57, 0.15);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: .22s ease;
}

/* ── Reset ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: #f2f5fc;
  min-height: 100vh;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

/* ═══════════════ HEADER ═══════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(217, 226, 241, .5);
}

.nav-wrap {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  gap: 10px;
  align-items: center;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-family: "Cinzel", serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(140deg, var(--brand-2), var(--brand-dark));
  box-shadow: 0 6px 18px rgba(180, 135, 56, .3);
}

.brand-img-wrap {
  flex-shrink: 0;
}

.brand-logo-img {
  height: 64px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  display: block;
}

.brand-text strong,
.brand-text small {
  display: block;
  line-height: 1.1;
  letter-spacing: .1em;
}

.brand-text strong {
  font-size: .92rem;
}

.brand-text small {
  font-size: .66rem;
  color: var(--brand);
}

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

.nav a {
  font-weight: 600;
  font-size: .9rem;
  padding: 9px 18px;
  border-radius: 999px;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.nav a:hover {
  background: var(--bg-soft);
  transform: translateY(-1px);
}

.nav a.active {
  background: linear-gradient(140deg, var(--brand-2), var(--brand));
  color: #fff;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(180, 135, 56, .25);
}

.menu-btn {
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 6px;
}

.menu-btn span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: #2f3c50;
  margin: 5px 0;
  border-radius: 2px;
  transition: transform .28s ease, opacity .22s ease, background .22s;
  transform-origin: center;
}

/* Hamburger → X animasyonu */
.menu-btn.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.menu-btn.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.menu-btn.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ═══════════════ HERO ═══════════════ */
.hero {
  position: relative;
  background: linear-gradient(160deg, #0f1923 0%, #1a2d42 40%, #243b54 100%);
  overflow: hidden;
  min-height: 540px;
  display: flex;
  align-items: center;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .5;
}

.shape-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(180, 135, 56, .45), transparent 70%);
  top: -120px;
  right: -80px;
  animation: floatShape 8s ease-in-out infinite;
}

.shape-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(53, 111, 196, .35), transparent 70%);
  bottom: -100px;
  left: -60px;
  animation: floatShape 10s ease-in-out infinite reverse;
}

.shape-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(42, 156, 104, .25), transparent 70%);
  top: 50%;
  left: 60%;
  animation: floatShape 12s ease-in-out infinite 2s;
}

@keyframes floatShape {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(30px, -20px) scale(1.05);
  }

  66% {
    transform: translate(-20px, 15px) scale(.95);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0 90px;
  max-width: 680px;
  color: #fff;
}

.hero .eyebrow {
  color: var(--brand-2);
  font-size: .82rem;
}

.hero h1 {
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.15;
  margin-bottom: .6rem;
}

.gradient-text {
  background: linear-gradient(135deg, var(--brand-2), #f0d48a, var(--brand));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text {
  color: #9eafc7;
  max-width: 560px;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.6rem;
}

/* Hero Search Bar */
.hero-search-bar {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 999px;
  padding: 6px 6px 6px 20px;
  gap: 10px;
  max-width: 540px;
  transition: background var(--transition), border-color var(--transition);
}

.hero-search-bar:focus-within {
  background: rgba(255, 255, 255, .18);
  border-color: rgba(219, 187, 122, .4);
}

.hero-search-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}

.hero-search-bar input {
  flex: 1;
  border: none;
  background: transparent;
  color: #fff;
  font: inherit;
  font-size: .95rem;
  padding: 10px 0;
  outline: none;
}

.hero-search-bar input::placeholder {
  color: rgba(255, 255, 255, .5);
}

.hero-search-bar .btn {
  padding: 10px 24px;
  border-radius: 999px;
  font-size: .88rem;
  white-space: nowrap;
}

/* Hero Badges */
.hero-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 1.4rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .1);
  color: #bdc8d9;
  font-size: .78rem;
  font-weight: 600;
}

.hero-actions {
  margin-top: 1.4rem;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ═══════════════ BUTTONS ═══════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: .9rem;
  padding: 12px 26px;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  font-family: inherit;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(140deg, var(--brand-2), var(--brand));
  box-shadow: 0 8px 20px rgba(181, 136, 52, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 12px 30px rgba(181, 136, 52, 0.4);
}

.btn-ghost {
  color: #31445d;
  background: #fff;
  border-color: var(--line);
}

.btn-ghost:hover {
  background: var(--bg-soft);
}

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

.btn-sm {
  padding: 8px 16px;
  font-size: .82rem;
}

.btn-lg {
  padding: 14px 32px;
  font-size: .96rem;
}

/* ═══════════════ SATIŞ CTA ŞERİT ═══════════════ */
.sell-cta-strip {
  background: linear-gradient(135deg, #b48637 0%, #d4a655 50%, #b48637 100%);
  padding: 26px 0;
  box-shadow: 0 4px 24px rgba(180, 134, 55, 0.5);
  position: relative;
  z-index: 100;
}

.sell-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.sell-cta-text {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
}

.sell-cta-icon {
  font-size: 2rem;
  line-height: 1;
  flex-shrink: 0;
}

.sell-cta-text strong {
  display: block;
  font-size: 1.45rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: .02em;
  text-shadow: 0 1px 4px rgba(0,0,0,.2);
}

.sell-cta-text span {
  font-size: 1rem;
  color: rgba(255,255,255,.9);
  font-weight: 500;
}

.btn-sell-cta {
  display: inline-flex;
  align-items: center;
  background: #fff;
  color: #b48637 !important;
  font-weight: 700;
  font-size: .92rem;
  padding: 11px 22px;
  border-radius: 50px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 14px rgba(0,0,0,.15);
}

.btn-sell-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
}

.sell-cta-btns {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.btn-sell-phone {
  background: #fff;
  color: #1a7a3a !important;
}
.btn-sell-phone:hover { background: #f0fff4; }

.btn-sell-whatsapp {
  background: #25D366;
  color: #fff !important;
}
.btn-sell-whatsapp:hover { background: #1ebe5d; }

.btn-sell-instagram {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: #fff !important;
}
.btn-sell-instagram:hover { opacity: .9; }

/* ═══════════════ STATS ═══════════════ */
.stats-section {
  margin-top: -36px;
  position: relative;
  z-index: 10;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stat-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 20px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(21, 35, 57, 0.18);
}

.stat-icon {
  font-size: 1.8rem;
  margin-bottom: .5rem;
}

.stat-card h3 {
  color: var(--brand);
  font-size: 2rem;
  margin-bottom: .15rem;
  font-family: "Manrope", sans-serif;
}

.stat-card p {
  color: var(--muted);
  font-size: .86rem;
  font-weight: 500;
}

/* ═══════════════ SECTION HEADS ═══════════════ */
.section-head {
  margin-bottom: 24px;
}

.section-head h2 {
  margin-bottom: .3rem;
}

.eyebrow {
  margin: 0 0 .7rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .76rem;
  color: var(--brand);
  font-weight: 700;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 .6rem;
  line-height: 1.25;
}

h1,
h2 {
  font-family: "Cinzel", serif;
}

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

h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

/* ═══════════════ CATEGORIES ═══════════════ */
.categories-section {
  padding: 70px 0 20px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.category-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 16px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  cursor: pointer;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent, var(--brand-2));
}

.cat-icon {
  font-size: 2.4rem;
  margin-bottom: .7rem;
  display: inline-block;
  transition: transform .3s ease;
}

.category-card:hover .cat-icon {
  transform: scale(1.15) rotate(-3deg);
}

.category-card h4 {
  font-size: .95rem;
  margin-bottom: .2rem;
}

.category-card p {
  color: var(--muted);
  font-size: .82rem;
  font-weight: 500;
}

/* ═══════════════ FEATURED ═══════════════ */
.featured-section {
  padding: 60px 0 80px;
}

/* ═══════════════ FILTER FORM ═══════════════ */
.filters {
  padding: 36px 0 80px;
}

.filter-header {
  text-align: center;
  margin-bottom: 24px;
}

.filter-header-title {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-family: 'Cinzel', serif;
  color: var(--text);
  margin: 0;
}

.filter-grid {
  background: #fff;
  border: 1px solid var(--line);
  border-top: 3px solid var(--brand);
  border-radius: var(--radius);
  box-shadow: 0 8px 40px rgba(21, 35, 57, .09);
  padding: 28px 28px 22px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: end;
}

/* Etiket + input sarmalayıcı */
.filter-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.filter-label {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--brand-dark, #7a5c1e);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.filter-label svg {
  opacity: .65;
  flex-shrink: 0;
  stroke: var(--brand);
}

/* Buton satırı hizalaması */
.filter-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  height: 44px;
  padding: 0 20px;
  font-size: .88rem;
}

/* Eski label global'i ezme */
label.filter-field {
  gap: 7px;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}

label {
  display: grid;
  gap: 5px;
  color: #3d4d63;
  font-size: .86rem;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--panel-2);
  color: var(--text);
  font: inherit;
  font-size: .9rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--brand-2);
  box-shadow: 0 0 0 3px rgba(180, 134, 55, .12);
}

/* ═══════════════ LISTING GRID ═══════════════ */
.listing-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.listing-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform .3s ease, box-shadow .3s ease;
}

.listing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(21, 35, 57, 0.18);
}

.listing-image-wrap {
  position: relative;
  overflow: hidden;
}

.listing-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform .5s ease;
}

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

.card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .05em;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.card-badge.satilik {
  background: rgba(42, 156, 104, .92);
  color: #fff;
}

.card-badge.kiralik {
  background: rgba(53, 111, 196, .92);
  color: #fff;
}

.listing-body {
  padding: 18px;
}

.listing-body h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .35rem;
  line-height: 1.35;
}

.listing-meta {
  color: var(--muted);
  font-size: .82rem;
  margin-bottom: .3rem;
}

.listing-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: .6rem;
}

.price {
  color: var(--brand);
  font-size: 1.15rem;
  font-weight: 800;
}

.listing-date {
  font-size: .74rem;
  color: var(--muted);
}

.tag {
  display: inline-block;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: .72rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.cat-tag {
  background: #eef3ff;
  color: #3a5175;
}

.tag.satilik {
  background: #e3f5ec;
  color: var(--ok);
}

.tag.kiralik {
  background: #e4ecfa;
  color: var(--info);
}

.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--muted);
  font-size: 1.05rem;
}

.hidden {
  display: none !important;
}

/* ═══════════════ PAGINATION ═══════════════ */
.pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 32px;
}

.pagination button {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: #fff;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.pagination button:hover {
  background: var(--bg-soft);
  transform: translateY(-1px);
}

.pagination button.active {
  background: linear-gradient(140deg, var(--brand-2), var(--brand));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(180, 135, 56, .25);
}

.pagination button:disabled {
  opacity: .4;
  cursor: default;
}

/* ═══════════════ ABOUT SECTION ═══════════════ */
.about-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #f8fbff 0%, #f0f4fd 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 28px;
}

.about-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 20px;
  text-align: center;
  transition: transform .3s ease, box-shadow .3s ease;
}

.about-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.about-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin: 0 auto 1rem;
  background: linear-gradient(140deg, color-mix(in srgb, var(--accent) 12%, #fff), color-mix(in srgb, var(--accent) 5%, #fff));
  border: 1px solid color-mix(in srgb, var(--accent) 20%, #fff);
}

.about-icon {
  font-size: 1.8rem;
}

.about-card h4 {
  font-size: .95rem;
  margin-bottom: .4rem;
}

.about-card p {
  font-size: .86rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ═══════════════ CTA SECTION ═══════════════ */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(140deg, #1a2d42 0%, #0f1923 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(180, 135, 56, .2), transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 2;
}

.cta-section h2 {
  color: #fff;
  max-width: 600px;
  margin: 0 auto .6rem;
}

.cta-section p {
  color: #8e9bb5;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

/* ═══════════════ SORT BAR ═══════════════ */
.sort-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  margin-bottom: 4px;
}

.sort-bar .result-count {
  font-size: .88rem;
  color: var(--muted);
  font-weight: 500;
}

.sort-bar select {
  width: auto;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: .82rem;
  background: #fff;
}

/* ═══════════════ PAGE BANNER ═══════════════ */
.page-banner {
  background: linear-gradient(140deg, #0f1923 0%, #1a2d42 50%, #243b54 100%);
  padding: 52px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.page-banner::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(180, 135, 56, .2), transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
}

.page-banner .eyebrow {
  color: var(--brand-2);
}

.page-banner h1 {
  color: #fff;
  margin-bottom: .3rem;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
}

.page-banner p {
  color: #8e9bb5;
  font-size: 1rem;
}

/* ═══════════════ FOOTER ═══════════════ */
.footer {
  border-top: 1px solid rgba(255, 255, 255, .08);
  background: linear-gradient(180deg, #141e2b 0%, #0d1520 100%);
  color: #c7d1e0;
  padding: 54px 0 0;
}

.footer h3,
.footer h4 {
  color: #fff;
}

.footer p {
  color: #6e7f96;
  font-size: .88rem;
  line-height: 1.7;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 24px;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #6e7f96;
  font-size: .88rem;
  transition: color var(--transition), transform var(--transition);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--brand-2);
  transform: translateX(3px);
}

.footer-bottom {
  margin-top: 34px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, .06);
  text-align: center;
}

.footer-bottom p {
  font-size: .8rem;
  color: #4a5a6f;
}

/* Footer sosyal medya linkleri */
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.footer-social-link {
  display: inline-block;
  padding: 5px 12px;
  border: 1px solid rgba(180, 135, 56, 0.35);
  border-radius: 20px;
  color: var(--brand-2);
  font-size: .8rem;
  font-weight: 600;
  text-decoration: none;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.footer-social-link:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

/* Footer tıklanabilir iletişim linkleri */
.footer-contact-link {
  color: var(--brand-2);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-contact-link:hover {
  color: #fff;
  text-decoration: underline;
}

/* ═══════════════ DETAIL PAGE ═══════════════ */
.detail-page {
  padding: 40px 0 80px;
}

.detail-hero-grid {
  display: grid;
  grid-template-columns: 1.4fr .9fr;
  gap: 22px;
  margin-bottom: 30px;
}

.detail-main-image {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.detail-thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-top: 12px;
}

.detail-thumbs button {
  padding: 0;
  border: 2px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  background: #fff;
  transition: border-color var(--transition), transform var(--transition);
}

.detail-thumbs button:hover,
.detail-thumbs button.active {
  border-color: var(--brand);
  transform: scale(1.04);
}

.detail-thumbs img {
  width: 100%;
  height: 72px;
  object-fit: cover;
}

.detail-info-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}

.detail-info-panel h1 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  margin-bottom: .3rem;
}

.detail-price-big {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--brand);
  margin: .4rem 0 1rem;
}

.detail-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.detail-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin: 16px 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.spec-item {
  padding: 13px 16px;
  border-bottom: 1px solid var(--line);
  font-size: .88rem;
}

.spec-item:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.spec-label {
  color: var(--muted);
  font-size: .76rem;
  display: block;
  margin-bottom: 2px;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.spec-value {
  font-weight: 700;
  color: var(--text);
}

.detail-desc-section {
  margin-top: 24px;
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.detail-desc-section h3 {
  margin-bottom: .6rem;
}

.detail-desc-section p {
  color: #506078;
  line-height: 1.8;
}

.detail-contact-box {
  margin-top: 18px;
  padding: 22px;
  background: linear-gradient(140deg, rgba(180, 135, 56, .08), rgba(180, 135, 56, .02));
  border: 1px solid rgba(219, 187, 122, .3);
  border-radius: var(--radius);
}

.detail-contact-box h4 {
  color: var(--brand-dark);
  margin-bottom: .5rem;
}

.detail-contact-box p {
  color: #506078;
  font-size: .92rem;
  margin-bottom: .3rem;
}

.similar-section {
  padding: 50px 0 80px;
}

.similar-section .listing-grid {
  margin-top: 16px;
}

/* ═══════════════ ADMIN PAGE ═══════════════ */
.admin-page {
  padding: 40px 0 80px;
  min-height: 70vh;
}

/* Login */
.admin-login-wrap {
  max-width: 420px;
  margin: 60px auto;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 44px 32px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.admin-login-wrap .brand-mark {
  width: 64px;
  height: 64px;
  font-size: 1.9rem;
  margin: 0 auto 18px;
}

.admin-login-wrap h2 {
  margin-bottom: .3rem;
}

.admin-login-wrap p {
  color: var(--muted);
  margin-bottom: 1.2rem;
  font-size: .9rem;
}

.admin-login-wrap label {
  text-align: left;
  margin-bottom: 12px;
}

.admin-login-wrap .btn {
  width: 100%;
  margin-top: 10px;
}

.login-error {
  color: var(--danger);
  font-size: .86rem;
  margin-top: 10px;
  display: none;
}

/* Dashboard */
.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 26px;
  flex-wrap: wrap;
  gap: 12px;
}

.admin-header h1 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}

.admin-stat-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}

.admin-stat-card:hover {
  transform: translateY(-3px);
}

.admin-stat-card .stat-num {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--brand);
}

.admin-stat-card .stat-label {
  font-size: .82rem;
  color: var(--muted);
  margin-top: 2px;
}

/* Tabs */
.admin-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: 5px;
}

.admin-tab {
  flex: 1;
  padding: 13px;
  border: none;
  background: transparent;
  font: inherit;
  font-weight: 600;
  font-size: .9rem;
  cursor: pointer;
  border-radius: 12px;
  transition: var(--transition);
  color: var(--muted);
}

.admin-tab:hover {
  color: var(--text);
}

.admin-tab.active {
  background: #fff;
  color: var(--text);
  box-shadow: 0 2px 10px rgba(0, 0, 0, .06);
}

.admin-tab-settings {
  margin-left: auto;
  border-color: rgba(180, 134, 55, 0.5) !important;
  background: rgba(180, 134, 55, 0.08) !important;
  color: var(--brand) !important;
  font-weight: 700;
}

.admin-tab-settings:hover,
.admin-tab-settings.active {
  background: var(--brand) !important;
  color: #fff !important;
}

/* Table */
.admin-table-wrap {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th {
  text-align: left;
  padding: 15px 16px;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--muted);
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
}

.admin-table td {
  padding: 14px 16px;
  font-size: .88rem;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}

.admin-table tr:last-child td {
  border-bottom: none;
}

.admin-table tr:hover td {
  background: rgba(180, 135, 56, .03);
}

.admin-table .thumb-cell img {
  width: 60px;
  height: 42px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
}

.admin-table .actions {
  display: flex;
  gap: 6px;
}

.admin-table .actions button {
  padding: 7px 14px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff;
  font: inherit;
  font-size: .78rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.admin-table .actions .edit-btn {
  color: var(--info);
}

.admin-table .actions .edit-btn:hover {
  background: #e8f0ff;
  border-color: #c5d6f0;
}

.admin-table .actions .delete-btn {
  color: var(--danger);
}

.admin-table .actions .delete-btn:hover {
  background: #fde8ea;
  border-color: #f0c5c9;
}

/* Admin Form */
.admin-form-wrap {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
}

.admin-form-wrap h3 {
  margin-bottom: 1rem;
}

.admin-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.admin-form-grid .full {
  grid-column: 1 / -1;
}

.admin-form-grid textarea {
  resize: vertical;
  min-height: 80px;
}

.admin-form-actions {
  grid-column: 1 / -1;
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

/* ─── Upload Widget ─────────────────────────── */
.upload-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.upload-label {
  font-size: .84rem;
  font-weight: 700;
  color: #3d4d63;
  display: flex;
  align-items: center;
  gap: 6px;
}

.upload-label small {
  font-weight: 500;
  color: var(--muted);
  font-size: .76rem;
}

.upload-zone {
  position: relative;
  border: 2px dashed var(--line);
  border-radius: var(--radius);
  background: var(--bg-soft);
  min-height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
  transition: border-color .2s, background .2s;
}

.upload-zone:hover,
.upload-zone.drag-over {
  border-color: var(--brand-2);
  background: color-mix(in srgb, var(--brand) 4%, #fff);
}

.upload-zone.drag-over {
  border-style: solid;
  border-color: var(--brand);
}

/* Dosya input'u tüm zone'u kaplar — tıklanabilir */
.upload-file-input {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
  padding: 0 !important;
  border: none !important;
  background: none !important;
  box-shadow: none !important;
}

.upload-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 24px;
  text-align: center;
  color: var(--muted);
  pointer-events: none;
  z-index: 1;
}

.upload-placeholder svg {
  stroke: var(--brand-2);
  opacity: .7;
}

.upload-placeholder p {
  font-size: .88rem;
  font-weight: 600;
  color: var(--text);
  margin: 0;
}

.upload-placeholder small {
  font-size: .76rem;
}

/* Önizleme görseli */
.upload-preview {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  border-radius: calc(var(--radius) - 2px);
}

/* Kaldır butonu */
.upload-remove {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 3;
  background: rgba(15, 25, 40, .72);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 4px 10px;
  font-size: .76rem;
  font-weight: 700;
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: background .2s;
}

.upload-remove:hover {
  background: var(--danger);
}

/* Galeri çoklu yükleme */
.upload-zone-multi {
  border: 2px dashed var(--line);
  border-radius: var(--radius);
  background: var(--bg-soft);
  padding: 14px 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color .2s, background .2s;
}

.upload-zone-multi.drag-over {
  border-color: var(--brand);
  background: color-mix(in srgb, var(--brand) 4%, #fff);
}

.gallery-empty-hint {
  font-size: .82rem;
  color: var(--muted);
  margin: 0;
  padding: 6px 0;
}

/* "Fotoğraf Ekle" butonu */
.gallery-add-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  background: var(--bg);
  border: 1px solid var(--line);
  font-size: .84rem;
  font-weight: 600;
  color: var(--brand);
  cursor: pointer;
  transition: border-color .2s, background .2s;
  align-self: flex-start;
}

.gallery-add-btn:hover {
  border-color: var(--brand-2);
  background: color-mix(in srgb, var(--brand) 6%, #fff);
}

/* Gizli file input (label içinde) */
.gallery-file-hidden {
  position: absolute;
  width: 0 !important;
  height: 0 !important;
  opacity: 0;
  pointer-events: none;
}

.upload-zone-multi .upload-placeholder {
  width: 100%;
  align-self: center;
  justify-content: center;
}

.gallery-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  z-index: 1;
  pointer-events: none;
}

.gallery-thumb-wrap {
  position: relative;
  pointer-events: auto;
}

.gallery-thumb {
  width: 100px;
  height: 67px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid var(--line);
  display: block;
}

.gallery-thumb-remove {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--danger);
  color: #fff;
  border: none;
  font-size: .6rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  line-height: 1;
}

/* Galeri'de önizleme varsa placeholder gizle */
.gallery-strip:not(:empty) ~ .upload-placeholder {
  display: none;
}

/* Site Ayarları — Accordion Grupları */
.admin-settings-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.admin-setting-group {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--bg);
}

.admin-setting-group summary {
  padding: 14px 20px;
  font-weight: 700;
  font-size: .93rem;
  cursor: pointer;
  user-select: none;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--panel);
  border-bottom: 1px solid transparent;
  transition: background var(--transition);
}

.admin-setting-group[open] > summary {
  border-bottom-color: var(--line);
  background: color-mix(in srgb, var(--brand) 6%, var(--panel));
}

.admin-setting-group summary::-webkit-details-marker { display: none; }

.admin-setting-group summary::before {
  content: "▶";
  font-size: .7rem;
  color: var(--brand);
  transition: transform .2s;
  display: inline-block;
}

.admin-setting-group[open] summary::before {
  transform: rotate(90deg);
}

.admin-setting-group .setting-content {
  padding: 20px;
}

.admin-setting-group h4 {
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--muted);
  margin: 0 0 4px;
  grid-column: 1 / -1;
}


/* ═══════════════ REVEAL ═══════════════ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: .7s cubic-bezier(.22, .68, 0, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════ TOAST ═══════════════ */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  padding: 15px 24px;
  border-radius: 14px;
  font-weight: 600;
  font-size: .9rem;
  color: #fff;
  background: var(--ok);
  box-shadow: var(--shadow-lg);
  transform: translateY(120%);
  transition: transform .35s cubic-bezier(.22, .68, 0, 1);
}

.toast.show {
  transform: translateY(0);
}

.toast.error {
  background: var(--danger);
}

/* ═══════════════ CONFIRM MODAL ═══════════════ */
.confirm-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  background: rgba(15, 25, 40, .5);
  backdrop-filter: blur(4px);
}

.confirm-box {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px;
  max-width: 400px;
  width: 90%;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.confirm-box h3 {
  margin-bottom: .5rem;
}

.confirm-box p {
  color: var(--muted);
  margin-bottom: 1.2rem;
  font-size: .92rem;
}

.confirm-box .confirm-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
}

/* ═══════════════ HİZMETLERİMİZ ═══════════════ */
.services-wrapper {
  background: var(--bg);
}

.service-row {
  display: flex;
  min-height: 500px;
}

.service-row.reverse {
  flex-direction: row-reverse;
}

.service-image {
  flex: 1;
  background-size: cover;
  background-position: center;
  min-height: 350px;
}

.service-content {
  flex: 1;
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background: var(--bg);
}

.service-row:nth-child(even) .service-content {
  background: var(--panel);
}

.service-content h2 {
  font-family: 'Cinzel', serif;
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: var(--brand);
}

.service-content p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.contact-form-section {
  padding: 5rem 0;
  background: var(--panel);
}

.form-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.form-title {
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  color: var(--brand);
  margin-bottom: 1rem;
}

.form-info p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.c-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(180, 135, 56, 0.1);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
}

.kentsel-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  background: var(--bg);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.kentsel-form .full {
  grid-column: 1 / -1;
}

.kentsel-form input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--panel);
  font-family: inherit;
  transition: border var(--transition);
}

.kentsel-form input:focus {
  outline: none;
  border-color: var(--brand);
}

.cta-banner {
  position: relative;
  text-align: center;
  padding: 6rem 1rem;
  background-image: url('https://images.unsplash.com/photo-1574362848149-11496d93a7c7?auto=format&fit=crop&w=1200&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #fff;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 25, 40, 0.85);
  z-index: 1;
}

.cta-banner h2 {
  font-family: 'Cinzel', serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #fff;
}

.cta-banner p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.9;
}

/* ═══════════════ İLETİŞİM ═══════════════ */
.contact-page-wrapper {
  background: var(--bg);
}

.map-section {
  width: 100%;
  height: 450px;
  background: var(--line);
}

.contact-info-section {
  padding: 5rem 0;
  background: var(--panel);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-card h2 {
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  color: var(--brand);
  margin-bottom: 1rem;
}

.contact-form-wrap {
  background: var(--bg);
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.contact-form-wrap h2 {
  font-family: 'Cinzel', serif;
  font-size: 1.8rem;
  color: var(--brand);
  margin-bottom: 2rem;
}

/* ═══════════════ HAKKIMIZDA ═══════════════ */
.about-page-wrapper {
  background: var(--bg);
}

.about-intro {
  padding: 5rem 0;
  background: var(--panel);
}

.about-hero-image {
  width: 100%;
  height: 400px;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-lg);
  margin-bottom: 3rem;
  box-shadow: var(--shadow-lg);
}

.about-intro-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-intro-content .section-title {
  font-family: 'Cinzel', serif;
  font-size: 2.2rem;
  color: var(--brand);
  margin-bottom: 1.5rem;
}

.about-intro-content .lead-text {
  font-size: 1.25rem;
  color: var(--text);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.about-intro-content p {
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 1rem;
}

/* Vizyon Misyon */
.vision-mission-section {
  padding: 5rem 0;
  background: var(--bg);
}

.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.vm-card {
  background: var(--panel);
  padding: 3rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.vm-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.vm-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(180, 135, 56, 0.1);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
}

.vm-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--brand);
}

.vm-card p {
  color: var(--muted);
  line-height: 1.7;
}

/* Founder Section */
.founder-section {
  padding: 5rem 0;
  background: var(--panel);
}

.founder-wrap {
  display: flex;
  align-items: center;
  gap: 4rem;
  max-width: 900px;
  margin: 0 auto;
}

.founder-image {
  flex-shrink: 0;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 4px solid var(--line);
  padding: 10px;
  background: var(--bg);
}

.founder-message h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.8rem;
  color: var(--brand);
  margin-bottom: 1rem;
  font-style: italic;
}

.founder-message p {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.founder-name {
  display: block;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
}

.founder-title {
  display: block;
  color: var(--brand);
  font-size: 0.9rem;
}

/* ═══════════════ PAGE TRANSITION ═══════════════ */
@keyframes ptContentIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Tek katman, sadece opacity — compositor thread, garantili 60fps */
#page-transition {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #0d1520;
  opacity: 0;
  pointer-events: none;
  will-change: opacity;
  transition: opacity .28s ease-in;
}

/* ÇIKIŞ: overlay karardıkça solurer */
body.page-leaving #page-transition {
  opacity: 1;
  pointer-events: auto;
}

/* GİRİŞ HAZıRLIK: yeni sayfada anında karanlık, transition yok */
body.page-entering #page-transition {
  opacity: 1;
  transition: none;
  pointer-events: auto;
}

/* GİRİŞ: overlay açılır, içerik aşağıdan yükselerek belirir */
body.page-entered #page-transition {
  opacity: 0;
  transition: opacity .38s ease-out;
  pointer-events: none;
}

body.page-entered .header {
  animation: ptContentIn .45s cubic-bezier(0, 0, .2, 1) .05s both;
}
body.page-entered .hero,
body.page-entered .page-banner {
  animation: ptContentIn .5s cubic-bezier(0, 0, .2, 1) .08s both;
}
body.page-entered main > *:not(.hero):not(.page-banner) {
  animation: ptContentIn .5s cubic-bezier(0, 0, .2, 1) .12s both;
}
body.page-entered .footer {
  animation: ptContentIn .45s cubic-bezier(0, 0, .2, 1) .1s both;
}

/* ═══════════════ RESPONSIVE ═══════════════ */
@media (max-width: 1050px) {
  .filter-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .listing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .detail-hero-grid {
    grid-template-columns: 1fr;
  }

  .admin-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 760px) {
  .nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    display: grid;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
    padding: 14px 4%;
    transform: scaleY(0);
    transform-origin: top;
    opacity: 0;
    pointer-events: none;
    transition: .25s ease;
  }

  .nav.open {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

  .menu-btn {
    display: block;
  }

  .hero-content {
    padding: 50px 0 60px;
  }

  .hero h1 {
    font-size: clamp(1.7rem, 6vw, 2.6rem);
  }

  .hero-search-bar {
    flex-direction: column;
    border-radius: var(--radius);
    padding: 12px;
  }

  .hero-search-bar input {
    padding: 12px;
  }

  .hero-search-bar .btn {
    width: 100%;
    border-radius: var(--radius-sm);
  }

  .stats,
  .filter-grid,
  .listing-grid,
  .admin-form-grid,
  .footer-grid,
  .detail-thumbs,
  .detail-specs,
  .admin-stats,
  .form-container,
  .contact-grid,
  .vm-grid {
    grid-template-columns: 1fr !important;
  }

  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .detail-specs .spec-item:nth-child(odd) {
    border-right: none;
  }

  .detail-main-image {
    height: 260px;
  }

  .admin-table-wrap {
    overflow-x: auto;
  }

  .admin-table {
    min-width: 640px;
  }

  .admin-tabs {
    flex-direction: column;
  }

  .sell-cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .sell-cta-text {
    flex-direction: column;
    text-align: center;
  }

  .sell-cta-btns {
    justify-content: center;
    width: 100%;
  }

  .stats-section {
    margin-top: -24px;
  }

  .service-row,
  .service-row.reverse {
    flex-direction: column;
  }

  .service-content {
    padding: 3rem 2rem;
  }

  .kentsel-form {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .contact-form-wrap {
    padding: 2rem 1.5rem;
  }

  .founder-wrap {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .about-hero-image {
    height: 250px;
  }

  .cta-banner {
    background-attachment: scroll;
  }

  .page-banner {
    padding: 36px 0;
  }

  .admin-tab-settings {
    margin-left: 0;
  }
}

/* ─── 480px ─────────────────────────────── */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-content {
    padding: 36px 0 48px;
  }

  .hero h1 {
    font-size: clamp(1.55rem, 7vw, 2rem);
  }

  .hero-badges {
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
  }

  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .category-card {
    padding: 18px 12px;
  }

  .cat-icon {
    font-size: 1.8rem;
  }

  .listing-grid {
    grid-template-columns: 1fr;
  }

  .btn {
    padding: 12px 20px;
    font-size: .88rem;
  }

  .btn-lg {
    padding: 14px 24px;
    font-size: .95rem;
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .stat-card {
    padding: 20px 14px;
  }

  .stat-card h3 {
    font-size: 2rem;
  }

  .admin-tabs {
    flex-wrap: wrap;
  }

  .admin-tab {
    flex: 1 1 calc(50% - 4px);
    font-size: .8rem;
    padding: 10px 6px;
    text-align: center;
  }

  .admin-tab-settings {
    flex: 1 1 100%;
  }

  .admin-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .admin-stat-card {
    padding: 16px;
  }

  .admin-stat-card .stat-num {
    font-size: 1.4rem;
  }

  .admin-form-wrap {
    padding: 18px 14px;
  }

  .footer-grid {
    gap: 20px;
  }

  .footer {
    padding-top: 36px;
  }

  .page-banner h1 {
    font-size: 1.5rem;
  }

  .detail-price-big {
    font-size: 1.4rem;
  }

  .detail-main-image {
    height: 220px;
  }

  .service-content {
    padding: 2.5rem 1.25rem;
  }

  .service-content h2 {
    font-size: 1.6rem;
  }

  .about-intro-content .section-title {
    font-size: 1.6rem;
  }

  .vm-card {
    padding: 2rem 1.25rem;
  }

  .vm-card h3 {
    font-size: 1.4rem;
  }

  .cta-banner h2 {
    font-size: 1.8rem;
  }

  .contact-form-wrap {
    padding: 1.5rem 1rem;
  }

  .kentsel-form {
    padding: 1.2rem;
  }

  .section-eyebrow {
    font-size: .72rem;
  }

  .section-title {
    font-size: clamp(1.3rem, 5vw, 1.7rem);
  }

  .toast {
    left: 16px;
    right: 16px;
    bottom: 16px;
    text-align: center;
  }
}

/* ─── 360px ─────────────────────────────── */
@media (max-width: 360px) {
  .category-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 1.45rem;
  }

  .hero-search-bar {
    padding: 8px;
  }

  .admin-tab {
    flex: 1 1 100%;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .confirm-box {
    padding: 24px 18px;
  }
}