/* ================================================
   TAŞIYICILAR.COM — Aydınlık Tema (Light Mode)
   Borusan Next Inspired — Beyaz, Lacivert, Yeşil
   ================================================ */
:root {
  /* ── Ana Renkler ── */
  --white:        #FFFFFF;
  --bg:           #FFFFFF;
  --bg-2:         #F8F9FA;
  --bg-3:         #F0F2F5;
  --bg-card:      #FFFFFF;
  --navy:         #0A1628;
  --navy-mid:     #0D1E38;
  --navy-light:   #162848;
  --navy-card:    #FFFFFF;

  /* ── Yeşil Aksan (Borusan Next Neon Yeşil) ── */
  --green:        #00C896;
  --green-light:  #00E5AC;
  --green-pale:   #E6FBF5;
  --green-muted:  rgba(0,200,150,0.12);

  /* ── Eski gold değişkenleri → yeşile yönlendir ── */
  --gold:         #00C896;
  --gold-light:   #00E5AC;
  --gold-pale:    #E6FBF5;
  --gold-dark:    #00A07A;
  --gold-muted:   rgba(0,200,150,0.12);

  /* ── Metin ── */
  --text:         #0A1628;
  --text-muted:   #6B7280;
  --muted:        #6B7280;
  --cream:        #0A1628;

  /* ── Border / Shadow ── */
  --border:       rgba(10,22,40,0.10);
  --border-soft:  rgba(10,22,40,0.06);
  --shadow:       0 4px 24px rgba(10,22,40,0.08);
  --shadow-green: 0 0 32px rgba(0,200,150,0.15);

  /* ── Durum Renkleri ── */
  --success:      #00C896;
  --error:        #E53E3E;
  --red:          #E53E3E;
  --warning:      #D97706;
  --amber:        #D97706;
  --info:         #3B82F6;
  --text-dim:     rgba(10,22,40,0.25);

  /* ── Layout ── */
  --radius:       6px;
  --radius-sm:    4px;
  --radius-lg:    10px;
  --transition:   .3s cubic-bezier(.4,0,.2,1);

  /* ── Fontlar ── */
  --font-head:    'Inter', 'Montserrat', sans-serif;
  --font-accent:  'Inter', 'Montserrat', sans-serif;
  --font-body:    'Inter', 'Montserrat', sans-serif;
  --font-mono:    'Inter', 'Montserrat', sans-serif;
  --font-serif:   'Inter', 'Montserrat', sans-serif;
  --font-script:  'Inter', 'Montserrat', sans-serif;
}

/* Base font */
body { font-family: var(--font-body); }

/* RESET */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--navy);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
}
a { color: var(--navy); text-decoration: none; transition: color var(--transition); }
p { color: var(--navy); }
span { color: inherit; }
a:hover { color: var(--green); }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; font-family: inherit; }

/* INPUTS */
input,textarea,select {
  font-family: var(--font-body);
  background: #FFFFFF;
  border: 1.5px solid #D1D5DB;
  color: var(--navy);
  padding: .85rem 1rem;
  width: 100%;
  font-size: .95rem;
  outline: none;
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition);
}
input:focus,textarea:focus,select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(0,200,150,0.12);
  background: #FFFFFF;
}
input::placeholder,textarea::placeholder { color: #9CA3AF; }
select option { background: #FFFFFF; color: var(--navy); }

/* Canvas bg — disable in light mode */
#canvas-bg { display: none; }
.mesh { display: none; }
.grain { display: none; }

/* TYPOGRAPHY */
h1,h2,h3,h4,h5 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy) !important;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .5rem;
  line-height: 1.1;
}
.section-title strong { font-weight: 800; color: var(--green); }
.section-sub { color: var(--text-muted); font-size: 1rem; margin-bottom: 2.5rem; line-height: 1.75; }

/* LAYOUT */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.page-main { min-height: 70vh; position: relative; z-index: 2; padding-top: 0; background: var(--bg); }

.page-hero {
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
  padding-top: 0;
  padding-bottom: 2rem;
}
.page-hero h1 { color: var(--navy) !important; }
.page-hero p { color: var(--text-muted) !important; }

/* TOP BAR */
.top-bar {
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 8px 0;
  color: rgba(255,255,255,0.6);
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.3px;
  z-index: 201;
  position: relative;
}
.top-bar-highlight { color: var(--green); }
.top-bar-text { opacity: 0.75; }

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: #FFFFFF;
  padding: 16px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  transition: all 0.4s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 1px 8px rgba(10,22,40,0.06);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--border);
  padding: 12px 56px;
  box-shadow: 0 2px 16px rgba(10,22,40,0.08);
}
.nav-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav-logo {
  display: flex; align-items: center; gap: 14px; text-decoration: none;
}
.logo-emblem { width: 36px; height: 36px; }
.logo-emblem svg { width: 100%; height: 100%; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-main {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--navy);
  text-transform: uppercase;
}
.logo-main em { font-style: normal; color: var(--green); }
.logo-sub { font-family: var(--font-mono); font-size: 9px; color: var(--text-muted); letter-spacing: 2px; text-transform: uppercase; margin-top: 3px; }

/* Nav links */
.nav-links {
  display: flex; align-items: center; gap: 0.25rem;
}
.nav-link {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.25s;
  padding: .5rem .85rem;
  position: relative;
  font-weight: 500;
  border-radius: var(--radius-sm);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: .85rem; right: .85rem;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transition: transform 0.25s;
  border-radius: 2px;
}
.nav-link:hover { color: var(--navy); background: var(--bg-2); }
.nav-link:hover::after { transform: scaleX(1); }
.nav-cta-sm {
  color: var(--green) !important;
  border: 1.5px solid rgba(0,200,150,0.4);
  border-radius: var(--radius-sm);
}
.nav-cta-sm:hover { background: rgba(0,200,150,0.06); }
.nav-icon-link { font-size: 1.2rem; padding: .5rem; position: relative; }
.badge-count {
  position: absolute; top: 2px; right: 2px;
  background: var(--red); color: #fff;
  font-size: .6rem; font-weight: 700;
  border-radius: 50%; width: 14px; height: 14px;
  display: flex; align-items: center; justify-content: center;
}

/* Nav right */
.nav-right { display: flex; gap: 12px; align-items: center; }
.nav-login {
  font-family: var(--font-body); font-size: 14px;
  color: var(--text-muted);
  text-decoration: none; transition: color 0.25s; font-weight: 500;
}
.nav-login:hover { color: var(--green); }
.nav-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: transparent;
  border: 1.5px solid rgba(0,200,150,0.4);
  color: var(--green);
  border-radius: 20px;
  font-family: var(--font-body);
  font-size: 14px;
  text-decoration: none;
  transition: all 0.25s ease;
  font-weight: 500;
}
.nav-btn-outline:hover { background: rgba(0,200,150,0.08); border-color: var(--green); }

/* User dropdown */
.nav-user-menu { position: relative; }
.nav-user-btn {
  display: flex; align-items: center; gap: .5rem;
  background: rgba(0,200,150,0.06);
  border: 1.5px solid rgba(0,200,150,0.25);
  color: var(--navy);
  padding: .4rem .9rem .4rem .5rem;
  font-family: var(--font-body);
  font-size: 13px;
  cursor: pointer; transition: all var(--transition);
  border-radius: var(--radius-sm);
}
.nav-user-btn:hover { border-color: var(--green); background: rgba(0,200,150,0.1); }
.user-avatar-sm {
  width: 26px; height: 26px;
  background: linear-gradient(135deg, var(--green), var(--gold-dark));
  color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .78rem;
}
.chevron { transition: transform var(--transition); font-size: .7rem; color: var(--text-muted); }
.user-dropdown {
  position: absolute; top: calc(100% + 8px); right: 0;
  background: #FFFFFF;
  border: 1px solid var(--border);
  min-width: 200px; padding: .5rem;
  display: none;
  box-shadow: 0 8px 32px rgba(10,22,40,0.12);
  z-index: 999;
  border-radius: var(--radius);
}
.user-dropdown.show { display: block; animation: dropIn .2s ease; }
@keyframes dropIn { from{opacity:0;transform:translateY(-8px)} to{opacity:1;transform:translateY(0)} }
.user-dropdown a {
  display: flex; gap: .5rem; align-items: center;
  padding: .65rem .9rem;
  color: var(--text-muted); font-family: var(--font-body);
  font-size: 14px;
  text-decoration: none; transition: all var(--transition);
  border-radius: var(--radius-sm);
}
.user-dropdown a:hover { background: var(--bg-2); color: var(--navy); }
.user-dropdown hr { border: none; border-top: 1px solid var(--border); margin: .4rem 0; }
.logout-link { color: var(--red) !important; }
.logout-link:hover { background: rgba(229,62,62,0.06) !important; color: var(--red) !important; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: .4rem; cursor: pointer;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--navy); border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav-overlay {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,.4); z-index: 198;
}
.mobile-nav-overlay.show { display: block; }

/* BANNERS */
.banner {
  display: block; width: 100%;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  overflow: hidden; text-align: center; position: relative; z-index: 2;
}
.banner-banner_top { min-height: 60px; }
.banner-banner_sidebar { border: 1px solid var(--border); margin-bottom: 1.5rem; min-height: 180px; border-radius: var(--radius); }
.banner-banner_listing { border: 1px solid var(--border); min-height: 80px; margin: 1rem 0; border-radius: var(--radius); }
.banner img { width: 100%; object-fit: cover; }
.banner-text { display: flex; align-items: center; justify-content: center; min-height: inherit; color: var(--green); font-size: 1rem; font-weight: 600; font-family: var(--font-head); letter-spacing: 1px; text-transform: uppercase; border: 1.5px dashed rgba(0,200,150,0.4); margin: 8px; border-radius: var(--radius); background: var(--green-pale); }

/* SECTION COMMONS */
.section { padding: 5rem 0; }
.section-header { text-align: center; margin-bottom: 3rem; }
.sec-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-size: 12px;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--green); margin-bottom: 16px; font-weight: 600;
}
.sec-label::before {
  content: ''; width: 28px; height: 2px;
  background: var(--green); border-radius: 2px;
}
.sec-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700; line-height: 1.1;
  color: var(--navy) !important; margin-bottom: 12px;
}
.sec-title strong { font-weight: 800; color: var(--green); }
.sec-sub { font-size: 18px; font-weight: 400; color: var(--text-muted); line-height: 1.75; max-width: 540px; }

/* HERO */
.hero {
  display: flex; align-items: flex-start; justify-content: center;
  text-align: center;
  padding: 72px 1.5rem 1.5rem;
  position: relative; z-index: 2; overflow: hidden;
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(0,200,150,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.hero-line-top { display: none; }
.free-badge {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1.5px solid rgba(0,200,150,0.35);
  background: var(--green-pale);
  padding: 6px 18px; border-radius: 24px;
  font-family: var(--font-body); font-size: 12px;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--green); margin-bottom: 2rem; font-weight: 600;
}
.free-badge-dot {
  width: 6px; height: 6px; background: var(--green); border-radius: 50%;
  box-shadow: 0 0 8px rgba(0,200,150,0.6);
}
.hero-script {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.5rem); color: var(--green);
  margin-bottom: -10px; position: relative; z-index: 1; font-weight: 300;
}
.hero-title {
  position: relative; z-index: 2;
  margin-bottom: 1.5rem; line-height: 1.1;
  opacity: 0; animation: rise 0.9s 0.3s cubic-bezier(.4,0,.2,1) forwards;
}
.hero-title-main {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5.5vw, 5rem);
  font-weight: 800; color: var(--navy);
  letter-spacing: -1.5px;
}
.hero-title-sub {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5.5vw, 5rem);
  font-weight: 300; color: var(--navy);
  letter-spacing: -1.5px;
}
.hero-title-gold { color: var(--green); font-style: normal; font-weight: 800; }
.hero-desc {
  color: var(--text-muted); font-size: 19px; font-weight: 400;
  max-width: 580px; margin: 0 auto 3rem;
  line-height: 1.65; font-family: var(--font-body);
  opacity: 0; animation: rise 0.9s 0.5s cubic-bezier(.4,0,.2,1) forwards;
}
.hero-cta {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1.5rem;
  opacity: 0; animation: rise 0.9s 0.65s cubic-bezier(.4,0,.2,1) forwards;
}
.btn-hero-solid {
  display: inline-block; background: var(--green); color: #fff;
  font-family: var(--font-body); font-weight: 700; font-size: 16px;
  padding: 16px 40px; text-decoration: none; transition: all 0.3s;
  border-radius: var(--radius);
}
.btn-hero-solid:hover { background: var(--green-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,200,150,0.3); color: #fff !important; }
.btn-hero-outline {
  display: inline-block; background: transparent; color: var(--navy);
  border: 1.5px solid rgba(10,22,40,0.2);
  font-family: var(--font-body); font-weight: 600; font-size: 16px;
  padding: 16px 40px; text-decoration: none; transition: all 0.3s;
  border-radius: var(--radius);
}
.btn-hero-outline:hover { color: var(--green); border-color: rgba(0,200,150,0.5); background: var(--green-pale); }

.stats-row {
  display: flex; justify-content: center; align-items: stretch;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap; width: 100%; max-width: 900px; margin: 0 auto;
  opacity: 0; animation: rise 0.9s 0.8s cubic-bezier(.4,0,.2,1) forwards;
}
.stat-item {
  padding: 2rem 3rem; flex: 1; text-align: center;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  display: block; font-family: var(--font-head);
  font-size: 2.2rem; font-weight: 800; color: var(--green);
  line-height: 1; margin-bottom: 6px;
}
.stat-label {
  font-family: var(--font-body); font-size: 12px;
  letter-spacing: 1.5px; color: var(--text-muted); text-transform: uppercase; font-weight: 500;
}

/* TELEGRAM BANNER */
.tg-banner {
  position: relative; overflow: hidden;
  display: flex; align-items: center; gap: 1.25rem;
  width: 100%; max-width: 860px; margin: 0 auto;
  padding: 1.5rem 2rem;
  background: linear-gradient(135deg, #0d1b2e 0%, #0a2540 60%, #0d2d4a 100%);
  border-radius: 18px;
  border: 1px solid rgba(41,182,246,0.25);
  box-shadow: 0 8px 40px rgba(0,0,0,0.13), 0 0 0 1px rgba(41,182,246,0.08);
  opacity: 0; animation: rise 0.9s 0.8s cubic-bezier(.4,0,.2,1) forwards;
}
.tg-banner__glow {
  position: absolute; top: -60px; right: -60px;
  width: 220px; height: 220px; border-radius: 50%;
  background: radial-gradient(circle, rgba(41,182,246,0.22) 0%, transparent 70%);
  pointer-events: none;
}
.tg-banner__icon {
  flex-shrink: 0;
  width: 54px; height: 54px;
  background: rgba(41,182,246,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(41,182,246,0.3);
}
.tg-banner__icon svg { width: 30px; height: 30px; }
.tg-banner__body { flex: 1; min-width: 0; }
.tg-banner__label {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 2px; text-transform: uppercase;
  color: #29B6F6; margin: 0 0 4px; font-weight: 600;
}
.tg-banner__title {
  font-family: var(--font-head); font-size: 1.15rem; font-weight: 700;
  color: #fff; margin: 0 0 4px; line-height: 1.3;
}
.tg-banner__sub {
  font-size: 0.82rem; color: rgba(255,255,255,0.55); margin: 0; line-height: 1.5;
}
.tg-banner__btn {
  position: relative; flex-shrink: 0; overflow: hidden;
  display: inline-flex; align-items: center;
  background: linear-gradient(135deg, #29B6F6 0%, #039BE5 100%);
  color: #fff; font-weight: 700; font-size: 0.88rem;
  padding: 0.7rem 1.4rem; border-radius: 50px;
  text-decoration: none; white-space: nowrap;
  box-shadow: 0 4px 18px rgba(41,182,246,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.tg-banner__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(41,182,246,0.55);
  color: #fff;
}
.tg-banner__btn-inner { display: flex; align-items: center; gap: 7px; position: relative; z-index: 1; }
.tg-banner__btn-shine {
  position: absolute; top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-20deg);
  animation: tg-shine 2.8s 1.5s ease-in-out infinite;
}
@keyframes tg-shine {
  0%   { left: -100%; }
  40%  { left: 150%;  }
  100% { left: 150%;  }
}
@media (max-width: 600px) {
  .tg-banner { flex-direction: column; text-align: center; padding: 1.5rem 1.25rem; }
  .tg-banner__glow { display: none; }
  .tg-banner__btn { width: 100%; justify-content: center; }
}

/* BUTTONS */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px;
  background: var(--green); color: #fff;
  font-family: var(--font-body); font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s; position: relative; overflow: hidden;
  border: none; cursor: pointer; border-radius: var(--radius);
}
.btn-primary::after {
  content: ''; position: absolute; inset: 0;
  background: var(--green-light); transform: scaleX(0);
  transform-origin: right; transition: transform 0.4s;
  border-radius: var(--radius); z-index: 1;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,200,150,0.3); color: #fff; }
.btn-primary:hover::after { transform: scaleX(1); transform-origin: left; }
.btn-primary span, .btn-primary > *, .btn-primary * { position: relative; z-index: 2; }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 30px;
  border: 1.5px solid rgba(10,22,40,0.15); color: var(--navy);
  font-family: var(--font-body); font-size: 14px;
  font-weight: 600;
  text-decoration: none; transition: all 0.3s;
  background: transparent; cursor: pointer; border-radius: var(--radius);
}
.btn-secondary:hover { border-color: var(--green); color: var(--green); background: var(--green-pale); }

.btn-outline {
  display: inline-flex; align-items: center; gap: .4rem;
  background: transparent; color: var(--text-muted);
  font-family: var(--font-body); font-size: 13px;
  font-weight: 500; padding: .55rem 1.2rem;
  border: 1.5px solid var(--border);
  transition: all 0.3s; text-decoration: none; cursor: pointer;
  border-radius: var(--radius);
}
.btn-outline:hover { border-color: var(--green); color: var(--green); background: var(--green-pale); }

.btn-gold {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 26px;
  background: transparent; border: 1.5px solid var(--green);
  color: var(--green); font-family: var(--font-body);
  font-size: 13px; font-weight: 600;
  text-decoration: none; transition: all 0.3s;
  position: relative; overflow: hidden; border-radius: var(--radius);
}
.btn-gold::before {
  content: ''; position: absolute; inset: 0;
  background: var(--green); transform: translateX(-101%);
  transition: transform 0.4s cubic-bezier(.4,0,.2,1);
  z-index: 1;
}
.btn-gold:hover { color: #fff; }
.btn-gold:hover::before { transform: translateX(0); }
.btn-gold span, .btn-gold * { position: relative; z-index: 2; }

.btn-sm {
  display: inline-flex; align-items: center; gap: .2rem;
  background: rgba(0,200,150,0.08);
  border: 1.5px solid rgba(0,200,150,0.3);
  color: var(--green); padding: .35rem .9rem;
  font-family: var(--font-body); font-size: .78rem;
  font-weight: 600; cursor: pointer; transition: all var(--transition);
  text-decoration: none; border-radius: var(--radius);
}
.btn-sm:hover { background: var(--green); color: #fff; border-color: var(--green); }
.w-full { width: 100%; justify-content: center; }

/* CATEGORIES — Modern Borusan Next Style */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  background: transparent;
}
.cat-card {
  background: #FFFFFF;
  padding: 2rem 1.25rem 1.5rem;
  text-align: center; cursor: pointer;
  transition: all .25s cubic-bezier(.4,0,.2,1);
  text-decoration: none; display: flex; flex-direction: column;
  align-items: center; gap: .65rem;
  position: relative; overflow: hidden;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 1px 6px rgba(10,22,40,0.04);
}
.cat-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--green), var(--green-light));
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  border-radius: 14px 14px 0 0;
}
.cat-card::after { display: none; }
.cat-card:hover {
  border-color: rgba(0,200,150,0.45);
  box-shadow: 0 8px 28px rgba(0,200,150,0.12);
  transform: translateY(-4px);
}
.cat-card * { position: relative; z-index: 2; }
.cat-card:hover::before { transform: scaleX(1); }
.cat-card.selected {
  border-color: var(--green);
  background: linear-gradient(160deg, var(--green-pale) 0%, #FFFFFF 100%);
}
.cat-card.selected::before { transform: scaleX(1); }
.cat-icon {
  font-size: 2rem; line-height: 1;
  width: 52px; height: 52px;
  background: var(--green-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.cat-name {
  font-family: var(--font-head); font-size: .88rem; font-weight: 700;
  color: var(--navy); line-height: 1.3;
}
.cat-count {
  font-family: var(--font-body); font-size: .72rem;
  color: var(--text-muted); font-weight: 500;
}

/* LISTING CARDS */
.listings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
  background: transparent;
}
.listing-card {
  background: #FFFFFF;
  border: 1.5px solid var(--border);
  transition: all var(--transition);
  position: relative; display: flex; flex-direction: column;
  overflow: hidden; border-radius: var(--radius-lg);
}
.listing-card::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--green);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s cubic-bezier(.4,0,.2,1);
}
.listing-card:hover { border-color: rgba(0,200,150,0.35); box-shadow: 0 6px 24px rgba(0,200,150,0.08); transform: translateY(-3px); }
.listing-card * { position: relative; z-index: 2; }
.listing-card:hover::after { transform: scaleX(1); }
.listing-img { width: 100%; height: 180px; object-fit: cover; background: var(--bg-2); }
.listing-img-placeholder {
  width: 100%; height: 180px;
  background: linear-gradient(135deg, var(--bg-2), var(--bg-3));
  display: flex; align-items: center; justify-content: center; font-size: 3rem;
}
.listing-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; gap: .5rem; }
.listing-cat {
  display: inline-flex; align-items: center; gap: .3rem;
  background: var(--green-pale); border: 1px solid rgba(0,200,150,0.25);
  color: var(--green); font-family: var(--font-body);
  font-size: .72rem; font-weight: 600; padding: .2rem .75rem;
  width: fit-content; text-transform: uppercase; border-radius: var(--radius-sm);
}
.listing-title {
  font-family: var(--font-head); font-size: 1.05rem;
  font-weight: 700; color: var(--navy); line-height: 1.35;
  display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
}
.listing-meta { display: flex; flex-wrap: wrap; gap: .5rem; align-items: center; margin-top: auto; }
.meta-chip {
  font-family: var(--font-body); font-size: .72rem; color: var(--text-muted);
  background: var(--bg-2); padding: .2rem .65rem;
  border: 1px solid var(--border); font-weight: 500;
  border-radius: var(--radius-sm);
}
.listing-footer {
  display: flex; justify-content: space-between; align-items: center;
  padding: .75rem 1.25rem; border-top: 1px solid var(--border);
}
.listing-date { font-family: var(--font-body); font-size: .72rem; color: var(--text-muted); }
.listing-actions { display: flex; gap: .5rem; align-items: center; }
.fav-btn { background: none; border: none; font-size: 1.1rem; cursor: pointer; transition: transform var(--transition); padding: .2rem; line-height: 1; }
.fav-btn:hover { transform: scale(1.3); }
.fav-btn.active { animation: heartPop .3s ease; }
@keyframes heartPop { 0%{transform:scale(1)} 50%{transform:scale(1.4)} 100%{transform:scale(1)} }
.badge-premium {
  position: absolute; top: .75rem; left: .75rem;
  background: var(--green); color: #fff;
  font-family: var(--font-body); font-size: .65rem; font-weight: 700;
  padding: .2rem .75rem; text-transform: uppercase;
  border-radius: var(--radius-sm);
}

/* FILTER BAR */
.filter-bar {
  background: #FFFFFF; border: 1.5px solid var(--border);
  padding: 1.5rem; margin-bottom: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.filter-form {
  display: grid; grid-template-columns: 2fr 1fr 1fr auto;
  gap: .75rem; align-items: end;
}
.filter-label { font-family: var(--font-body); font-size: .78rem; font-weight: 600; color: var(--navy); margin-bottom: .4rem; display: block; text-transform: uppercase; letter-spacing: 0.5px; }
.filter-field { display: flex; flex-direction: column; }

/* ALERTS */
.alert { padding: 1rem 1.4rem; font-size: 15px; margin-bottom: 1.2rem; border: 1.5px solid; border-radius: var(--radius); font-family: var(--font-body); font-weight: 500; }
.alert-error { background: rgba(229,62,62,0.06); border-color: rgba(229,62,62,0.3); color: #C53030; }
.alert-success { background: rgba(0,200,150,0.06); border-color: rgba(0,200,150,0.3); color: var(--gold-dark); }
.alert-info { background: rgba(59,130,246,0.06); border-color: rgba(59,130,246,0.3); color: #2563EB; }
.alert-warning { background: rgba(217,119,6,0.06); border-color: rgba(217,119,6,0.3); color: #B45309; }

/* FORMS */
.form-card {
  background: #FFFFFF; border: 1.5px solid var(--border);
  padding: 2.5rem; max-width: 520px; margin: 0 auto;
  position: relative; border-radius: var(--radius-lg);
  box-shadow: 0 4px 24px rgba(10,22,40,0.08);
}
.form-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: var(--green);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.form-title {
  font-family: var(--font-head); font-size: 1.8rem;
  font-weight: 700; text-align: center; margin-bottom: .4rem; color: var(--navy);
}
.form-subtitle { text-align: center; color: var(--text-muted); font-family: var(--font-body); font-size: .85rem; margin-bottom: 2rem; }
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-family: var(--font-body); font-size: .8rem; font-weight: 600; color: var(--navy); margin-bottom: .45rem; text-transform: uppercase; letter-spacing: 0.5px; }
.form-label.required::after { content: ' *'; color: var(--red); }
.form-error { color: var(--red); font-family: var(--font-body); font-size: .78rem; margin-top: .35rem; font-weight: 500; }
.form-hint { color: var(--text-muted); font-family: var(--font-body); font-size: .78rem; margin-top: .3rem; }
.form-divider {
  text-align: center; color: var(--text-muted);
  font-family: var(--font-body); font-size: .8rem; margin: 1.2rem 0;
  position: relative;
}
.form-divider::before,.form-divider::after { content: ''; position: absolute; top: 50%; width: 42%; height: 1px; background: var(--border); }
.form-divider::before { left: 0; } .form-divider::after { right: 0; }

/* Role selector */
.role-selector { display: grid; grid-template-columns: repeat(3, 1fr); gap: .75rem; }
.role-option { display: none; }
.role-label {
  display: flex; flex-direction: column; align-items: center; gap: .4rem;
  padding: .9rem .5rem; border: 1.5px solid var(--border);
  background: var(--bg-2); cursor: pointer;
  transition: all var(--transition); text-align: center;
  font-family: var(--font-body); font-size: .8rem; color: var(--text-muted); font-weight: 500;
  border-radius: var(--radius);
}
.role-label:hover { border-color: var(--green); color: var(--green); background: var(--green-pale); }
.role-option:checked + .role-label { border-color: var(--green); background: var(--green-pale); color: var(--green); }
.role-label .role-icon { font-size: 1.4rem; }

/* Cat selector */
.cat-selector-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: .75rem; margin-bottom: 1.5rem; }
.cat-select-btn {
  background: var(--bg-2); border: 1.5px solid var(--border);
  padding: 1rem .5rem; text-align: center; cursor: pointer;
  transition: all var(--transition); font-family: var(--font-body);
  color: var(--text-muted); font-size: .78rem; font-weight: 500;
  display: flex; flex-direction: column; align-items: center; gap: .35rem;
  border-radius: var(--radius);
}
.cat-select-btn:hover { border-color: var(--green); color: var(--green); background: var(--green-pale); }
.cat-select-btn.active { border-color: var(--green); background: var(--green-pale); color: var(--green); }
.cat-select-btn .btn-icon { font-size: 1.4rem; }

/* BADGES */
.badge { display: inline-flex; align-items: center; padding: .2rem .75rem; font-family: var(--font-body); font-size: .72rem; font-weight: 600; border-radius: var(--radius-sm); }
.badge-servisci, .badge-arac-sahibi { background: rgba(59,130,246,0.1); color: #2563EB; border: 1.5px solid rgba(59,130,246,0.25); }
.badge-sofor { background: rgba(0,200,150,0.1); color: var(--gold-dark); border: 1.5px solid rgba(0,200,150,0.25); }
.badge-hostes { background: rgba(217,119,6,0.1); color: var(--amber); border: 1.5px solid rgba(217,119,6,0.25); }

/* Tags */
.tag { display: inline-block; font-family: var(--font-body); font-size: 11px; padding: 3px 10px; text-transform: uppercase; font-weight: 600; border-radius: var(--radius-sm); }
.tag-bos   { background:rgba(0,200,150,0.1); color:var(--gold-dark); border:1.5px solid rgba(0,200,150,0.25); }
.tag-kismi { background:rgba(217,119,6,0.1); color:var(--amber); border:1.5px solid rgba(217,119,6,0.25); }
.tag-dolu  { background:rgba(229,62,62,0.1); color:var(--red);   border:1.5px solid rgba(229,62,62,0.25); }

/* PAGINATION */
.pagination { display: flex; justify-content: center; gap: .4rem; margin-top: 2.5rem; flex-wrap: wrap; }
.page-btn {
  background: #FFFFFF; border: 1.5px solid var(--border);
  color: var(--text-muted); padding: .5rem 1rem;
  font-family: var(--font-body); font-size: .82rem; font-weight: 500;
  cursor: pointer; transition: all var(--transition);
  text-decoration: none; display: inline-flex; align-items: center;
  border-radius: var(--radius);
}
.page-btn:hover,.page-btn.active { border-color: var(--green); color: var(--green); background: var(--green-pale); }
.page-btn.active { font-weight: 700; }

/* MESSAGES */
.msg-layout { display: grid; grid-template-columns: 280px 1fr; gap: 1.25rem; height: calc(100vh - 200px); overflow: hidden; }
.msg-sidebar { background: #FFFFFF; border: 1.5px solid var(--border); overflow-y: auto; border-radius: var(--radius-lg); }
.msg-thread-item {
  padding: 1rem 1.25rem; border-bottom: 1px solid var(--border);
  cursor: pointer; transition: all var(--transition);
  display: flex; gap: .75rem; align-items: flex-start;
}
.msg-thread-item:hover,.msg-thread-item.active { background: var(--bg-2); }
.msg-thread-item.unread .msg-thread-name { font-weight: 700; color: var(--navy); }
.msg-thread-avatar {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--green), var(--gold-dark));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: #fff; font-size: .85rem; flex-shrink: 0;
}
.msg-thread-meta { flex: 1; min-width: 0; }
.msg-thread-name { font-family: var(--font-head); font-size: .95rem; font-weight: 600; color: var(--navy); }
.msg-thread-preview { font-family: var(--font-body); font-size: .78rem; color: var(--text-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.msg-thread-time { font-family: var(--font-body); font-size: .7rem; color: var(--text-muted); white-space: nowrap; }
.msg-main { background: #FFFFFF; border: 1.5px solid var(--border); display: flex; flex-direction: column; min-height: 0; border-radius: var(--radius-lg); }
.msg-header { padding: 1rem 1.25rem; border-bottom: 1px solid var(--border); }
.msg-header h3 { font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--navy); }
.msg-body { flex: 1; overflow-y: auto; padding: 1.25rem; display: flex; flex-direction: column; gap: .75rem; min-height: 0; }
.msg-bubble {
  max-width: 70%; padding: .75rem 1rem; font-size: .92rem; line-height: 1.55;
  border-radius: var(--radius);
}
.msg-bubble-in { background: var(--bg-2); border: 1px solid var(--border); align-self: flex-start; color: var(--navy); }
.msg-bubble-out { background: rgba(0,200,150,0.1); border: 1.5px solid rgba(0,200,150,0.2); align-self: flex-end; color: var(--navy); }
.msg-time { font-family: var(--font-body); font-size: .68rem; color: var(--text-muted); margin-top: .3rem; }
.msg-footer { display: flex; gap: 0; border-top: 1px solid var(--border); }
.msg-footer .msg-input { border: none; background: transparent; padding: 1rem 1.25rem; border-right: 1px solid var(--border); width: 100%; color: var(--navy); font-family: var(--font-body); font-size: .9rem; resize: none; outline: none; }
.msg-footer .msg-input:focus { box-shadow: none; }
.msg-footer .msg-input::placeholder { color: var(--text-muted); }
.msg-footer .btn-primary { background: var(--green); color: #fff; border: none; padding: 0 1.5rem; font-family: var(--font-body); font-size: 13px; font-weight: 600; cursor: pointer; transition: background 0.3s; white-space: nowrap; }
.msg-footer .btn-primary:hover { background: var(--green-light); }

/* PRICING */
.pricing-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 860px; margin: 0 auto; }
.pricing-card { background: #FFFFFF; border: 1.5px solid var(--border); padding: 2.5rem 2rem; position: relative; transition: all 0.4s; border-radius: var(--radius-lg); }
.pricing-card.featured { border-color: var(--green); border-top: 3px solid var(--green); }
.pricing-card:hover { border-color: rgba(0,200,150,0.4); box-shadow: 0 8px 32px rgba(0,200,150,0.1); transform: translateY(-4px); }
.pricing-price { font-family: var(--font-head); font-size: 3.5rem; font-weight: 800; color: var(--navy); line-height: 1; margin-bottom: .25rem; }
.pricing-period { font-family: var(--font-body); font-size: .82rem; color: var(--text-muted); font-weight: 500; margin-bottom: 2rem; text-transform: uppercase; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: .75rem; margin-bottom: 2rem; }
.pricing-features li { font-size: 16px; font-weight: 400; color: var(--navy); display: flex; align-items: center; gap: .6rem; }
.pricing-features li::before { content: 'checkmark'; color: var(--green); font-size: .9rem; flex-shrink: 0; font-weight: 700; }

/* PROFILE */
.profile-grid { display: grid; grid-template-columns: 300px 1fr; gap: 20px; margin-top: 2rem; align-items: start; }
.profile-sidebar { background: #FFFFFF; padding: 2rem 1.5rem; border: 1.5px solid var(--border); border-radius: var(--radius-lg); }
.profile-avatar {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--green), var(--gold-dark));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 2rem; font-weight: 700; color: #fff;
  margin: 0 auto 1.25rem;
}
.profile-name { font-family: var(--font-head); font-size: 1.4rem; font-weight: 700; text-align: center; color: var(--navy); margin-bottom: .25rem; }
.profile-role { font-family: var(--font-body); font-size: .78rem; color: var(--text-muted); text-align: center; text-transform: uppercase; margin-bottom: 1.5rem; font-weight: 500; }
.profile-main { background: #FFFFFF; padding: 2rem 1.5rem; border: 1.5px solid var(--border); border-radius: var(--radius-lg); }
.profile-cards-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; align-items: start; }
.profile-stats-row { margin-left: auto; display: flex; gap: 1.5rem; flex-shrink: 0; }

/* Empty state */
.empty-state { text-align: center; padding: 4rem 2rem; }
.empty-icon { font-size: 3.5rem; margin-bottom: 1rem; }
.empty-state h3 { font-family: var(--font-head); font-size: 1.4rem; color: var(--navy); margin-bottom: .5rem; font-weight: 700; }
.empty-state p { color: var(--text-muted); font-family: var(--font-body); font-size: .9rem; margin-bottom: 1.5rem; }

/* Tabs */
.tabs { display: flex; border-bottom: 2px solid var(--border); margin-bottom: 2rem; }
.tab-btn {
  padding: .75rem 1.5rem; background: none; border: none;
  font-family: var(--font-body); font-size: .85rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-muted);
  cursor: pointer; transition: all var(--transition);
  border-bottom: 2px solid transparent; margin-bottom: -2px;
}
.tab-btn:hover { color: var(--navy); }
.tab-btn.active { color: var(--green); border-bottom-color: var(--green); }

/* Toast */
.toast-container { position: fixed; bottom: 100px; right: 1.5rem; z-index: 9999; display: flex; flex-direction: column; gap: .5rem; }
.toast {
  background: #FFFFFF; border: 1.5px solid var(--border);
  padding: .9rem 1.25rem; min-width: 260px;
  font-family: var(--font-body); font-size: .85rem; font-weight: 500;
  animation: toast-in .3s ease;
  display: flex; align-items: center; gap: .75rem;
  box-shadow: 0 4px 20px rgba(10,22,40,0.12); color: var(--navy);
  border-radius: var(--radius);
}
@keyframes toast-in { from{opacity:0;transform:translateX(20px)} to{opacity:1;transform:translateX(0)} }
.toast-success { border-color: rgba(0,200,150,0.4); }
.toast-error { border-color: rgba(229,62,62,0.4); }

/* FOOTER */
.site-footer {
  background: var(--navy);
  border-top: 3px solid var(--green);
  padding: 3.5rem 56px 2rem;
  position: relative; z-index: 2;
  margin-bottom: 0;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 3rem;
}
.footer-brand { display: flex; flex-direction: column; }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: .75rem; }
.footer-desc { color: rgba(255,255,255,0.45); font-size: .88rem; font-weight: 400; line-height: 1.7; margin-top: .5rem; }
.footer-links { display: grid; gap: .5rem; }
.footer-col h4 {
  font-family: var(--font-body); font-size: .78rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px;
  color: rgba(255,255,255,0.35); margin-bottom: 1rem;
}
.footer-col a {
  display: block; font-family: var(--font-body); font-size: .82rem;
  font-weight: 400; color: rgba(255,255,255,0.4);
  text-decoration: none; transition: color 0.3s;
  margin-bottom: .5rem;
}
.footer-col a:hover { color: var(--green); }
.footer-col p { color: rgba(255,255,255,0.35); font-size: .82rem; }
.footer-bottom {
  max-width: 1200px; margin: 2rem auto 0;
  padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-family: var(--font-body); font-size: .78rem; color: rgba(255,255,255,0.2); }
.footer-phase { color: var(--green); opacity: 0.7; }

/* MOBILE BOTTOM NAV */
.bottom-nav {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 300;
  background: #FFFFFF;
  border-top: 1.5px solid var(--border);
  padding: .5rem 0;
  justify-content: space-around; align-items: center;
  box-shadow: 0 -4px 16px rgba(10,22,40,0.08);
}
.bottom-nav-item {
  display: flex; flex-direction: column; align-items: center; gap: .2rem;
  text-decoration: none; color: var(--text-muted);
  font-family: var(--font-body); font-size: .62rem; font-weight: 500;
  text-transform: uppercase; min-width: 48px; padding: .25rem;
  transition: color var(--transition); position: relative;
}
.bottom-nav-item.active { color: var(--green); }
.bottom-nav-icon { font-size: 1.2rem; line-height: 1; }
.bottom-nav-center {
  background: var(--green); color: #fff !important;
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-top: -12px; box-shadow: 0 4px 20px rgba(0,200,150,0.4);
}
.bottom-nav-icon-plus { font-size: 1.5rem; font-weight: 400; color: #fff; line-height: 1; }
.bottom-badge { position: absolute; top: 0; right: 4px; background: var(--red); color: #fff; font-size: .55rem; font-weight: 700; border-radius: 50%; width: 14px; height: 14px; display: flex; align-items: center; justify-content: center; }

/* ANIMATIONS */
@keyframes rise { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }
@keyframes rise-right { from{opacity:0;transform:translateX(36px)} to{opacity:1;transform:translateX(0)} }
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.fade-in { animation: rise 0.6s ease forwards; }

/* Live dot */
.live-pill { display: flex; align-items: center; gap: 7px; font-family: var(--font-body); font-size: .72rem; color: var(--green); text-transform: uppercase; font-weight: 600; }
.live-dot { width: 7px; height: 7px; background: var(--green); border-radius: 50%; box-shadow: 0 0 10px rgba(0,200,150,0.6); animation: dot-blink 1.4s ease-in-out infinite; }
@keyframes dot-blink { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.3;transform:scale(1.4)} }

/* TICKER */
.ticker {
  position: relative; z-index: 2;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 12px 0; overflow: hidden;
}
.ticker-track { display: inline-flex; white-space: nowrap; animation: ticker-scroll 30s linear infinite; }
.ticker-item { font-family: var(--font-body); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.35); padding: 0 40px; font-weight: 500; }
.ticker-sep { color: var(--green); }
@keyframes ticker-scroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* MISC */
.section-divider { height: 1px; background: var(--border); }
.text-gold { color: var(--green); }
.text-muted { color: var(--text-muted); }

/* NAV STANDARD LINK */
.nav-standard-link {
  font-family: var(--font-body) !important;
  font-size: .82rem !important;
  color: var(--text-muted) !important;
  text-decoration: none !important;
  padding: .55rem 1rem !important;
  width: auto !important;
  min-width: 100px !important;
  white-space: nowrap !important;
  text-align: center !important;
  border: 1.5px solid var(--border) !important;
  border-radius: var(--radius) !important;
  transition: all .2s ease !important;
  display: inline-block !important;
  background: transparent !important;
  box-sizing: border-box !important;
  font-weight: 600 !important;
}
.nav-standard-link:hover {
  background: var(--green-pale) !important;
  color: var(--green) !important;
  border-color: rgba(0,200,150,0.4) !important;
}

/* RESPONSIVE */
@media(max-width:1024px){
  .navbar { padding: 14px 24px; }
  .navbar.scrolled { padding: 10px 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .bottom-nav { display: flex; }
  body { padding-bottom: 70px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .site-footer { padding: 2.5rem 1.5rem 1.5rem; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .filter-form { grid-template-columns: 1fr; }
  .msg-layout { grid-template-columns: 1fr; height: auto; }
  .profile-grid { grid-template-columns: 1fr; }
  .profile-cards-grid { grid-template-columns: 1fr; }
  .profile-stats-row { margin-left: 0; width: 100%; justify-content: space-around; margin-top: 1rem; }
  .pricing-cards { grid-template-columns: 1fr; }
}
@media(max-width:640px){
  .hero { padding: 48px 1.25rem 60px; }
  .hero-title-main,.hero-title-sub { font-size: clamp(2rem, 8vw, 3rem); }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .listings-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: .5rem; text-align: center; }
  .stat-item { padding: 1.5rem 1rem; }
}

/* ACCESSIBILITY FONT SIZE BUMPS */
body, p, .hero-desc, .sec-sub, .empty-box p, .pricing-features li { font-size: 18px !important; }
.nav-link { font-size: 16px !important; }
.nav-login, .nav-btn-outline { font-size: 15px !important; }
.ad-desc, .card-desc { font-size: 16px !important; }
.card-chip, .card-cat, .card-date, .badge-premium-sm { font-size: 13px !important; }
.search-label, .dyn-label, .sidebar-title, .filter-chip { font-size: 14px !important; }
.search-btn, .cat-tab, .results-info, .stat-row span:first-child, .pg-btn { font-size: 15px !important; }
.dyn-field input, .dyn-field select, .filter-chip select, input, select, textarea, .btn-primary, .btn-secondary, .btn-outline { font-size: 15px !important; }
.card-title { font-size: 18px !important; line-height: 1.4; }

/* LISTING DETAIL */
.detail-layout {
  display: grid;
  grid-template-columns: 1fr 330px;
  gap: 2.5rem;
  align-items: start;
}
.detail-main {
  background: #FFFFFF;
  border: 1.5px solid var(--border);
  padding: 3rem 2.5rem;
  border-radius: var(--radius-lg);
}
.detail-img {
  width: 100%;
  max-height: 500px;
  object-fit: contain;
  background: var(--bg-2);
  border: 1px solid var(--border);
  margin-bottom: 2.5rem;
  border-radius: var(--radius);
}
.detail-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 1.5rem;
}
.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2rem;
}
.divider {
  border: none;
  height: 1px;
  background: var(--border);
  margin: 2.5rem 0;
}
.detail-body {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--navy);
  white-space: pre-wrap;
}
.detail-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  position: sticky;
  top: 100px;
}
.contact-card {
  background: #FFFFFF;
  border: 1.5px solid var(--border);
  padding: 2rem 1.75rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.contact-card h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1rem;
}
.admin-card {
  background: #FFFFFF;
  border: 1.5px solid var(--border);
  padding: 1.75rem;
  border-radius: var(--radius-lg);
}
@media(max-width:900px) {
  .detail-layout { grid-template-columns: 1fr; }
  .detail-main { padding: 1.5rem; }
  .detail-sidebar { position: relative; top: 0; }
}

/* AUTH / LOGIN */
.login-wrap {
  min-height: calc(100vh - 140px);
  display: flex; align-items: center; justify-content: center;
  padding: 3rem 1rem;
  background: var(--bg-2);
}
.login-card {
  width: 100%; max-width: 440px;
  background: #FFFFFF;
  border: 1.5px solid var(--border);
  position: relative; overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 40px rgba(10,22,40,0.1);
}
.login-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--green);
}
.login-header { padding: 2.5rem 2.5rem 0; text-align: center; }
.login-icon {
  width: 56px; height: 56px;
  background: var(--green-pale);
  border: 1.5px solid rgba(0,200,150,0.3);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 1.1rem; border-radius: 50%;
}
.login-title {
  font-family: var(--font-head); font-size: 1.9rem; font-weight: 700;
  color: var(--navy); margin-bottom: .3rem;
}
.login-sub {
  font-family: var(--font-body); font-size: .85rem;
  color: var(--text-muted); font-weight: 500;
}
.login-body { padding: 1.5rem 2.5rem 2.5rem; }
.login-footer {
  text-align: center; font-family: var(--font-body);
  font-size: .85rem; color: var(--text-muted); margin-top: 1.25rem;
}
.login-footer a { color: var(--green); font-weight: 600; }
.login-footer a:hover { color: var(--gold-dark); }
.input-wrap { position: relative; }
.input-wrap input { padding-right: 2.8rem; }
.pw-toggle {
  position: absolute; right: .8rem; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: var(--text-muted);
  font-size: .9rem; cursor: pointer; padding: .2rem;
  transition: color .2s; line-height: 1;
}
.pw-toggle:hover { color: var(--green); }
.alert-box {
  display: flex; gap: .65rem; align-items: flex-start;
  padding: .85rem 1rem;
  border-left: 3px solid var(--red);
  background: rgba(229,62,62,0.05);
  margin-bottom: 1.5rem;
  font-family: var(--font-body); font-size: .85rem;
  color: #C53030; font-weight: 500;
  animation: slideIn .2s ease;
  border-radius: 0 var(--radius) var(--radius) 0;
}
@keyframes slideIn { from{opacity:0;transform:translateY(-5px)} to{opacity:1;transform:none} }
.alert-box.success { border-color: var(--green); background: var(--green-pale); color: var(--gold-dark); }
.btn-login {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  width: 100%; padding: .95rem;
  background: var(--green); color: #fff;
  font-family: var(--font-body); font-size: .9rem;
  font-weight: 700; text-transform: uppercase;
  border: none; cursor: pointer;
  transition: all .3s; position: relative; overflow: hidden;
  margin-top: .5rem; border-radius: var(--radius);
}
.btn-login::after {
  content: ''; position: absolute; inset: 0;
  background: var(--green-light); transform: scaleX(0);
  transform-origin: right; transition: transform .4s; z-index: 1;
}
.btn-login:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,200,150,0.3); }
.btn-login:hover::after { transform: scaleX(1); transform-origin: left; }
.btn-login span, .btn-login * { position: relative; z-index: 2; }
.divider {
  text-align: center; color: var(--text-muted);
  font-family: var(--font-body); font-size: .82rem;
  margin: 1.2rem 0; position: relative; font-weight: 500;
}
.divider::before,.divider::after {
  content: ''; position: absolute; top: 50%;
  width: 42%; height: 1px; background: var(--border);
}
.divider::before { left: 0; } .divider::after { right: 0; }
@media(max-width:480px) {
  .login-header,.login-body { padding-left: 1.25rem; padding-right: 1.25rem; }
}

/* REGISTRATION */
.register-card {
  width: 100%; max-width: 580px;
  background: #FFFFFF;
  border: 1.5px solid var(--border);
  position: relative; overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 40px rgba(10,22,40,0.1);
}
.register-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--green);
}
.reg-steps { display: flex; align-items: center; justify-content: center; padding: 1.5rem 2rem 0; gap: 0; }
.reg-step { flex: 1; display: flex; flex-direction: column; align-items: center; gap: .4rem; position: relative; }
.reg-step:not(:last-child)::after {
  content: ''; position: absolute; top: 14px; left: 50%; right: -50%;
  height: 1px; background: var(--border); z-index: 0;
}
.reg-step.active::after { background: rgba(0,200,150,0.3); }
.step-dot {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1.5px solid var(--border); background: #FFFFFF;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-body); font-size: .78rem; color: var(--text-muted); font-weight: 600;
  position: relative; z-index: 1; transition: all .3s;
}
.reg-step.active .step-dot { border-color: var(--green); color: var(--green); background: var(--green-pale); }
.reg-step.active .step-label { color: var(--green); }
.step-label { font-family: var(--font-body); font-size: .68rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; font-weight: 500; }
.role-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .75rem; margin-top: .5rem; }
.role-radio { display: none; }
.role-card {
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  padding: 1.25rem .5rem; border: 1.5px solid var(--border);
  background: var(--bg-2); cursor: pointer; transition: all .2s;
  text-align: center; position: relative; border-radius: var(--radius);
}
.role-card:hover { border-color: rgba(0,200,150,0.4); background: var(--green-pale); }
.role-radio:checked + .role-card { border-color: var(--green); background: var(--green-pale); }
.role-card-icon { font-size: 1.6rem; }
.role-card-label { font-family: var(--font-body); font-size: .78rem; color: var(--text-muted); font-weight: 500; }
.role-radio:checked + .role-card .role-card-label { color: var(--green); font-weight: 600; }
.role-check {
  position: absolute; top: .4rem; right: .4rem; width: 14px; height: 14px;
  border: 1.5px solid var(--border); border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  font-size: .6rem; color: transparent; transition: all .2s;
}
.role-radio:checked + .role-card .role-check { border-color: var(--green); color: var(--green); background: var(--green-pale); }
@media(max-width:600px) { .role-grid { grid-template-columns: 1fr; } }

/* DATA TABLES */
.data-table { width: 100%; border-collapse: collapse; color: var(--navy); font-size: .9rem; }
.data-table th { text-align: left; padding: 1rem .75rem; border-bottom: 2px solid var(--border); font-family: var(--font-body); font-size: .78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; font-weight: 700; background: var(--bg-2); }
.data-table td { padding: 1rem .75rem; border-bottom: 1px solid var(--border); vertical-align: middle; }
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: var(--bg-2); }

/* MOBILE CARDS */
.mobile-cards { display: none; flex-direction: column; gap: 1rem; padding: 0.5rem 0; }
.mobile-card {
  background: #FFFFFF; border: 1.5px solid var(--border);
  padding: 1.25rem; position: relative;
  transition: all .3s ease; border-radius: var(--radius-lg);
}
.mobile-card:hover { border-color: rgba(0,200,150,0.4); box-shadow: 0 4px 16px rgba(0,200,150,0.08); }
.card-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: .75rem; }
.card-tag { font-family: var(--font-body); font-size: .7rem; color: var(--green); text-transform: uppercase; display: flex; align-items: center; gap: .4rem; font-weight: 600; }
.card-meta { font-family: var(--font-body); font-size: .7rem; color: var(--text-muted); }
.card-title { font-family: var(--font-head); font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: .75rem; line-height: 1.4; }
.card-title a { color: inherit; text-decoration: none; }
.card-details { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 1.25rem; font-size: .82rem; color: var(--text-muted); }
.card-actions { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; border-top: 1px solid var(--border); padding-top: 1rem; margin-top: auto; }
.btn-card {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .7rem; font-family: var(--font-body); font-size: .78rem;
  text-transform: uppercase; cursor: pointer; transition: all .2s;
  border: 1.5px solid var(--border); background: var(--bg-2); color: var(--navy);
  text-decoration: none; border-radius: var(--radius); font-weight: 600;
}
.btn-card.primary { border-color: rgba(0,200,150,0.4); color: var(--green); background: var(--green-pale); }
.btn-card:hover { background: var(--bg-3); }
.btn-card.delete:hover { background: rgba(229,62,62,0.06); border-color: var(--error); color: var(--error); }
@media(max-width: 768px) {
  .admin-card.responsive-container { padding: 0 !important; background: transparent !important; border: none !important; }
  .data-table { display: none; }
  .mobile-cards { display: flex; }
}


/* ── Erişilebilirlik: Animasyon Tercihi ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
/* ── PAGE HERO: standardised sub-header system ──────────────────────── */
.page-hero {
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0 2rem;
}
.page-hero-inner {
  padding: 1.5rem 0 1rem;
}
.page-hero-eyebrow {
  font-family: var(--font-mono);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: .4rem;
}
.page-hero-title {
  font-family: var(--font-head);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 .3rem;
  line-height: 1.25;
}
.page-hero-sub {
  font-family: var(--font-mono);
  font-size: .78rem;
  color: var(--text-muted);
  letter-spacing: .3px;
  margin: 0;
}

/* Leaflet z-index fix — prevents stacking-context clipping from page-main */
.leaflet-container       { z-index: 1 !important; isolation: isolate; }
.leaflet-map-pane        { z-index: 2; }
.leaflet-tile-pane       { z-index: 2; }
.leaflet-overlay-pane    { z-index: 4; }
.leaflet-shadow-pane     { z-index: 5; }
.leaflet-marker-pane     { z-index: 6; }
.leaflet-tooltip-pane    { z-index: 7; }
.leaflet-popup-pane      { z-index: 8; }

/* Map grid responsive */
.map-layout { display: grid; grid-template-columns: 1fr 340px; gap: 1.5rem; align-items: start; }
@media (max-width: 768px) {
  .map-layout { grid-template-columns: 1fr !important; }
  .map-layout #map { height: 320px !important; }
}
