/* =============================================
   HEMŞERİM — TASARIM SİSTEMİ v3.0
   Dark/Light mode tam destek
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/icon?family=Material+Icons+Round');

/* ─── LIGHT MODE (varsayılan) ─────────────────── */
:root {
  --primary: #13b6ec;
  --primary-dark: #0ea5d7;
  --primary-light: rgba(19, 182, 236, 0.12);
  --primary-glow: rgba(19, 182, 236, 0.25);

  --bg: #f0f4f6;
  --bg-alt: #e4eaed;
  --surface: #ffffff;
  --surface-2: #f8fafb;
  --card: #ffffff;
  --card-border: rgba(0, 0, 0, 0.07);

  --text-1: #0d1c24;
  --text-2: #3d5a68;
  --text-3: #7a9aaa;

  --border: rgba(0, 0, 0, 0.08);
  --divider: rgba(0, 0, 0, 0.06);

  --hero-bg: linear-gradient(135deg, #0a1820 0%, #101d22 50%, #0d2535 100%);
  --hero-text: #ffffff;
  --hero-sub: rgba(255, 255, 255, 0.7);

  --shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.09);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.13);
  --shadow-p: 0 8px 28px rgba(19, 182, 236, 0.28);
  --shadow-p-sm: 0 4px 14px rgba(19, 182, 236, 0.2);

  --navbar-bg: rgba(240, 244, 246, 0.92);
  --mobile-menu-bg: #ffffff;

  --input-bg: #ffffff;
  --input-border: rgba(0, 0, 0, 0.12);
  --input-text: #0d1c24;
  --input-placeholder: rgba(0, 0, 0, 0.35);

  --feature-bg: #0d1a20;
  --feature-card: rgba(255, 255, 255, 0.04);
  --feature-border: rgba(255, 255, 255, 0.08);
  --feature-text: #ffffff;
  --feature-sub: rgba(255, 255, 255, 0.5);

  --cta-bg: linear-gradient(135deg, #0a1820 0%, #101d22 50%, #0d2535 100%);

  --footer-bg: #060e12;
  --footer-text: rgba(255, 255, 255, 0.45);
  --footer-head: #ffffff;
  --footer-border: rgba(255, 255, 255, 0.08);

  --scroll-thumb: rgba(19, 182, 236, 0.3);

  --transition-f: 150ms cubic-bezier(.4, 0, .2, 1);
  --transition-b: 250ms cubic-bezier(.4, 0, .2, 1);
  --transition-s: 400ms cubic-bezier(.4, 0, .2, 1);

  --font-d: 'Plus Jakarta Sans', sans-serif;
  --font-b: 'Inter', sans-serif;

  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 20px;
  --r-2xl: 24px;
  --r-full: 9999px;

  --z-nav: 200;
  --z-drop: 100;
  --z-modal: 400;
  --z-toast: 500;
}

/* ─── DARK MODE ───────────────────────────────── */
[data-theme="dark"] {
  --bg: #101d22;
  --bg-alt: #0d1820;
  --surface: #1a2c33;
  --surface-2: #162530;
  --card: #1e3038;
  --card-border: rgba(255, 255, 255, 0.07);

  --text-1: #eef4f7;
  --text-2: #8fa8b2;
  --text-3: #4a6572;

  --border: rgba(255, 255, 255, 0.08);
  --divider: rgba(255, 255, 255, 0.05);

  --navbar-bg: rgba(16, 29, 34, 0.92);
  --mobile-menu-bg: #1a2c33;

  --input-bg: rgba(255, 255, 255, 0.06);
  --input-border: rgba(255, 255, 255, 0.1);
  --input-text: #eef4f7;
  --input-placeholder: rgba(255, 255, 255, 0.3);

  --shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.4);
}

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

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

body {
  font-family: var(--font-d);
  background: var(--bg);
  color: var(--text-1);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  transition: background var(--transition-s), color var(--transition-s);
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input,
textarea,
select {
  font-family: inherit;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: var(--scroll-thumb, rgba(19, 182, 236, 0.3));
  border-radius: var(--r-full);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

.no-scrollbar::-webkit-scrollbar {
  display: none;
}

.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* ─── LAYOUT ──────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── NAVBAR ──────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-nav);
  background: var(--navbar-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition-s), box-shadow var(--transition-b), border-color var(--transition-s);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 24px;
  max-width: 1280px;
  margin: 0 auto;
}

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

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 18px;
  box-shadow: var(--shadow-p-sm);
  transition: transform var(--transition-f);
}

.navbar-logo:hover .logo-icon {
  transform: scale(1.06);
}

.logo-text {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-1);
  letter-spacing: -.5px;
  transition: color var(--transition-s);
}

.logo-text span {
  color: var(--primary);
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-2);
  transition: color var(--transition-f);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  border-radius: var(--r-full);
  transition: width var(--transition-b);
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: var(--primary);
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Theme Toggle */
.theme-toggle {
  width: 44px;
  height: 44px;
  border-radius: var(--r-full);
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all var(--transition-f);
}

.theme-toggle:hover {
  background: var(--primary);
  color: white;
  transform: rotate(20deg);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--r-sm);
  transition: background var(--transition-f);
}

.hamburger:hover {
  background: var(--primary-light);
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-1);
  border-radius: var(--r-full);
  transition: all var(--transition-b);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--mobile-menu-bg);
  border-bottom: 1px solid var(--border);
  padding: 12px;
  z-index: var(--z-drop);
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
  opacity: 0;
  transition: all var(--transition-b);
}

.mobile-menu.open {
  display: block;
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu .nav-link {
  display: block;
  padding: 14px 16px;
  border-radius: var(--r-md);
  font-size: 16px;
}

.mobile-menu .nav-link:hover {
  background: var(--primary-light);
}

/* ─── BUTTONS ─────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 24px;
  border-radius: var(--r-lg);
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-d);
  transition: all var(--transition-f);
  cursor: pointer;
  border: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  opacity: 0;
  transition: opacity var(--transition-f);
}

.btn:hover::after {
  opacity: 1;
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  box-shadow: var(--shadow-p-sm);
}

.btn-primary:hover {
  box-shadow: var(--shadow-p);
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--primary-light);
  color: var(--primary);
  border: 1px solid rgba(19, 182, 236, 0.2);
}

.btn-secondary:hover {
  background: rgba(19, 182, 236, 0.2);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
}

.btn-ghost {
  background: transparent;
  color: var(--text-2);
}

.btn-ghost:hover {
  background: var(--primary-light);
  color: var(--primary);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 13px;
  border-radius: var(--r-md);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 17px;
  border-radius: var(--r-xl);
}

.btn-icon {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: var(--r-full);
}

/* ─── HERO ────────────────────────────────────── */
/* Hero her zaman dark — marka kimliği gereği */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--hero-bg);
  z-index: 0;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  opacity: 0.12;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 24, 32, .95) 0%, rgba(16, 29, 34, .85) 50%, rgba(13, 37, 53, .9) 100%);
  z-index: 1;
}

.hero-orb {
  position: absolute;
  border-radius: var(--r-full);
  filter: blur(80px);
  opacity: .14;
  z-index: 1;
  animation: orbFloat 8s ease-in-out infinite;
}

.hero-orb-1 {
  width: 600px;
  height: 600px;
  background: var(--primary);
  top: -200px;
  right: -100px;
}

.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: #0ea5d7;
  bottom: -100px;
  left: -100px;
  animation-delay: -4s;
}

@keyframes orbFloat {

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

  50% {
    transform: translateY(-28px) scale(1.04);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 64px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background: rgba(19, 182, 236, .15);
  border: 1px solid rgba(19, 182, 236, .3);
  border-radius: var(--r-full);
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .5px;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
  animation: fadeInDown .6s ease forwards;
}

.hero-title {
  font-size: clamp(38px, 5.5vw, 76px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -2px;
  color: #fff;
  margin-bottom: 20px;
  animation: fadeInUp .7s ease .1s both;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary), #60e8ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(15px, 1.8vw, 19px);
  color: rgba(255, 255, 255, .68);
  max-width: 540px;
  line-height: 1.75;
  margin-bottom: 32px;
  animation: fadeInUp .7s ease .2s both;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  animation: fadeInUp .7s ease .3s both;
}

.hero-search {
  position: relative;
  max-width: 580px;
  animation: fadeInUp .7s ease .4s both;
  margin-bottom: 40px;
}

.hero-search-input {
  width: 100%;
  padding: 17px 24px 17px 54px;
  background: rgba(255, 255, 255, .08);
  border: 1.5px solid rgba(255, 255, 255, .15);
  border-radius: var(--r-xl);
  color: #fff;
  font-size: 15px;
  font-family: var(--font-d);
  backdrop-filter: blur(20px);
  transition: all var(--transition-b);
  outline: none;
}

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

.hero-search-input:focus {
  border-color: var(--primary);
  background: rgba(255, 255, 255, .12);
  box-shadow: 0 0 0 4px rgba(19, 182, 236, .15);
}

.hero-search-icon {
  position: absolute;
  left: 17px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, .45);
  font-size: 22px;
  pointer-events: none;
}

.hero-search-btn {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
}

.stats-bar {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 20px;
  padding: 22px 36px;
  display: flex;
  justify-content: space-around;
  gap: 20px;
  backdrop-filter: blur(10px);
  animation: fadeInUp .7s ease .5s both;
}

.stat-divider {
  width: 1px;
  background: rgba(255, 255, 255, .1);
  align-self: stretch;
}

.hero-stat-number {
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1;
}

.hero-stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, .48);
  font-weight: 500;
  margin-top: 4px;
}

/* Phone Mockup */
.phone-mockup {
  width: 300px;
  height: 620px;
  background: linear-gradient(145deg, #1a2c33, #0f1d22);
  border-radius: 44px;
  border: 2px solid rgba(255, 255, 255, .1);
  box-shadow: 0 50px 100px rgba(0, 0, 0, .5), inset 0 1px 0 rgba(255, 255, 255, .1);
  overflow: hidden;
  position: relative;
  animation: phoneFloat 6s ease-in-out infinite;
}

@keyframes phoneFloat {

  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }

  50% {
    transform: translateY(-18px) rotate(-2deg);
  }
}

.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 28px;
  background: #0a1820;
  border-radius: 0 0 20px 20px;
  z-index: 10;
}

.phone-screen {
  position: absolute;
  inset: 12px;
  border-radius: 34px;
  overflow: hidden;
  background: #101d22;
}

/* ─── SECTIONS ────────────────────────────────── */
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}

.section-title {
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--text-1);
  margin-bottom: 12px;
  transition: color var(--transition-s);
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-2);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
  transition: color var(--transition-s);
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 16px;
}

.section-top-left .section-title {
  text-align: left;
  margin-bottom: 4px;
}

.section-top-left .section-subtitle {
  text-align: left;
  margin: 0;
}

.see-all-link {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  white-space: nowrap;
  transition: gap var(--transition-f);
}

.see-all-link:hover {
  gap: 8px;
}

/* ─── KATEGORİLER ─────────────────────────────── */
.categories-section {
  padding: 80px 0;
  background: var(--surface);
  transition: background var(--transition-s);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
}

.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 28px 16px;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--r-xl);
  cursor: pointer;
  transition: all var(--transition-b);
  text-decoration: none;
  color: var(--text-1);
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.category-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  transition: all var(--transition-b);
}

.category-card:hover .category-icon {
  transform: scale(1.1);
}

.category-name {
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  color: var(--text-1);
  transition: color var(--transition-s);
}

.category-count {
  font-size: 12px;
  color: var(--text-3);
  transition: color var(--transition-s);
}

/* Kategori renkleri */
.cat-food .category-icon {
  background: rgba(239, 68, 68, .12);
  color: #ef4444;
}

.cat-food:hover .category-icon {
  background: #ef4444;
  color: white;
}

.cat-service .category-icon {
  background: rgba(245, 158, 11, .12);
  color: #f59e0b;
}

.cat-service:hover .category-icon {
  background: #f59e0b;
  color: white;
}

.cat-market .category-icon {
  background: rgba(34, 197, 94, .12);
  color: #22c55e;
}

.cat-market:hover .category-icon {
  background: #22c55e;
  color: white;
}

.cat-clothing .category-icon {
  background: rgba(168, 85, 247, .12);
  color: #a855f7;
}

.cat-clothing:hover .category-icon {
  background: #a855f7;
  color: white;
}

.cat-industry .category-icon {
  background: rgba(249, 115, 22, .12);
  color: #f97316;
}

.cat-industry:hover .category-icon {
  background: #f97316;
  color: white;
}

.cat-tourism .category-icon {
  background: rgba(20, 184, 166, .12);
  color: #14b8a6;
}

.cat-tourism:hover .category-icon {
  background: #14b8a6;
  color: white;
}

/* ─── İŞLETMELER ─────────────────────────────── */
.businesses-section {
  padding: 80px 0;
  background: var(--bg);
  transition: background var(--transition-s);
}

.businesses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.business-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--r-2xl);
  overflow: hidden;
  transition: all var(--transition-b);
  cursor: pointer;
  text-decoration: none;
  color: var(--text-1);
  display: flex;
  flex-direction: column;
}

.business-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(19, 182, 236, .3);
}

.business-card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: var(--surface);
}

.business-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-s);
}

.business-card:hover .business-card-image img {
  transform: scale(1.07);
}

.business-card-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  background: rgba(255, 255, 255, .95);
  border-radius: var(--r-full);
  font-size: 13px;
  font-weight: 700;
  color: #1a1a1a;
  box-shadow: var(--shadow-sm);
}

.business-card-badge .star {
  color: #f59e0b;
  font-size: 14px;
}

.business-card-category {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 4px 12px;
  background: var(--primary);
  border-radius: var(--r-full);
  font-size: 11px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.business-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.business-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 8px;
}

.business-card-name {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -.3px;
  line-height: 1.3;
  color: var(--text-1);
  transition: color var(--transition-s);
}

.verified-badge {
  color: var(--primary);
  font-size: 18px;
  flex-shrink: 0;
}

.business-card-address {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: var(--text-2);
  margin-bottom: 10px;
  transition: color var(--transition-s);
}

.business-card-address .material-icons-round {
  font-size: 14px;
  color: var(--primary);
}

.business-card-desc {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.55;
  margin-bottom: 14px;
  flex: 1;
  transition: color var(--transition-s);
}

.business-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--divider);
  margin-top: auto;
}

.hemseri-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  background: rgba(233, 30, 140, .1);
  border: 1px solid rgba(233, 30, 140, .2);
  border-radius: var(--r-full);
  font-size: 11px;
  font-weight: 700;
  color: #e91e8c;
}

.business-card-cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 2px;
  transition: gap var(--transition-f);
}

.business-card:hover .business-card-cta {
  gap: 6px;
}

/* ─── FİLTRE ──────────────────────────────────── */
.filter-chips {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}

.filter-chips::-webkit-scrollbar {
  display: none;
}

.filter-chip {
  flex-shrink: 0;
  padding: 8px 18px;
  border-radius: var(--r-full);
  font-size: 14px;
  font-weight: 600;
  border: 1.5px solid var(--border);
  background: var(--card);
  color: var(--text-2);
  transition: all var(--transition-f);
  cursor: pointer;
}

.filter-chip:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.filter-chip.active {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  box-shadow: var(--shadow-p-sm);
}

/* ─── ÖZELLİKLER (her zaman dark) ────────────── */
.features-section {
  padding: 80px 0;
  background: var(--feature-bg);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.feature-card {
  background: var(--feature-card);
  border: 1px solid var(--feature-border);
  border-radius: 20px;
  padding: 32px;
  transition: all var(--transition-b);
}

.feature-card:hover {
  background: rgba(19, 182, 236, .06);
  border-color: rgba(19, 182, 236, .2);
  transform: translateY(-4px);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: rgba(19, 182, 236, .12);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 28px;
  margin-bottom: 20px;
}

.feature-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--feature-text);
  margin-bottom: 10px;
}

.feature-desc {
  font-size: 14px;
  color: var(--feature-sub);
  line-height: 1.7;
}

/* ─── DUYURULAR ───────────────────────────────── */
.announcements-section {
  padding: 80px 0;
  background: var(--surface);
  transition: background var(--transition-s);
}

.announcements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.announcement-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--r-2xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-b);
}

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

.ann-img {
  height: 180px;
  position: relative;
  overflow: hidden;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ann-img .material-icons-round {
  font-size: 48px;
  color: rgba(19, 182, 236, .2);
}

.ann-type {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 4px 12px;
  background: var(--primary);
  border-radius: var(--r-full);
  font-size: 11px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
}

.ann-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.ann-date {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--text-3);
  margin-bottom: 8px;
  transition: color var(--transition-s);
}

.ann-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.4;
  color: var(--text-1);
  transition: color var(--transition-s);
}

.ann-text {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color var(--transition-s);
}

.ann-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  margin-top: 14px;
  transition: gap var(--transition-f);
}

.ann-link:hover {
  gap: 8px;
}

/* ─── CTA (her zaman dark) ────────────────────── */
.cta-section {
  padding: 80px 0;
  background: var(--cta-bg);
  position: relative;
  overflow: hidden;
}

.cta-orb {
  position: absolute;
  border-radius: var(--r-full);
  filter: blur(60px);
  opacity: .12;
}

.cta-orb-1 {
  width: 400px;
  height: 400px;
  background: var(--primary);
  top: -100px;
  right: 10%;
}

.cta-orb-2 {
  width: 300px;
  height: 300px;
  background: #0ea5d7;
  bottom: -80px;
  left: 5%;
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
}

.cta-title {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
}

.cta-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, .62);
  max-width: 540px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.app-store-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: var(--r-lg);
  color: white;
  backdrop-filter: blur(10px);
  transition: all var(--transition-b);
  min-width: 160px;
}

.app-store-btn:hover {
  background: rgba(255, 255, 255, .18);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.app-store-btn-text small {
  display: block;
  font-size: 10px;
  opacity: .7;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.app-store-btn-text strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
}

/* ─── FOOTER (her zaman dark) ─────────────────── */
.footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 64px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-description {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, .38);
}

.footer-social {
  display: flex;
  gap: 8px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--r-full);
  background: rgba(255, 255, 255, .07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .45);
  transition: all var(--transition-f);
  font-size: 16px;
}

.social-btn:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

.footer-heading {
  font-size: 13px;
  font-weight: 700;
  color: var(--footer-head);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, .4);
  transition: color var(--transition-f);
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, .4);
  margin-bottom: 10px;
}

.footer-contact-item .material-icons-round {
  font-size: 18px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid var(--footer-border);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, .3);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, .3);
  transition: color var(--transition-f);
}

.footer-bottom-links a:hover {
  color: var(--primary);
}

/* ─── TOAST ───────────────────────────────────── */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: var(--z-toast);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.toast {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  font-size: 14px;
  font-weight: 500;
  max-width: 360px;
  color: var(--text-1);
  animation: slideInRight .3s ease;
}

.toast-success {
  border-left: 4px solid #22c55e;
}

.toast-error {
  border-left: 4px solid #ef4444;
}

.toast-info {
  border-left: 4px solid var(--primary);
}

/* ─── SCROLL TOP ──────────────────────────────── */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--primary);
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: var(--shadow-p);
  cursor: pointer;
  opacity: 0;
  transform: translateY(16px);
  transition: all var(--transition-b);
  z-index: 200;
  border: none;
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(19, 182, 236, .45);
}

/* ─── ANİMASYONLAR ────────────────────────────── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

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

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

/* ─── SAYFA BAŞLIĞI (İşletmeler vb.) ─────────── */
.page-header {
  padding: 100px 0 48px;
  background: linear-gradient(180deg, #0a1820 0%, #101d22 100%);
}

.page-header h1 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: white;
  letter-spacing: -1px;
}

.page-header p {
  font-size: 16px;
  color: rgba(255, 255, 255, .5);
  margin-top: 8px;
}

/* Arama */
.search-bar-wrap {
  position: relative;
  max-width: 560px;
}

.search-bar-wrap .material-icons-round {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--input-placeholder);
  font-size: 20px;
  pointer-events: none;
}

.search-input {
  width: 100%;
  padding: 14px 20px 14px 48px;
  background: var(--input-bg);
  border: 1.5px solid var(--input-border);
  border-radius: var(--r-lg);
  color: var(--input-text);
  font-size: 15px;
  font-family: var(--font-d);
  outline: none;
  transition: all var(--transition-b);
}

.search-input::placeholder {
  color: var(--input-placeholder);
}

.search-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-light);
}

/* Form elemanları */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-1);
  margin-bottom: 8px;
  transition: color var(--transition-s);
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  background: var(--input-bg);
  border: 1.5px solid var(--input-border);
  border-radius: var(--r-md);
  color: var(--input-text);
  font-size: 15px;
  font-family: var(--font-d);
  outline: none;
  transition: all var(--transition-b);
}

.form-input::placeholder {
  color: var(--input-placeholder);
}

.form-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-light);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2313b6ec' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

/* Card genel */
.card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--r-2xl);
  transition: background var(--transition-s), border-color var(--transition-s);
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: var(--r-full);
  font-size: 11px;
  font-weight: 700;
}

.badge-primary {
  background: var(--primary-light);
  color: var(--primary);
}

.badge-success {
  background: rgba(34, 197, 94, .12);
  color: #22c55e;
}

.badge-danger {
  background: rgba(239, 68, 68, .12);
  color: #ef4444;
}

.badge-warning {
  background: rgba(245, 158, 11, .12);
  color: #f59e0b;
}

/* Yıldız */
.stars {
  display: flex;
  gap: 2px;
}

.star-filled {
  color: #f59e0b;
}

.star-empty {
  color: var(--border);
}

/* Divider */
.divider {
  height: 1px;
  background: var(--divider);
  margin: 20px 0;
}

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

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

@media (max-width: 768px) {
  .navbar-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding: 100px 0 60px;
  }

  .hero-phone-wrap {
    display: none;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .section-top {
    flex-direction: column;
    align-items: flex-start;
  }

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

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

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .stats-bar {
    flex-direction: column;
    gap: 16px;
    padding: 20px 24px;
  }

  .stat-divider {
    width: 100%;
    height: 1px;
  }
}

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

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

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

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