/* 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: 1px;
  --radius-sm: 1px;
  --radius-md: 2px;
  --radius-lg: 2px;
  --radius-xl: 2px;
  --radius-2xl: 2px;
  --radius-full: 2px;
  --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;
  flex-wrap: nowrap;
}

/* 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 (header.png ile birebir hizalı) */
.main-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
  margin-right: 12px;
  flex-shrink: 0;
}
.nav-link {
  font-size: 14px;
  font-weight: 600;
  color: #0b2545;
  transition: color 0.15s ease;
  padding: 10px 4px;
  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: 10px;
  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: 9px 18px;
  border-radius: 2px; /* Minimum kenar yuvarlama */
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 102, 255, 0.22);
  white-space: nowrap;
}
.btn-post-ad svg {
  width: 15px;
  height: 15px;
  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.32);
}

/* Mobil Hamburger Butonu */
.mobile-toggle-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: #ffffff;
  border: 1px 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: 20px;
  height: 20px;
}

/* ==========================================================================
   KURUMSAL MODERN MOBİL MENÜ (OFF-CANVAS DRAWER)
   ========================================================================== */
.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(4px);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.mobile-nav-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-panel {
  position: fixed;
  top: 0;
  right: -340px;
  width: 320px;
  max-width: 86vw;
  height: 100vh;
  height: 100dvh;
  background: #ffffff;
  z-index: 9999;
  box-shadow: -8px 0 30px rgba(15, 23, 42, 0.15);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0;
}
.mobile-nav-panel.active {
  transform: translateX(-340px);
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #e2e8f0;
  background: #f8fafc;
  flex-shrink: 0;
}
.mobile-nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}
.mobile-nav-close {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  width: 34px;
  height: 34px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #475569;
  cursor: pointer;
  transition: all 0.15s ease;
}
.mobile-nav-close:hover {
  background: #f1f5f9;
  color: #0f172a;
}

.mobile-nav-actions {
  padding: 16px 20px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-bottom: 1px solid #f1f5f9;
  flex-shrink: 0;
}
.mobile-user-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #f1f5f9;
  color: #334155;
  font-size: 13.5px;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.15s ease;
}
.mobile-user-link:hover {
  background: #e2e8f0;
  color: #0f172a;
}

.mobile-nav-list {
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex-grow: 1;
}
.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  font-size: 14.5px;
  font-weight: 600;
  color: #1e293b;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.15s ease;
}
.mobile-nav-link .nav-icon {
  font-size: 16px;
  width: 22px;
  text-align: center;
}
.mobile-nav-link:hover,
.mobile-nav-link.active {
  background: #eff6ff;
  color: #0066ff;
  font-weight: 700;
}
.mobile-nav-link.gold-link {
  color: #d97706;
  background: #fffbeb;
  font-weight: 700;
}

.mobile-nav-corporate {
  padding: 18px 20px 24px;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  flex-shrink: 0;
}
.mobile-corp-title {
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #64748b;
  margin-bottom: 12px;
}
.mobile-corp-items {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 16px;
}
.mobile-corp-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #334155;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.15s;
}
.mobile-corp-item:hover {
  color: #0066ff;
}
.mobile-corp-address {
  font-size: 12.5px;
  color: #64748b;
  line-height: 1.4;
}
.mobile-social-bar {
  display: flex;
  align-items: center;
  gap: 8px;
}
.mobile-social-icon {
  width: 34px;
  height: 34px;
  border-radius: 4px;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.15s ease;
}
.mobile-social-icon:hover {
  transform: translateY(-2px);
}

@media (max-width: 1140px) {
  .main-nav {
    display: none !important;
  }
  .mobile-toggle-btn {
    display: inline-flex !important;
  }
  /* Mobil cihazlarda menü ikonunun solundaki profil ikonunu kaldır */
  .header-user-btn,
  .user-dropdown-wrap {
    display: none !important;
  }
}
@media (min-width: 1141px) {
  .mobile-nav-panel, .mobile-nav-panel.active {
    display: none !important;
  }
  .mobile-toggle-btn {
    display: none !important;
  }
}

/* ==========================================================================
   GEZİLECEK YERLER VİTRİNİ (gezilecek.png ile birebir tasarım)
   ========================================================================== */
.attractions-showcase-section {
  padding: 48px 0;
  background: #f8fafc;
}
.attractions-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.05);
  border-radius: 2px;
  display: grid;
  grid-template-columns: 370px 1fr 340px;
  overflow: hidden;
  align-items: stretch;
}
.attractions-card-media {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 290px;
  background: #f1f5f9;
}
.attractions-cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.attractions-card-center {
  padding: 44px 38px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.attraction-tag {
  color: #0066ff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}
.attraction-title {
  font-size: 32px;
  font-weight: 800;
  color: #0b2545;
  letter-spacing: -0.6px;
  line-height: 1.15;
  margin-bottom: 14px;
}
.attraction-desc {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
  max-width: 360px;
  margin-bottom: 26px;
}
.attraction-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #eff6ff;
  border: 1.5px solid #bfdbfe;
  color: #0066ff;
  font-size: 13.5px;
  font-weight: 700;
  padding: 11px 22px;
  border-radius: 2px;
  text-decoration: none;
  transition: all 0.2s ease;
}
.attraction-cta-btn:hover {
  background: #0066ff;
  color: #ffffff;
  border-color: #0066ff;
  box-shadow: 0 4px 12px rgba(0, 102, 255, 0.2);
}
.attraction-cta-btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}
.attraction-cta-btn:hover svg {
  transform: translateX(3px);
}
.attractions-card-list {
  padding: 24px 30px 24px 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.attraction-row-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 12px;
  border-bottom: 1px solid #f1f5f9;
  text-decoration: none;
  transition: all 0.15s ease;
  border-radius: 2px;
}
.attraction-row-item:last-child {
  border-bottom: none;
}
.attraction-row-item:hover {
  background: #f8fafc;
}
.attraction-row-thumb {
  width: 80px;
  height: 56px;
  border-radius: 2px;
  overflow: hidden;
  flex-shrink: 0;
  background: #f1f5f9;
}
.attraction-row-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.attraction-row-info {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  min-width: 0;
}
.attraction-row-title {
  font-size: 15px;
  font-weight: 800;
  color: #0b2545;
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.attraction-row-subtitle {
  font-size: 12.5px;
  color: #64748b;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.attraction-row-arrow {
  color: #0066ff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.15s ease;
}
.attraction-row-item:hover .attraction-row-arrow {
  transform: translateX(3px);
}

@media (max-width: 1024px) {
  .attractions-card {
    grid-template-columns: 1fr;
  }
  .attractions-card-media {
    height: 240px;
    min-height: 240px;
  }
  .attractions-card-center {
    padding: 32px 24px;
  }
  .attractions-card-list {
    padding: 0 24px 32px;
  }
}

/* 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: 4px 28px 4px 8px;
  font-family: inherit;
}
.hero-search-select-box select option {
  padding: 12px 18px;
  margin: 4px 0;
  font-size: 14px;
  color: #1e293b;
  background-color: #ffffff;
  line-height: 1.8;
}
.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;
}

/* HİZMET KATEGORİLERİMİZ (Yeni Modern & Premium Şehir Rehberi Tasarımı) */
.categories-section {
  padding: 56px 0 64px;
  background: #ffffff;
  border-bottom: 1px solid #f1f5f9;
}
.categories-header-wrap {
  text-align: center;
  margin-bottom: 38px;
}
.categories-title-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 8px;
}
.categories-title-line {
  display: inline-block;
  width: 38px;
  height: 2.5px;
  background: #0284c7;
  border-radius: 2px;
}
.categories-main-title {
  font-size: 30px;
  font-weight: 800;
  color: #0b2545;
  letter-spacing: -0.5px;
  margin: 0;
  line-height: 1.2;
}
.categories-sub-title {
  font-size: 15px;
  color: #64748b;
  margin: 0;
  font-weight: 400;
}

.category-cards-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 14px;
}

.kategori-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  padding: 26px 10px 22px;
  text-align: center;
  text-decoration: none;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease, border-color 0.25s ease;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.03), 0 1px 2px rgba(15, 23, 42, 0.02);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 180px;
}

.kategori-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px -4px rgba(15, 23, 42, 0.08);
  border-color: #cbd5e1;
}

/* İkonların arkasında hiçbir renkli kutu/daire/zemin YOKTUR - doğrudan beyaz kart üzerinde durur */
.kategori-icon-wrap {
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.kategori-icon-svg {
  width: 56px;
  height: 56px;
  display: block;
  overflow: visible;
  transition: filter 0.25s ease;
}

.kategori-card:hover .kategori-icon-wrap {
  transform: scale(1.08);
}

.kategori-card:hover .kategori-icon-svg {
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.12));
}

.kategori-name {
  font-size: 15px;
  font-weight: 700;
  color: #0b2545;
  margin-bottom: 8px;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s ease;
}

.kategori-card:hover .kategori-name {
  color: #0066ff;
}

.kategori-link {
  font-size: 12.5px;
  font-weight: 600;
  color: #0066ff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  white-space: nowrap;
  margin-top: auto;
}

.kategori-link svg {
  width: 12px;
  height: 12px;
  stroke-width: 2.5;
  transition: transform 0.2s ease;
}

.kategori-card:hover .kategori-link svg {
  transform: translateX(3px);
}

/* Ö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);
  }
  .recent-listings-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;
  }
  .gold-container-grid,
  .detail-content-grid,
  .contact-grid {
    grid-template-columns: 1fr !important;
  }
}

@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;
  }

  /* Search & Filter Form on Mobile */
  .search-form-grid,
  .gold-container-grid,
  .detail-content-grid,
  .contact-grid,
  .user-dashboard-grid,
  form[action*="search.php"] {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  /* Hero Section */
  .hero-section {
    padding: 36px 0 30px;
    min-height: auto;
  }
  .hero-container {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-left-content {
    max-width: 100%;
  }
  .hero-handwriting {
    font-size: 24px;
  }
  .hero-title {
    font-size: 30px;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
  }
  .hero-subtitle {
    font-size: 14px;
    line-height: 1.55;
    margin-bottom: 18px;
    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: 9px 12px;
    font-size: 12.5px;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .hero-search-box {
    flex-direction: column;
    border-radius: 2px;
    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: 12px 18px;
    font-size: 14.5px;
  }
  .hero-bottom-slogan {
    align-self: flex-start;
    margin-top: 18px;
    margin-bottom: 0;
    margin-right: 0;
    font-size: 24px;
    transform: rotate(-3deg);
    white-space: normal;
  }

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

  /* Grids */
  .category-cards-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }
  .kategori-card {
    padding: 14px 6px 12px;
    min-height: 135px;
  }
  .kategori-icon-wrap {
    width: 44px;
    height: 44px;
    margin-bottom: 8px;
  }
  .kategori-icon-svg {
    width: 40px;
    height: 40px;
  }
  .kategori-name {
    font-size: 12.5px;
    margin-bottom: 4px;
  }
  .kategori-link {
    font-size: 11px;
  }
  .categories-main-title {
    font-size: 22px;
  }
  .categories-sub-title {
    font-size: 13px;
  }
  .categories-title-line {
    width: 20px;
  }

  .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: 14px;
  }
  .promo-box {
    padding: 22px 16px;
    min-height: 170px;
  }
  .recent-listings-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .event-card {
    flex-direction: column !important;
  }
  .event-card-img {
    width: 100% !important;
    height: 180px !important;
  }

  /* Detail pages */
  .detail-hero-banner {
    height: 220px !important;
  }
  .detail-header-flex {
    flex-direction: column !important;
    gap: 12px !important;
    align-items: flex-start !important;
  }
  .detail-actions-bar {
    width: 100% !important;
    flex-wrap: wrap !important;
  }
  .detail-actions-bar a,
  .detail-actions-bar button {
    flex: 1 1 auto !important;
    justify-content: center !important;
  }

  /* Tables */
  .table-responsive,
  .admin-table-wrap {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* Footer */
  .main-footer {
    padding: 38px 0 20px;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 20px;
    margin-bottom: 28px;
  }
  .footer-col-info {
    grid-column: 1 / -1;
  }
  .footer-col-cats {
    grid-column: 1 / 2;
  }
  .footer-col-regions {
    grid-column: 2 / 3;
  }
  .footer-col-links {
    grid-column: 1 / -1;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

@media (max-width: 560px) {
  .form-row-2col {
    grid-template-columns: 1fr !important;
  }
  .header-post-btn span {
    display: none;
  }
  .header-post-btn {
    padding: 7px 9px;
    gap: 0;
  }
  .category-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .kategori-card {
    padding: 14px 6px 12px;
    min-height: 130px;
  }
  .kategori-name {
    font-size: 13px;
  }
  .kategori-link {
    font-size: 11px;
  }
  .featured-cards-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .recent-listing-title {
    font-size: 13px;
  }
  .recent-listing-price {
    font-size: 14.5px;
  }
}

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

/* ==========================================================================
   YUKARI ÇIK BUTONU (SCROLL TO TOP)
   ========================================================================== */
.scroll-top-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px;
  height: 46px;
  background-color: #0066ff;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 998;
  box-shadow: 0 4px 16px rgba(0, 102, 255, 0.35);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  outline: none;
}

.scroll-top-btn svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  transition: transform 0.2s ease;
}

.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top-btn:hover {
  background-color: #0052cc;
  box-shadow: 0 6px 20px rgba(0, 102, 255, 0.48);
  transform: translateY(-3px);
}

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

.scroll-top-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(0, 102, 255, 0.3);
}

@media (max-width: 768px) {
  .scroll-top-btn {
    bottom: 20px;
    right: 18px;
    width: 42px;
    height: 42px;
  }
  .scroll-top-btn svg {
    width: 18px;
    height: 18px;
  }
}

/* ==========================================================================
   GOLD ÜYELİK SAYFASI TASARIMI
   ========================================================================== */
.gold-hero-section {
  position: relative;
  background: linear-gradient(135deg, #083470 0%, #0a488e 55%, #0066ff 100%);
  color: #ffffff;
  padding: 56px 0 68px;
  overflow: hidden;
}
.gold-hero-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}
.gold-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 158, 11, 0.18);
  border: 1px solid rgba(245, 158, 11, 0.45);
  color: #fbbf24;
  padding: 6px 14px;
  border-radius: 2px;
  font-size: 12.5px;
  font-weight: 800;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
.gold-hero-title {
  font-size: 36px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.gold-hero-desc {
  font-size: 16px;
  color: #e2e8f0;
  line-height: 1.6;
  max-width: 680px;
  margin: 0 auto 28px;
}
.gold-price-chip {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  padding: 12px 24px;
  border-radius: 2px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.gold-container-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: start;
}
.gold-benefit-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 16px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 2px;
  transition: all 0.2s ease;
}
.gold-benefit-card:hover {
  border-color: #cbd5e1;
  box-shadow: 0 4px 12px rgba(11, 37, 69, 0.05);
  transform: translateY(-1px);
}
.gold-benefit-icon {
  width: 32px;
  height: 32px;
  border-radius: 2px;
  background: #eff6ff;
  color: #0066ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 15px;
  flex-shrink: 0;
}
.gold-order-box {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-top: 4px solid #f59e0b;
  border-radius: 2px;
  padding: 28px;
  box-shadow: 0 4px 20px -2px rgba(11, 37, 69, 0.08);
  position: sticky;
  top: 90px;
}
@media (max-width: 960px) {
  .gold-container-grid {
    grid-template-columns: 1fr;
  }
  .gold-order-box {
    position: static;
  }
  .gold-hero-title {
    font-size: 28px;
  }
}

/* ==========================================================================
   TÜM SAYFALAR İÇİN KAPSAMLI MOBİL DUYARLILIK (MOBILE RESPONSIVE ENGINE)
   ========================================================================== */

@media (max-width: 768px) {
  /* 1. Form Düzenleri ve İki Sütunlu Alanlar */
  .form-row-2col,
  .form-grid-2,
  .grid-2col {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  /* 2. İşletme Detay Sayfası (business.php / business-detail.php) */
  .biz-header-card,
  .detail-header-card {
    padding: 18px 16px !important;
  }
  .biz-header-top {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 14px !important;
  }
  .biz-header-logo {
    width: 64px !important;
    height: 64px !important;
  }
  .biz-action-buttons {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
  }
  .biz-action-buttons .btn {
    width: 100% !important;
    justify-content: center !important;
  }
  .biz-content-layout {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  .biz-sidebar {
    order: 2;
  }
  .biz-main-col {
    order: 1;
  }
  .biz-gallery-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
  }

  /* 3. İlanlar, Blog ve Etkinlikler Sayfaları */
  .listings-layout,
  .articles-layout,
  .events-layout {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  .filter-sidebar {
    margin-bottom: 20px !important;
  }
  .event-item-card {
    flex-direction: column !important;
  }
  .event-item-img {
    width: 100% !important;
    height: 180px !important;
  }

  /* 4. İletişim Sayfası */
  .contact-wrapper {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  .contact-info-card,
  .contact-form-card {
    padding: 20px 16px !important;
  }

  /* 5. Giriş ve Kayıt Sayfaları */
  .auth-card {
    padding: 24px 18px !important;
    margin: 16px auto !important;
    border-radius: 4px !important;
  }
  .auth-title {
    font-size: 22px !important;
  }

  /* 6. Fırsatlar & Kuponlar Sayfası */
  .deals-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .deal-card {
    flex-direction: column !important;
  }
  .deal-card-img {
    width: 100% !important;
    height: 160px !important;
  }

  /* 7. Tablolar İçin Yatay Kaydırma */
  .table-responsive {
    width: 100% !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    display: block !important;
  }

  /* 8. Mobil Buton & Dokunma Alanları */
  .btn,
  button,
  .btn-post-ad {
    min-height: 42px;
  }
  input, select, textarea {
    font-size: 16px !important; /* iOS zoom engelleme */
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 24px !important;
    line-height: 1.2 !important;
  }
  .section-title {
    font-size: 19px !important;
  }
  .biz-gallery-grid {
    grid-template-columns: 1fr !important;
  }
  .header-actions {
    gap: 6px !important;
  }
  .header-post-btn span {
    display: none; /* Çok küçük mobilde sadece ikon veya firma ekle */
  }
}

/* -------------------------------------------------------------
   9. İşletme Detay Sayfası Mobil & Sade İkonlar Uyum CSS
-------------------------------------------------------------- */
.biz-detail-card-hero {
  background: #ffffff;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  margin-bottom: 28px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}
.biz-detail-hero-box {
  position: relative;
  min-height: 300px;
  background: #0f172a;
}
.biz-detail-hero-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  opacity: 0.9;
  display: block;
}
.biz-detail-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15,23,42,0.95) 0%, rgba(15,23,42,0.4) 60%, transparent 100%);
}
.biz-detail-hero-content {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  color: #fff;
  flex-wrap: wrap;
  gap: 16px;
  z-index: 2;
}
.biz-detail-title {
  font-size: 28px;
  font-weight: 800;
  margin: 0;
  line-height: 1.2;
  color: #ffffff;
}
.biz-detail-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.biz-quick-info-bar {
  padding: 16px 24px;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  flex-wrap: wrap;
  gap: 14px;
}
.biz-gallery-grid-responsive {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}
.biz-products-grid-responsive {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.biz-review-form-cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
.biz-sidebar-sticky {
  background: #ffffff;
  padding: 24px;
  border-radius: 4px;
  border: 1px solid #e2e8f0;
  position: sticky;
  top: 90px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

@media (max-width: 768px) {
  .biz-detail-hero-box {
    min-height: auto;
    display: flex;
    flex-direction: column;
  }
  .biz-detail-hero-img {
    height: 200px;
  }
  .biz-detail-hero-overlay {
    height: 200px;
  }
  .biz-detail-hero-content {
    position: static;
    background: #0f172a;
    padding: 18px 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .biz-detail-title {
    font-size: 21px;
  }
  .biz-detail-actions {
    flex-direction: column;
    width: 100%;
  }
  .biz-detail-actions a {
    width: 100%;
    justify-content: center;
  }
  .biz-quick-info-bar {
    padding: 14px 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .biz-gallery-grid-responsive {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .biz-products-grid-responsive {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .biz-review-form-cols {
    grid-template-columns: 1fr;
  }
  .biz-sidebar-sticky {
    position: static;
    top: auto;
    padding: 18px 16px;
  }
}

@media (max-width: 480px) {
  .biz-gallery-grid-responsive {
    grid-template-columns: 1fr;
  }
}

