/* Erdemli Şehir Rehberi - Bağımsız PHP Sürümü Stil Dosyası */
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400;600;700&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-script: 'Caveat', cursive, sans-serif;
  --color-primary: #0066ff; /* header.png ve one.png canlı mavi tonu */
  --color-primary-dark: #0052cc;
  --color-navy: #0b2545;
  --color-slate: #334155;
  --color-light: #f8fafc;
  --color-border: #e2e8f0;
  --color-orange: #ea580c;
  --color-emerald: #10b981;
  --color-amber: #f59e0b;
  --radius-xs: 2px;
  --radius-sm: 2px;
  --radius-md: 2px;
  --radius-lg: 3px;
  --radius-xl: 3px;
  --radius-2xl: 3px;
  --radius-full: 3px;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px -2px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 10px 25px -5px rgba(15, 23, 42, 0.1), 0 8px 10px -6px rgba(15, 23, 42, 0.04);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-main);
  background-color: #f8fafc;
  color: #1e293b;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  width: 100%;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* UNIVERSAL SVG UTILITY & SIZING (İkonların aşırı büyümesini kesin olarak engeller) */
svg {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
  overflow: hidden;
}
.w-3, svg.w-3 { width: 12px; height: 12px; }
.w-3\.5, svg.w-3\.5 { width: 14px; height: 14px; }
.w-4, svg.w-4 { width: 16px; height: 16px; }
.w-4\.5, svg.w-4\.5 { width: 18px; height: 18px; }
.w-5, svg.w-5 { width: 20px; height: 20px; }
.w-6, svg.w-6 { width: 24px; height: 24px; }
.w-7, svg.w-7 { width: 28px; height: 28px; }
.w-8, svg.w-8 { width: 32px; height: 32px; }

.h-3, svg.h-3 { height: 12px; }
.h-3\.5, svg.h-3\.5 { height: 14px; }
.h-4, svg.h-4 { height: 16px; }
.h-4\.5, svg.h-4\.5 { height: 18px; }
.h-5, svg.h-5 { height: 20px; }
.h-6, svg.h-6 { height: 24px; }
.h-7, svg.h-7 { height: 28px; }
.h-8, svg.h-8 { height: 32px; }

/* TOPBAR */
.topbar {
  display: none; /* header.png görselinde topbar bulunmamaktadır */
}

/* MAIN HEADER (header.png ile birebir) */
.main-header {
  background: #ffffff;
  border-bottom: 1px solid #edf2f7;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}
.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 16px;
}

/* Logo (Güneş & Akdeniz Dalgaları + Erdemli Şehir Rehberi) */
.logo-box {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-svg-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
}
.logo-svg-wrap svg {
  width: 44px;
  height: 44px;
}
.logo-text {
  display: flex;
  flex-direction: column;
}
.logo-title {
  font-size: 24px;
  font-weight: 800;
  color: #0b2545;
  letter-spacing: -0.4px;
  line-height: 1.1;
}
.logo-subtitle {
  font-size: 13.5px;
  color: #0b2545;
  font-weight: 700;
  letter-spacing: -0.1px;
}

/* Navigation Links (Sağ tarafa hizalı ve arama ikonuna yakın) */
.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto; /* Menüyü sağ tarafa hizala */
  margin-right: 10px; /* Arama ikonuna yakın konuma getir */
}
.nav-link {
  font-size: 14.5px;
  font-weight: 600;
  color: #0b2545;
  transition: color 0.15s ease;
  padding: 24px 0;
  position: relative;
  text-decoration: none;
  white-space: nowrap;
}
.nav-link:hover {
  color: var(--color-primary);
}
.nav-link.active {
  color: var(--color-primary);
  font-weight: 700;
}

/* Header Right Actions (Arama, Kalp, Kullanıcı, Mavi İlan Ver Butonu) */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.header-icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 2px; /* Minimum kenar yuvarlama */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0b2545;
  transition: all 0.2s ease;
  text-decoration: none;
  cursor: pointer;
}
.header-icon-btn svg {
  width: 20px;
  height: 20px;
  color: #0b2545;
  stroke: #0b2545;
}
.header-icon-btn:hover {
  background: #f1f5f9;
  color: var(--color-primary);
}
.header-icon-btn:hover svg {
  color: var(--color-primary);
  stroke: var(--color-primary);
}

.btn-post-ad {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-primary);
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 2px; /* Minimum kenar yuvarlama */
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 102, 255, 0.25);
  white-space: nowrap;
}
.btn-post-ad svg {
  width: 16px;
  height: 16px;
  stroke: #ffffff;
  color: #ffffff;
}
.btn-post-ad:hover {
  background: var(--color-primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 102, 255, 0.35);
}

/* Mobil Hamburger Butonu */
.mobile-toggle-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 2px;
  color: #0b2545;
  cursor: pointer;
  transition: all 0.2s ease;
}
.mobile-toggle-btn:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
  color: var(--color-primary);
}
.mobile-toggle-btn svg {
  width: 22px;
  height: 22px;
}

/* Mobil Menü Çekmecesi */
.mobile-nav-panel {
  display: none;
  background: #ffffff;
  border-top: 1px solid #f1f5f9;
  box-shadow: 0 12px 24px -4px rgba(15, 23, 42, 0.1);
  padding: 16px 0 20px;
}
.mobile-nav-panel.active {
  display: block;
  animation: slideDown 0.2s ease-out;
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav-link {
  display: block;
  padding: 11px 16px;
  font-size: 15px;
  font-weight: 600;
  color: #0b2545;
  border-radius: 2px;
  transition: all 0.15s ease;
}
.mobile-nav-link:hover, .mobile-nav-link.active {
  background: #eff6ff;
  color: var(--color-primary);
  font-weight: 700;
}
.mobile-nav-footer {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #f1f5f9;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mobile-action-btn {
  width: 100%;
  justify-content: center;
  padding: 12px;
}
.mobile-sub-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.mobile-sub-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 6px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 2px;
  font-size: 11.5px;
  font-weight: 600;
  color: #475569;
  text-align: center;
  transition: all 0.15s;
}
.mobile-sub-item:hover {
  background: #eff6ff;
  border-color: #bfdbfe;
  color: var(--color-primary);
}
.mobile-sub-item svg {
  width: 18px;
  height: 18px;
  color: currentColor;
}

/* HERO SECTION (header.png ile birebir) */
.hero-section {
  position: relative;
  background: url('../images/hero-bg.jpg') center/cover no-repeat,
              url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=2000&q=80') center/cover no-repeat,
              #083470;
  color: #ffffff;
  padding: 75px 0 75px;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 52, 112, 0.90) 0%, rgba(10, 72, 142, 0.78) 35%, rgba(12, 98, 175, 0.35) 60%, rgba(12, 98, 175, 0.05) 85%, transparent 100%);
}
.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.hero-left-content {
  max-width: 680px;
  text-align: left;
}
.hero-handwriting {
  font-family: var(--font-script);
  font-size: 32px;
  font-weight: 600;
  color: #ffffff;
  opacity: 0.98;
  margin-bottom: 2px;
  line-height: 1.1;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
}
.hero-title {
  font-size: 60px;
  font-weight: 800;
  letter-spacing: -1.2px;
  margin-bottom: 16px;
  line-height: 1.05;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}
.hero-subtitle {
  font-size: 15.5px;
  color: #ffffff;
  opacity: 0.95;
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 560px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

/* HERO SEARCH CARD (header.png ile birebir) */
.hero-search-wrapper {
  max-width: 740px;
  width: 100%;
}
.hero-tabs {
  display: inline-flex;
  background: #ffffff;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  padding: 0 4px;
  gap: 2px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
}
.hero-tab {
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  color: #475569;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 3px solid transparent;
  transition: all 0.2s ease;
  font-family: inherit;
  border-radius: 2px 2px 0 0;
}
.hero-tab svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
}
.hero-tab:hover {
  color: var(--color-primary);
}
.hero-tab.active {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
  font-weight: 700;
}
.hero-tab.active svg {
  color: var(--color-primary);
  stroke: var(--color-primary);
}

.hero-search-box {
  background: #ffffff;
  border-radius: 3px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 20px 45px -10px rgba(0, 0, 0, 0.25);
  width: 100%;
}
.hero-search-input-box {
  flex: 1.8;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid #e2e8f0;
  border-radius: 2px;
  padding: 11px 14px;
  background: #ffffff;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.hero-search-input-box:focus-within {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}
.hero-search-input-box svg {
  width: 18px;
  height: 18px;
  color: #94a3b8;
  stroke: #94a3b8;
}
.hero-search-input-box input {
  width: 100%;
  border: none;
  outline: none;
  font-size: 14px;
  color: #1e293b;
  background: transparent;
  font-family: inherit;
}
.hero-search-input-box input::placeholder {
  color: #94a3b8;
}

.hero-search-select-box {
  flex: 1.2;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid #e2e8f0;
  border-radius: 2px;
  padding: 11px 14px;
  background: #ffffff;
  position: relative;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.hero-search-select-box:focus-within {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}
.hero-search-select-box svg {
  width: 18px;
  height: 18px;
  color: #94a3b8;
  stroke: #94a3b8;
}
.hero-search-select-box select {
  width: 100%;
  border: none;
  outline: none;
  font-size: 14px;
  color: #334155;
  font-weight: 500;
  background: transparent;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  padding-right: 22px;
  font-family: inherit;
}
.hero-search-select-box .hero-chevron {
  position: absolute;
  right: 12px;
  pointer-events: none;
  color: #64748b;
  display: flex;
  align-items: center;
}
.hero-search-select-box .hero-chevron svg {
  width: 14px;
  height: 14px;
  stroke: #64748b;
}

.hero-input-icon {
  color: #94a3b8;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.hero-search-btn {
  background: var(--color-primary);
  color: #ffffff;
  border: none;
  border-radius: 2px;
  padding: 12px 32px;
  font-weight: 700;
  font-size: 14.5px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
  font-family: inherit;
  box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
}
.hero-search-btn svg {
  width: 16px;
  height: 16px;
  stroke: #ffffff;
}
.hero-search-btn:hover {
  background: var(--color-primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 102, 255, 0.4);
}

.hero-bottom-slogan {
  font-family: var(--font-script);
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.08;
  text-align: left;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.65);
  transform: rotate(-8.5deg);
  margin-bottom: 20px;
  margin-right: 25px;
  white-space: nowrap;
  letter-spacing: 0.5px;
}

/* KATEGORİLERE GÖRE KEŞFEDİN (kategoriler.png ile birebir 8 kart) */
.categories-section {
  padding: 48px 0 54px;
  background: #ffffff;
  border-bottom: 1px solid #f1f5f9;
}
.category-cards-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 16px;
}
.kategori-card {
  background: #ffffff;
  border: 1px solid #eef2f6;
  border-radius: 3px;
  padding: 24px 12px 20px;
  text-align: center;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.02);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.kategori-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px -4px rgba(15, 23, 42, 0.08);
  border-color: #cbd5e1;
}
.kategori-icon-box {
  width: 66px;
  height: 66px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  transition: transform 0.2s;
}
.kategori-icon-box svg {
  width: 30px;
  height: 30px;
}
.kategori-card:hover .kategori-icon-box {
  transform: scale(1.05);
}
.bg-blue-subtle { background-color: #eff6ff; }
.bg-orange-subtle { background-color: #fff7ed; }
.bg-peach-subtle { background-color: #fff7ed; }
.bg-purple-subtle { background-color: #faf5ff; }
.bg-pink-subtle { background-color: #fdf2f8; }
.bg-cyan-subtle { background-color: #ecfeff; }

.text-brand-blue { color: #0066ff; }
.text-brand-orange { color: #f97316; }
.text-brand-purple { color: #9333ea; }
.text-brand-pink { color: #ec4899; }
.text-brand-cyan { color: #06b6d4; }

.kategori-name {
  font-size: 15px;
  font-weight: 700;
  color: #0b2545;
  margin-bottom: 8px;
  line-height: 1.2;
}
.kategori-link {
  font-size: 12.5px;
  font-weight: 600;
  color: #0066ff;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}
.kategori-link svg {
  width: 12px;
  height: 12px;
}

/* ÖNE ÇIKAN İŞLETMELER (one.png ile birebir 4'lü vitrin) */
.featured-section {
  padding: 56px 0;
  background: #f8fafc;
}
.section-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 28px;
}
.featured-heading {
  font-size: 26px;
  font-weight: 800;
  color: #0b2545;
  letter-spacing: -0.5px;
  margin-bottom: 4px;
}
.featured-subheading {
  font-size: 14.5px;
  color: #64748b;
}
.featured-view-all {
  font-size: 14px;
  font-weight: 700;
  color: #0066ff;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  transition: color 0.15s;
}
.featured-view-all svg {
  width: 14px;
  height: 14px;
}
.featured-view-all:hover {
  text-decoration: underline;
  color: #0052cc;
}
.featured-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.one-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 3px;
  overflow: hidden;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.03);
}
.one-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px -6px rgba(15, 23, 42, 0.09);
  border-color: #cbd5e1;
}
.one-card-media {
  position: relative;
  width: 100%;
  height: 195px;
  background: #e2e8f0;
  overflow: hidden;
}
.one-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.one-card:hover .one-card-media img {
  transform: scale(1.04);
}
.one-category-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #0066ff;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 2px 8px rgba(0, 102, 255, 0.3);
  z-index: 2;
}
.one-category-badge svg {
  width: 13px;
  height: 13px;
}
.one-fav-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  color: #0f172a;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  z-index: 2;
  transition: all 0.2s ease;
}
.one-fav-btn svg {
  width: 18px;
  height: 18px;
}
.one-fav-btn:hover, .one-fav-btn.active {
  color: #ef4444;
  background: #ffffff;
}
.one-fav-btn.active svg {
  fill: #ef4444;
}

.one-card-body {
  padding: 16px 18px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.one-card-title {
  font-size: 17px;
  font-weight: 700;
  color: #0b2545;
  margin-bottom: 6px;
  line-height: 1.3;
}
.one-card-title a {
  color: inherit;
  text-decoration: none;
}
.one-card-title a:hover {
  color: #0066ff;
}
.one-rating-row {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  margin-bottom: 6px;
}
.one-star {
  color: #f59e0b;
  font-size: 16px;
}
.one-score {
  font-weight: 800;
  color: #0f172a;
}
.one-reviews {
  color: #64748b;
  font-size: 13px;
}
.one-location-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #64748b;
  margin-bottom: 18px;
}
.one-location-row svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.one-actions-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
}
.one-btn-details {
  flex: 1;
  background: #e0f2fe;
  color: #0066ff;
  font-weight: 700;
  font-size: 13px;
  padding: 9px 14px;
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
  transition: all 0.2s ease;
}
.one-btn-details svg {
  width: 14px;
  height: 14px;
}
.one-btn-details:hover {
  background: #bae6fd;
  color: #0052cc;
}
.one-btn-whatsapp {
  background: #22c55e;
  color: #ffffff;
  font-weight: 600;
  font-size: 13px;
  padding: 9px 12px;
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
  transition: all 0.2s ease;
}
.one-btn-whatsapp svg {
  width: 15px;
  height: 15px;
}
.one-btn-whatsapp:hover {
  background: #16a34a;
}

/* GENEL BUTONLAR & BİLEŞENLER */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--color-primary);
  color: #ffffff;
}
.btn-primary:hover {
  background: var(--color-primary-dark);
}
.btn-accent {
  background: var(--color-orange);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(234, 88, 12, 0.25);
}
.btn-accent:hover {
  background: #c2410c;
  transform: translateY(-1px);
}
.btn-outline {
  border-color: var(--color-border);
  background: #ffffff;
  color: #334155;
}
.btn-outline:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
}

/* CATEGORY SECTION */
.section {
  padding: 56px 0;
}
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 28px;
}
.section-title {
  font-size: 24px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.4px;
}
.section-desc {
  font-size: 14.5px;
  color: #64748b;
  margin-top: 4px;
}
.section-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* 12 CATEGORIES GRID */
.category-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.cat-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 20px 16px;
  text-align: center;
  border: 1px solid var(--color-border);
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.cat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary);
}
.cat-icon-circle {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  font-size: 22px;
}
.cat-title {
  font-size: 14px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 4px;
}
.cat-count {
  font-size: 12px;
  color: #94a3b8;
}

/* BUSINESS & ACCOMMODATION CARDS */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.biz-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: all 0.25s ease;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.biz-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.biz-img-box {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: #cbd5e1;
}
.biz-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.biz-card:hover .biz-img-box img {
  transform: scale(1.05);
}
.badge-featured {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #ea580c;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-xs);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.badge-rating {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(4px);
  color: #facc15;
  font-size: 13px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-xs);
  display: flex;
  align-items: center;
  gap: 4px;
}

.biz-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.biz-category {
  font-size: 12px;
  color: var(--color-primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}
.biz-name {
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 8px;
  line-height: 1.3;
}
.biz-desc {
  font-size: 13px;
  color: #64748b;
  margin-bottom: 16px;
  line-height: 1.5;
  flex-grow: 1;
}
.biz-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: #475569;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f1f5f9;
}
.biz-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

/* POPÜLER KONAKLAMA TESİSLERİ SADE DÜZ RENK İKON VE KART TASARIMI */
.acc-badge-flat {
  background: #0066ff !important;
  color: #ffffff !important;
  border-radius: 2px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 5px !important;
  font-size: 11.5px !important;
  font-weight: 700 !important;
  padding: 4px 9px !important;
  box-shadow: 0 2px 6px rgba(0, 102, 255, 0.3) !important;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.acc-badge-flat svg {
  width: 12px;
  height: 12px;
  stroke: #ffffff;
  color: #ffffff;
}
.acc-rating-flat {
  background: rgba(15, 23, 42, 0.9) !important;
  color: #ffffff !important;
  border-radius: 2px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 4px !important;
  padding: 4px 8px !important;
  font-size: 12px !important;
  font-weight: 700 !important;
}
.acc-rating-flat svg {
  width: 12px;
  height: 12px;
  color: #f59e0b;
  fill: #f59e0b;
}
.acc-location-flat {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #64748b;
  margin-bottom: 12px;
  line-height: 1.3;
}
.acc-location-flat svg {
  width: 14px;
  height: 14px;
  stroke: #64748b;
  color: #64748b;
  flex-shrink: 0;
}
.acc-amenities-row {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.acc-amenity-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #f8fafc;
  color: #475569;
  border: 1px solid #e2e8f0;
  border-radius: 2px;
  padding: 3px 8px;
  font-size: 11.5px;
  font-weight: 600;
  line-height: 1.2;
}
.acc-amenity-pill svg {
  width: 13px;
  height: 13px;
  stroke: #64748b;
  color: #64748b;
}
.acc-price-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 2px;
  padding: 10px 12px;
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.acc-price-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #64748b;
}
.acc-price-label svg {
  width: 14px;
  height: 14px;
  stroke: #64748b;
  color: #64748b;
}
.acc-price-val {
  font-size: 18px;
  font-weight: 800;
  color: #0b2545;
}

/* BANNER CTA */
.promo-banners {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.promo-box {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 40px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 240px;
}
.promo-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(15, 23, 42, 0.9) 100%);
  z-index: 1;
}
.promo-content {
  position: relative;
  z-index: 2;
}

/* FOOTER */
.main-footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 64px 0 24px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-title {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
}
.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a:hover {
  color: #ffffff;
}
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

/* SON EKLENEN İLANLAR BÖLÜMÜ (son.png ile birebir piksel tasarımı) */
.recent-listings-section {
  padding: 48px 0 54px;
  background: #ffffff;
  border-top: 1px solid #f1f5f9;
}
.recent-listings-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 24px;
}
.recent-listings-title {
  font-size: 24px;
  font-weight: 800;
  color: #0b2545;
  letter-spacing: -0.4px;
  margin: 0 0 4px;
  line-height: 1.2;
}
.recent-listings-desc {
  font-size: 14px;
  color: #64748b;
  margin: 0;
}
.recent-listings-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #0066ff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: gap 0.2s ease, color 0.15s ease;
  white-space: nowrap;
}
.recent-listings-link:hover {
  gap: 9px;
  color: #0052cc;
}
.recent-listings-link svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
}
.recent-listings-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.recent-listing-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 3px;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}
.recent-listing-card:hover {
  transform: translateY(-4px);
  border-color: #cbd5e1;
  box-shadow: 0 12px 24px -4px rgba(15, 23, 42, 0.09);
}
.recent-listing-media {
  position: relative;
  width: 100%;
  height: 140px;
  overflow: hidden;
  background: #f8fafc;
}
.recent-listing-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.recent-listing-card:hover .recent-listing-media img {
  transform: scale(1.05);
}
.recent-listing-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  background: #0066ff;
  color: #ffffff;
  border-radius: 2px;
  padding: 3.5px 10px;
  font-size: 11.5px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4.5px;
  box-shadow: 0 2px 8px rgba(0, 102, 255, 0.38);
  letter-spacing: 0.1px;
}
.recent-listing-badge svg {
  width: 12px;
  height: 12px;
  stroke: #ffffff;
}
.recent-listing-info {
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.recent-listing-title {
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
}
.recent-listing-price {
  font-size: 16px;
  font-weight: 800;
  color: #0066ff;
  margin-bottom: 6px;
  letter-spacing: -0.2px;
  line-height: 1.2;
}
.recent-listing-location {
  font-size: 12px;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 4px;
  line-height: 1.2;
  margin-top: auto;
}
.recent-listing-location svg {
  width: 13px;
  height: 13px;
  color: #94a3b8;
  stroke: #94a3b8;
  flex-shrink: 0;
}

/* ==========================================================================
   TAM DUYARLI VE GELİŞMİŞ MOBİL UYUMLULUK (RESPONSIVE ENGINE)
   ========================================================================== */
@media (max-width: 1200px) {
  .category-cards-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 1024px) {
  .main-nav {
    display: none !important;
  }
  .mobile-toggle-btn {
    display: inline-flex !important;
  }
  .category-cards-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }
  .featured-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .category-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  .recent-listings-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
  .header-wrap {
    height: 66px;
    gap: 10px;
  }
  .logo-svg-wrap {
    width: 38px;
    height: 38px;
  }
  .logo-svg-wrap svg {
    width: 38px;
    height: 38px;
  }
  .logo-title {
    font-size: 20px;
  }
  .logo-subtitle {
    font-size: 12px;
  }
  .header-actions {
    gap: 8px;
  }
  .header-icon-btn {
    width: 34px;
    height: 34px;
  }
  .header-icon-btn svg {
    width: 18px;
    height: 18px;
  }

  /* Hero Section */
  .hero-section {
    padding: 40px 0 36px;
    min-height: auto;
  }
  .hero-container {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-left-content {
    max-width: 100%;
  }
  .hero-handwriting {
    font-size: 26px;
  }
  .hero-title {
    font-size: 34px;
    letter-spacing: -0.6px;
    margin-bottom: 12px;
  }
  .hero-subtitle {
    font-size: 14px;
    line-height: 1.55;
    margin-bottom: 20px;
    max-width: 100%;
  }
  .hero-search-wrapper {
    max-width: 100%;
  }
  .hero-tabs {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    display: flex;
    scrollbar-width: none;
  }
  .hero-tabs::-webkit-scrollbar {
    display: none;
  }
  .hero-tab {
    padding: 10px 14px;
    font-size: 13px;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .hero-search-box {
    flex-direction: column;
    border-radius: 3px;
    padding: 12px;
    gap: 10px;
    align-items: stretch;
  }
  .hero-search-input-box,
  .hero-search-select-box,
  .hero-search-btn {
    width: 100%;
    flex: none;
  }
  .hero-search-btn {
    justify-content: center;
    padding: 13px 20px;
    font-size: 15px;
  }
  .hero-bottom-slogan {
    align-self: flex-start;
    margin-top: 22px;
    margin-bottom: 0;
    margin-right: 0;
    font-size: 28px;
    transform: rotate(-4deg);
    white-space: normal;
  }

  /* Section headers */
  .section {
    padding: 42px 0;
  }
  .section-header-row,
  .section-header,
  .recent-listings-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 20px;
  }
  .featured-heading,
  .section-title,
  .recent-listings-title {
    font-size: 21px;
  }

  /* Grids */
  .category-cards-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }
  .kategori-card {
    padding: 14px 6px 12px;
  }
  .kategori-icon-box {
    width: 48px;
    height: 48px;
    margin-bottom: 8px;
  }
  .kategori-icon-box svg {
    width: 22px;
    height: 22px;
  }
  .kategori-name {
    font-size: 12.5px;
    margin-bottom: 4px;
  }
  .kategori-link {
    font-size: 11px;
  }

  .featured-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .cards-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .promo-banners {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .promo-box {
    padding: 24px 18px;
    min-height: 180px;
  }
  .recent-listings-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  /* Footer */
  .main-footer {
    padding: 44px 0 20px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

@media (max-width: 560px) {
  .header-post-btn span {
    display: none;
  }
  .header-post-btn {
    padding: 8px 10px;
    gap: 0;
  }
  .category-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .featured-cards-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .recent-listing-title {
    font-size: 13.5px;
  }
  .recent-listing-price {
    font-size: 15px;
  }
}

@media (max-width: 420px) {
  .recent-listings-grid {
    grid-template-columns: 1fr;
  }
  .hero-title {
    font-size: 28px;
  }
  .hero-handwriting {
    font-size: 22px;
  }
  .hero-bottom-slogan {
    font-size: 22px;
  }
}
