/* ==========================================================================
   FİRMA REHBERİ - REFERANS TASARIM CSS SİSTEMİ
   Birebir Üst Kısım: Koyu Teal Topbar, Beyaz Navbar, Laptop Arka Planlı Hero
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,600&display=swap');

:root {
  --font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Reference Colors */
  --topbar-bg: #10444f;
  --topbar-btn-bg: #169b9b;
  --topbar-btn-hover: #138484;
  --brand-teal: #16a085;
  --search-btn-bg: #17a2b8;
  --search-btn-hover: #138496;

  /* Primary Palette */
  --primary: #0b2545;
  --primary-dark: #07192f;
  --primary-light: #134074;
  --primary-surface: #f1f5f9;
  
  --accent: #0ea5e9;
  --accent-hover: #0284c7;
  --accent-light: #e0f2fe;
  
  --secondary: #64748b;
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  --info: #17a2b8;
  
  --bg-main: #f8fafc;
  --bg-card: #ffffff;
  --bg-alt: #f1f5f9;
  
  --text-main: #1e293b;
  --text-body: #334155;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  
  --border-color: #e2e8f0;
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 2px 4px 0 rgba(15, 23, 42, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 10px 25px -5px rgba(15, 23, 42, 0.12);
  --shadow-hover: 0 15px 30px -5px rgba(15, 23, 42, 0.15);
  --shadow-card: 0 1px 3px 0 rgba(15, 23, 42, 0.05);
  
  --transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Reset */
*, *::before, *::after {
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-main);
  color: var(--text-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: var(--font-family);
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: -0.02em;
}

a {
  color: var(--accent-hover);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--accent-dark);
}

.text-teal {
  color: #0d9488 !important;
}

.bg-teal-subtle {
  background-color: #f0fdfa !important;
  color: #0f766e !important;
  border-color: #99f6e4 !important;
}

.badge.text-teal,
.badge.bg-teal-subtle {
  color: #0f766e !important;
}

/* ==========================================================================
   1. TOPBAR (BİREBİR KOYU TEAL ÇUBUK)
   ========================================================================== */

.site-topbar {
  position: relative;
  z-index: 1060;
  background-color: var(--topbar-bg);
  height: 42px;
  color: #ffffff;
  font-size: 0.8125rem;
  font-weight: 500;
  white-space: nowrap;
}

.site-topbar .container {
  overflow: visible !important;
}

.topbar-left {
  min-width: 0;
  white-space: nowrap;
}

.topbar-contact-item {
  color: #ffffff !important;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.825rem;
  white-space: nowrap !important;
  word-break: keep-all !important;
  overflow-wrap: normal !important;
  flex-shrink: 0;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.topbar-contact-item:hover {
  color: #99f6e4 !important;
  opacity: 0.9;
}

.topbar-contact-item i {
  font-size: 0.9rem;
  color: #ffffff;
  flex-shrink: 0;
}

.topbar-contact-item span {
  white-space: nowrap !important;
  word-break: keep-all !important;
  overflow-wrap: normal !important;
}

.topbar-right {
  white-space: nowrap;
  flex-shrink: 0;
}

.site-topbar .dropdown {
  position: relative;
  z-index: 1070;
}

.site-topbar .dropdown-menu {
  z-index: 99999 !important;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18) !important;
  min-width: 210px;
  margin-top: 1px !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
}

.topbar-btn {
  background-color: var(--topbar-btn-bg);
  color: #ffffff !important;
  height: 42px;
  padding: 0 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.825rem;
  font-weight: 600;
  border: none;
  text-decoration: none;
  transition: var(--transition);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  white-space: nowrap !important;
  flex-shrink: 0;
}

.topbar-btn:hover {
  background-color: var(--topbar-btn-hover);
  color: #ffffff !important;
}

/* ==========================================================================
   2. NAVBAR (BEYAZ ÇUBUK VE MENÜLER)
   ========================================================================== */

.site-navbar {
  background-color: #ffffff !important;
  border-bottom: 1px solid #eaeaea;
  padding: 0.85rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.text-brand-logo {
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.logo-text-black {
  color: #0b2545;
}

.logo-text-teal {
  color: #16a085;
}

/* Footer Brand Logo & Text (Aynı Tipografi & Yazı Fontu) */
.exact-footer-brand-logo {
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  line-height: 1.2;
}

.exact-footer-brand-logo .logo-text-white {
  color: #ffffff;
}

.exact-footer-brand-logo .logo-text-teal {
  color: #2dd4bf;
}

.exact-footer-brand-logo:hover .logo-text-white {
  color: #f8fafc;
}

.nav-link {
  font-weight: 600;
  font-size: 0.925rem;
  color: #334155 !important;
  padding: 0.5rem 0.85rem !important;
  transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
  color: #16a085 !important;
}

.nav-home-icon {
  font-size: 1.15rem;
  color: #334155 !important;
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !important;
}

.nav-home-icon:hover {
  color: #16a085 !important;
}

/* ==========================================================================
   DROPDOWN & MEGA MENU (HOVER GEÇİŞLİ & TEAL ÇİZGİLİ)
   ========================================================================== */

.custom-nav-dropdown {
  position: relative;
}

.site-navbar .nav-link.dropdown-toggle::after {
  display: none !important;
}

.nav-arrow {
  font-size: 0.65rem;
  margin-left: 3px;
  vertical-align: middle;
  color: #64748b;
  transition: transform 0.2s ease, color 0.2s ease;
}

.custom-nav-dropdown:hover .nav-arrow {
  transform: rotate(180deg);
  color: #16a085;
}

@media (min-width: 992px) {
  .site-navbar .container {
    position: relative;
  }
  
  .mega-dropdown-parent {
    position: static !important;
  }

  .custom-dropdown-menu {
    display: block !important;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    pointer-events: none;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-top: 3px solid #16a085;
    border-radius: 0 0 6px 6px;
    box-shadow: 0 14px 35px rgba(11, 37, 69, 0.12);
    margin-top: 0;
    padding: 0;
    z-index: 1050;
  }

  /* Görünmez Köprü: Menü ile Dropdown arasındaki boşlukta kapanmayı engeller */
  .custom-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 20px;
    display: block;
    background: transparent;
    pointer-events: auto;
  }

  .custom-nav-dropdown:hover > .custom-dropdown-menu,
  .custom-nav-dropdown.show-dropdown > .custom-dropdown-menu,
  .custom-dropdown-menu:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .custom-nav-dropdown.show-dropdown .nav-arrow {
    transform: rotate(180deg);
    color: #16a085;
  }


  /* 1. Tekli Dropdown (Firmalar) */
  .custom-dropdown-menu.single-dropdown {
    min-width: 170px;
    left: 0;
    top: 100%;
    padding: 6px 0;
  }

  .custom-dropdown-item {
    display: block;
    padding: 0.65rem 1.25rem;
    font-size: 0.85rem;
    color: #475569;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.15s ease;
  }

  .custom-dropdown-item:hover {
    color: #16a085;
    background-color: #f8fafc;
    padding-left: 1.5rem;
  }

  /* 2. Mega Dropdown (Sektörler - 4 Kolon) */
  .custom-dropdown-menu.mega-dropdown-menu {
    left: 0;
    right: 0;
    width: 100%;
    top: 100%;
    padding: 1.5rem 1.75rem;
  }

  .mega-menu-content {
    width: 100%;
  }

  .mega-menu-column {
    padding: 0.25rem 1.25rem;
  }

  .border-end-subtle {
    border-right: 1px solid #f1f5f9;
  }

  .mega-menu-link {
    display: block;
    padding: 0.4rem 0.5rem;
    font-size: 0.835rem;
    color: #475569;
    font-weight: 500;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.15s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .mega-menu-link:hover {
    color: #16a085;
    background-color: #f8fafc;
    padding-left: 0.85rem;
  }
}

@media (max-width: 991.98px) {
  .custom-dropdown-menu {
    border: none;
    box-shadow: none;
    background-color: #f8fafc;
    padding: 0.5rem 1rem;
    border-left: 2px solid #16a085;
    margin-left: 0.5rem;
  }

  .custom-dropdown-item, .mega-menu-link {
    display: block;
    padding: 0.45rem 0.5rem;
    font-size: 0.85rem;
    color: #475569;
    text-decoration: none;
  }

  .border-end-subtle {
    border-right: none;
  }
}


/* ==========================================================================
   3. EXACT HERO SECTION (BİREBİR REFERANS GÖRSELİ)
   ========================================================================== */

.exact-hero-section {
  position: relative;
  min-height: 460px;
  background: url('../images/hero-bg.jpg') center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 0;
}

.exact-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.5));
  z-index: 1;
}

.exact-hero-container {
  position: relative;
  z-index: 2;
}

.exact-hero-content {
  max-width: 980px;
  margin: 0 auto;
}

.exact-hero-title {
  font-size: 2.6rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
  text-transform: uppercase;
}

.exact-hero-subtitle {
  font-size: 1.15rem;
  color: #ffffff;
  font-weight: 500;
  margin-bottom: 2.5rem;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
}

/* Yüzen Beyaz Arama Kartı */
.exact-search-card {
  background: #ffffff;
  border-radius: 4px;
  padding: 6px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
  max-width: 960px;
  margin: 0 auto;
}

.exact-search-form {
  display: flex;
  align-items: center;
  width: 100%;
}

.exact-search-icon-badge {
  width: 46px;
  height: 46px;
  background-color: #14b8a6;
  color: #ffffff;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-right: 8px;
}

.exact-search-field {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
}

.exact-search-input {
  border: none;
  outline: none;
  width: 100%;
  padding: 10px 14px;
  font-size: 0.95rem;
  color: #1e293b;
  font-weight: 500;
  background: transparent;
}

.exact-search-input::placeholder {
  color: #94a3b8;
}

.exact-search-select {
  border: none;
  outline: none;
  width: 100%;
  padding: 10px 14px;
  font-size: 0.95rem;
  color: #64748b;
  font-weight: 500;
  background: transparent;
  cursor: pointer;
}

.exact-search-divider {
  width: 1px;
  height: 28px;
  background-color: #e2e8f0;
  flex-shrink: 0;
  margin: 0 4px;
}

.exact-search-btn {
  background-color: #17a2b8;
  color: #ffffff;
  border: none;
  outline: none;
  padding: 10px 24px;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  transition: var(--transition);
  cursor: pointer;
  height: 46px;
}

.exact-search-btn:hover {
  background-color: #138496;
}

@media (max-width: 991.98px) {
  .exact-hero-title {
    font-size: 2rem;
  }
  .exact-search-form {
    flex-direction: column;
    gap: 8px;
  }
  .exact-search-icon-badge {
    display: none;
  }
  .exact-search-divider {
    display: none;
  }
  .exact-search-field {
    width: 100%;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
  }
  .exact-search-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   4. EXACT VITRIN FIRMALAR (REFERANS GÖRSELİNE BİREBİR UYGUN)
   ========================================================================== */

.exact-vitrin-header {
  margin-bottom: 1.25rem;
}

.exact-vitrin-title,
.exact-section-title {
  font-size: 1.55rem;
  font-weight: 800;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1.25;
}

.text-center .exact-section-title,
.text-center .exact-vitrin-title,
.exact-section-title.justify-content-center,
.exact-vitrin-title.justify-content-center {
  justify-content: center !important;
  text-align: center !important;
}

.exact-section-title-sm {
  font-size: 1.15rem;
  font-weight: 800;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
  letter-spacing: -0.01em;
  margin: 0;
  line-height: 1.25;
}

.title-dark {
  color: #1e293b;
}

.title-teal {
  color: #14b8a6;
}

.exact-vitrin-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-bottom: 3px solid #14b8a6;
  border-radius: 4px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: all 0.2s ease;
}

.exact-vitrin-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.exact-vitrin-img-link {
  display: block;
  text-decoration: none;
  width: 100%;
  margin: 0;
  padding: 0;
}

.exact-vitrin-img-box {
  position: relative;
  width: 100%;
  height: 155px;
  background-color: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
  margin: 0;
  border-bottom: 1px solid #e2e8f0;
}

.exact-vitrin-img-box img,
.exact-vitrin-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  padding: 0;
  margin: 0;
  transition: filter 0.3s ease, transform 0.3s ease;
}

.exact-vitrin-card:hover .exact-vitrin-img-box img,
.exact-vitrin-card:hover .exact-vitrin-img {
  filter: blur(2.5px);
  transform: scale(1.05);
}

.exact-vitrin-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.32);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease-in-out, visibility 0.25s ease-in-out;
  z-index: 2;
}

.exact-vitrin-card:hover .exact-vitrin-overlay {
  opacity: 1;
  visibility: visible;
}

.exact-vitrin-btn {
  width: 36px;
  height: 36px;
  background-color: #14b8a6;
  color: #ffffff;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
  transform: scale(0.85);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.15s ease;
  filter: none !important;
}

.exact-vitrin-card:hover .exact-vitrin-btn {
  transform: scale(1);
}

.exact-vitrin-btn:hover {
  background-color: #0d9488;
  transform: scale(1.1);
}

.exact-vitrin-no-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: #94a3b8;
  background: #f1f5f9;
}


.exact-vitrin-body {
  padding: 1rem 0.85rem 0.75rem 0.85rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  background: #ffffff;
}

.exact-vitrin-name {
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 0.85rem;
  line-height: 1.35;
  min-height: 2.4rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.exact-vitrin-name a {
  color: #1e293b;
  text-decoration: none;
  transition: var(--transition);
}

.exact-vitrin-name a:hover {
  color: #14b8a6;
}

.exact-vitrin-footer {
  margin-top: auto;
  padding-top: 0.65rem;
  border-top: 1px dashed #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.exact-vitrin-city {
  font-size: 0.75rem;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 500;
}

.exact-vitrin-city i {
  color: #64748b;
  font-size: 0.8rem;
}

.exact-vitrin-stars {
  display: flex;
  align-items: center;
  gap: 2px;
}

.exact-star-icon {
  color: #eab308;
  font-size: 0.75rem;
}


/* ==========================================================================
   ÜRÜN & İLANLAR LİSTESİ (6 KOLONLU KARE GRID & SIDEBAR)
   ========================================================================== */

.exact-sidebar-box {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
  overflow: hidden;
}

.exact-sidebar-header {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #f1f5f9;
  background-color: #ffffff;
}

.exact-sidebar-body {
  padding: 1rem;
}

.exact-cat-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0.85rem;
  color: #334155;
  font-size: 0.835rem;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid #f8fafc;
  transition: all 0.15s ease;
}

.exact-cat-item:hover, .exact-cat-item.active {
  background-color: #f0fdfa;
  color: #14b8a6;
  padding-left: 1.05rem;
}

.exact-cat-item i.cat-icon {
  font-size: 0.95rem;
  color: #1e293b;
  margin-right: 0.65rem;
}

.exact-cat-item:hover i.cat-icon, .exact-cat-item.active i.cat-icon {
  color: #14b8a6;
}

.exact-cat-item i.chevron-icon {
  font-size: 0.7rem;
  color: #94a3b8;
}

.exact-product-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  padding: 4px;
  text-align: center;
  transition: all 0.2s ease;
}

.exact-product-card:hover {
  border-color: #14b8a6;
  box-shadow: 0 6px 16px rgba(20, 184, 166, 0.15);
  transform: translateY(-2px);
}

.exact-product-img-box {
  width: 100%;
  aspect-ratio: 1 / 1;
  background-color: #f8fafc;
  border-radius: 3px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.exact-product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.exact-product-no-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cbd5e1;
  font-size: 1.5rem;
}

.exact-product-title {
  display: block;
  font-size: 0.72rem;
  color: #475569;
  margin-top: 5px;
  margin-bottom: 2px;
  padding: 0 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 500;
  line-height: 1.25;
}

.exact-product-card:hover .exact-product-title {
  color: #14b8a6;
}

.btn-teal-custom {
  background-color: #14b8a6;
  color: #ffffff;
  border: none;
  font-weight: 700;
  font-size: 0.875rem;
  transition: all 0.2s ease;
}

.btn-teal-custom:hover {
  background-color: #0d9488;
  color: #ffffff;
}


/* ==========================================================================
   İŞ İLANLARI LİSTESİ (BİREBİR REFERANS TASARIMI)
   ========================================================================== */

.exact-job-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  padding: 1rem 1.15rem;
  transition: all 0.2s ease;
}

.exact-job-card:hover {
  border-color: #14b8a6;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  transform: translateY(-1px);
}

.exact-job-img-box {
  width: 90px;
  height: 75px;
  background-color: #ffffff;
  border: 1px solid #f1f5f9;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
}

.exact-job-img {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.exact-job-no-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cbd5e1;
  font-size: 2rem;
  background-color: #f8fafc;
}

.exact-job-title a:hover {
  color: #14b8a6 !important;
}

.btn-exact-job-btn {
  background-color: #1e293b;
  color: #ffffff !important;
  font-size: 0.725rem;
  font-weight: 700;
  padding: 0.45rem 0.95rem;
  border-radius: 3px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: inline-block;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-exact-job-btn:hover {
  background-color: #14b8a6;
  color: #ffffff !important;
  box-shadow: 0 4px 10px rgba(20, 184, 166, 0.3);
}




/* ==========================================================================
   FİRMANIZI EKLEMEK İSTER MİSİNİZ? (CTA BANNER - BİREBİR REFERANS)
   ========================================================================== */

.exact-cta-section {
  position: relative;
  background: #27272a linear-gradient(135deg, #18181b 0%, #27272a 50%, #18181b 100%);
  padding: 4.5rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.exact-cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.exact-cta-container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}

.exact-cta-box {
  background: rgba(20, 20, 20, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.28);
  padding: 2.75rem 2.5rem;
  text-align: center;
  max-width: 780px;
  width: 100%;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  border-radius: 2px;
}

.exact-cta-title {
  color: #ffffff;
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  margin-bottom: 0.85rem;
  text-transform: uppercase;
}

.exact-cta-text {
  color: #e4e4e7;
  font-size: 0.925rem;
  line-height: 1.6;
  max-width: 620px;
  margin: 0 auto 1.5rem auto;
  font-weight: 400;
}

.exact-cta-btn {
  display: inline-block;
  background-color: #1abc9c;
  color: #ffffff !important;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.6rem 2.25rem;
  border-radius: 2px;
  text-decoration: none;
  transition: var(--transition);
  border: none;
}

.exact-cta-btn:hover {
  background-color: #16a085;
  color: #ffffff !important;
  transform: translateY(-1px);
}

/* ==========================================================================
   BLOG & DUYURULAR (BİREBİR REFERANS TASARIMI)
   ========================================================================== */

.exact-blog-header {
  margin-bottom: 1.25rem;
}

.exact-blog-section-title {
  font-size: 1.55rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: -0.02em;
  margin: 0;
}

.exact-blog-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  overflow: hidden;
  height: 125px;
  transition: var(--transition);
}

.exact-blog-card:hover {
  border-color: #cbd5e1;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}

.exact-blog-img-link {
  display: block;
  width: 100%;
  height: 100%;
}

.exact-blog-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.exact-blog-body {
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
}

.exact-blog-title {
  font-size: 0.875rem;
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.exact-blog-title a {
  color: #1e293b;
  text-decoration: none;
  transition: var(--transition);
}

.exact-blog-title a:hover {
  color: #14b8a6;
}

.exact-blog-summary {
  font-size: 0.75rem;
  color: #94a3b8;
  line-height: 1.45;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.exact-bottom-ad-box {
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 767.98px) {
  .exact-blog-card {
    height: auto;
    min-height: 110px;
  }
}

/* ==========================================================================
   İSTATİSTİKLER (BİREBİR REFERANS TASARIMI)
   ========================================================================== */

.exact-stat-box {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  padding: 1.5rem 1rem;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

.exact-stat-box:hover {
  border-color: #14b8a6;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
}

.exact-stat-icon {
  color: #14b8a6;
  font-size: 1.6rem;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.exact-stat-number {
  font-size: 1.75rem;
  font-weight: 800;
  color: #1e293b;
  line-height: 1.1;
  margin-bottom: 0.35rem;
  letter-spacing: -0.02em;
}

.exact-stat-label {
  color: #14b8a6;
  font-size: 0.8125rem;
  font-weight: 600;
}

/* ==========================================================================
   5. POPULAR SECTORS & GLOBAL CARDS
   ========================================================================== */




.stats-counter-bar {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 1.5rem 2rem;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  margin-top: -2.5rem;
  position: relative;
  z-index: 10;
  border: 1px solid var(--border-color);
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.stat-number {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
}

.stat-label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* Buttons */
.btn {
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: var(--radius-sm);
  padding: 0.5rem 1.25rem;
  transition: var(--transition);
}

.btn-primary-custom {
  background-color: var(--primary);
  color: #ffffff;
  border: 1px solid var(--primary);
}

.btn-primary-custom:hover {
  background-color: var(--primary-light);
  color: #ffffff;
}

.btn-accent-custom {
  background-color: #17a2b8;
  color: #ffffff !important;
  border: none;
}

.btn-accent-custom:hover {
  background-color: #138496;
  color: #ffffff !important;
}

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

.btn-outline-custom:hover {
  background-color: var(--primary-surface);
  color: var(--accent-hover);
  border-color: var(--accent);
}

/* Company Card */
.company-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  box-shadow: var(--shadow-card);
}

.company-card:hover {
  transform: translateY(-4px);
  border-color: #cbd5e1;
  box-shadow: var(--shadow-hover);
}

.company-logo-wrap {
  width: 58px;
  height: 58px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  background-color: #ffffff;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.company-logo-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.company-badge-featured {
  background-color: #f59e0b;
  color: #ffffff;
  font-size: 0.6875rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 4px;
}

.company-badge-verified {
  background-color: #16a085;
  color: #ffffff;
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
}

.company-name {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--primary);
}

.company-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

/* Category Grid Card */
.category-grid-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.25rem 1rem;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.category-grid-card:hover {
  transform: translateY(-4px);
  border-color: #16a085;
  box-shadow: var(--shadow-hover);
}

.category-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background-color: #f0fdfa;
  color: #0d9488;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  transition: var(--transition);
}

.category-grid-card:hover .category-icon-box {
  background-color: #0d9488;
  color: #ffffff;
}

.category-title {
  font-size: 0.925rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.25rem;
}

.category-count {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  background-color: var(--bg-alt);
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

/* Product Card */
.product-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

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

.product-image-wrap {
  height: 180px;
  background-color: #f1f5f9;
  position: relative;
  overflow: hidden;
}

.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-price-badge {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(11, 37, 69, 0.9);
  color: #38bdf8;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 3px 10px;
  border-radius: 4px;
}

/* Job Card */
.job-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.job-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.work-type-badge {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
}

.work-type-full_time { background: #e0f2fe; color: #0369a1; }
.work-type-part_time { background: #fef3c7; color: #b45309; }
.work-type-remote { background: #dcfce7; color: #15803d; }
.work-type-freelance { background: #f3e8ff; color: #7e22ce; }
.work-type-internship { background: #fee2e2; color: #b91c1c; }

/* Event Card */
.event-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.event-date-box {
  width: 48px;
  height: 48px;
  background-color: var(--primary);
  color: #ffffff;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  text-align: center;
}

.event-date-day {
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1;
}

.event-date-month {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
}

/* Rating Stars */
.rating-stars {
  color: #f59e0b;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.rating-score {
  font-weight: 700;
  color: var(--text-main);
  margin-left: 4px;
  font-size: 0.85rem;
}

.rating-count {
  color: var(--text-light);
  font-size: 0.78rem;
}

/* ==========================================================================
   EXACT FİRMA DETAY SAYFASI (SOLDA BİLGİLER, SAĞDA LOGO)
   ========================================================================== */

.exact-detail-header-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  padding: 1.75rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}

.exact-detail-title {
  font-size: 1.65rem;
  font-weight: 900;
  color: #1e293b;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.exact-detail-meta-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.875rem;
  color: #475569;
}

.exact-detail-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.exact-detail-logo-box {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  padding: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  height: 160px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.exact-detail-logo-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Firma Detay Aksiyon Butonları (Hemen Ara, WhatsApp, Web Sitesi) */
.exact-detail-action-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.btn-detail-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 1.15rem;
  border-radius: 6px;
  text-decoration: none !important;
  white-space: nowrap;
  line-height: 1.3;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.btn-detail-phone {
  background-color: #0b2545;
  color: #ffffff !important;
  border: 1px solid #0b2545;
}

.btn-detail-phone:hover {
  background-color: #133a6b;
  color: #ffffff !important;
  border-color: #133a6b;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(11, 37, 69, 0.22);
}

.btn-detail-whatsapp {
  background-color: #25d366;
  color: #ffffff !important;
  border: 1px solid #25d366;
}

.btn-detail-whatsapp:hover {
  background-color: #1ebc59;
  color: #ffffff !important;
  border-color: #1ebc59;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-detail-website {
  background-color: #ffffff;
  color: #0d9488 !important;
  border: 1.5px solid #0d9488;
}

.btn-detail-website:hover {
  background-color: #0d9488;
  color: #ffffff !important;
  border-color: #0d9488;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.25);
}

.exact-detail-section-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}

.exact-detail-section-header {
  padding: 0.9rem 1.25rem 0.75rem 1.25rem;
  border-bottom: 1px solid #f1f5f9;
  background: #ffffff;
}

.exact-section-title-sm {
  font-size: 1.15rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
}

.exact-detail-section-body {
  padding: 1.25rem;
}

.exact-gallery-item {
  height: 110px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
}

.exact-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.exact-alert-box {
  padding: 0.85rem 1.25rem;
  border-radius: 3px;
  font-size: 0.825rem;
  font-weight: 500;
}

.exact-alert-pink {
  background-color: #fdf2f2;
  color: #e11d48;
  border: 1px solid #fecdd3;
}

.exact-alert-blue {
  background-color: #f0f9ff;
  color: #0369a1;
  border: 1px solid #bae6fd;
  text-align: center;
}

.exact-alert-yellow {
  background-color: #fffbeb;
  color: #92400e;
  border: 1px solid #fde68a;
}

.exact-form-control {
  border: 1px solid #e2e8f0;
  border-radius: 3px;
  font-size: 0.85rem;
  padding: 0.5rem 0.75rem;
  background-color: #ffffff;
}

.exact-form-control:focus {
  border-color: #14b8a6;
  box-shadow: 0 0 0 2px rgba(20, 184, 166, 0.15);
}

.exact-sidebar-widget {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}

.exact-sidebar-widget-header {
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid #f1f5f9;
  background: #ffffff;
}

.exact-sidebar-widget-body {
  padding: 1.25rem;
}

/* ==========================================================================
   EXACT AUTH PAGES (KULLANICI GİRİŞ & KULLANICI KAYIT)
   ========================================================================== */

.exact-page-hero {
  background: #081d33 url('../images/hero-bg.jpg') center center / cover no-repeat;
  position: relative;
  padding: 2.5rem 0;
  min-height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.exact-page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(7, 25, 47, 0.85), rgba(7, 25, 47, 0.95));
  z-index: 1;
}

.exact-page-hero-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
}

.exact-page-hero-title {
  font-size: 1.85rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.25rem;
  letter-spacing: -0.01em;
}

.exact-page-hero-breadcrumb {
  font-size: 0.825rem;
  color: #94a3b8;
}

.exact-page-hero-breadcrumb a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
}

.exact-page-hero-breadcrumb a:hover {
  color: #14b8a6;
}

.exact-auth-card {
  background: #14b8a6;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.exact-auth-left {
  background-color: #14b8a6;
  padding: 2.25rem 2.25rem 1.75rem 2.25rem;
  color: #ffffff;
}

.exact-auth-heading {
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.25rem;
}

.exact-auth-input {
  background-color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 3px;
  font-size: 0.875rem;
  padding: 0.6rem 0.85rem;
  color: #334155;
}

.exact-auth-input::placeholder {
  color: #94a3b8;
}

.exact-auth-btn-ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.85);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.55rem 1.5rem;
  width: 100%;
  border-radius: 3px;
  transition: var(--transition);
  cursor: pointer;
}

.exact-auth-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.exact-auth-link {
  color: #ffffff;
  font-size: 0.8rem;
  text-decoration: none;
  opacity: 0.9;
}

.exact-auth-link:hover {
  opacity: 1;
  text-decoration: underline;
}

.exact-auth-right {
  background-color: #ffffff;
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.exact-auth-welcome-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 0.75rem;
}

.exact-auth-welcome-text {
  font-size: 0.785rem;
  color: #64748b;
  line-height: 1.55;
  margin-bottom: 0.85rem;
}

.exact-auth-btn-blue {
  background-color: #3f51b5;
  color: #ffffff !important;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.6rem 1.25rem;
  border-radius: 3px;
  text-decoration: none;
  text-align: center;
  display: block;
  width: 100%;
  transition: var(--transition);
  border: none;
  margin-top: 0.5rem;
}

.exact-auth-btn-blue:hover {
  background-color: #303f9f;
  color: #ffffff !important;
}



/* ==========================================================================
   EXACT FOOTER (BİREBİR KOYU TEAL REFERANS TASARIMI)
   ========================================================================== */

.exact-footer {
  background-color: #0b3c46;
  border-top: 3px solid #14b8a6;
  color: #cbd5e1;
  padding: 3.5rem 0 1.5rem 0;
}

.brand-text-dark {
  font-size: 1.45rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.exact-footer-desc {
  font-size: 0.785rem;
  color: #cbd5e1;
  line-height: 1.6;
}

.exact-footer-socials a {
  color: #ffffff;
  font-size: 0.85rem;
  opacity: 0.85;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.exact-footer-socials a:hover {
  opacity: 1;
  color: #14b8a6;
  transform: translateY(-1px);
}

.exact-footer-title {
  font-size: 0.925rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.exact-footer-line {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.18);
  margin-bottom: 1rem;
  position: relative;
}

.exact-footer-line::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 35px;
  height: 2px;
  background-color: #14b8a6;
}

.exact-footer-links {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.exact-footer-links li {
  margin-bottom: 0.5rem;
}

.exact-footer-links li a {
  color: #ffffff;
  font-size: 0.8125rem;
  text-decoration: none;
  transition: var(--transition);
}

.exact-footer-links li a:hover {
  color: #14b8a6;
  padding-left: 4px;
}

.exact-footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
  font-size: 0.775rem;
  color: #ffffff;
  font-weight: 500;
}

/* ==========================================================================
   ANA SAYFA: SON EKLENEN ÜRÜN & İLANLAR, İŞ İLANLARI VE ETKİNLİKLER
   ========================================================================== */

.exact-home-product-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}

.exact-home-product-card:hover {
  border-color: #14b8a6;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.07);
  transform: translateY(-2px);
}

.exact-home-product-img-box {
  position: relative;
  width: 100%;
  height: 160px;
  max-height: 160px;
  background-color: #f8fafc;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #f1f5f9;
}

.exact-home-product-img-box a {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 160px;
  overflow: hidden;
}

.exact-home-product-img-box img,
.exact-home-product-img-box a img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 160px !important;
  object-fit: cover !important;
  display: block !important;
  transition: transform 0.3s ease;
}

.exact-home-product-card:hover .exact-home-product-img-box img {
  transform: scale(1.05);
}


.exact-home-product-price {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: #0f172a;
  color: #14b8a6;
  font-size: 0.775rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 3px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  letter-spacing: 0.02em;
}

.exact-home-product-body {
  padding: 0.85rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.exact-home-product-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.5rem;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.35rem;
}

.exact-home-product-title a {
  color: #1e293b;
  text-decoration: none;
  transition: color 0.15s ease;
}

.exact-home-product-title a:hover {
  color: #14b8a6;
}

.exact-home-job-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  padding: 0.85rem 1rem;
  transition: all 0.2s ease;
}

.exact-home-job-item:hover {
  border-color: #14b8a6;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  transform: translateY(-1px);
}

.exact-home-event-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  padding: 0.85rem 1rem;
  transition: all 0.2s ease;
}

.exact-home-event-item:hover {
  border-color: #14b8a6;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  transform: translateY(-1px);
}

.exact-home-event-datebox {
  width: 48px;
  height: 48px;
  background: #0f172a;
  color: #ffffff;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.exact-home-event-datebox .day {
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1;
  color: #14b8a6;
}

.exact-home-event-datebox .month {
  font-size: 0.625rem;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1;
  margin-top: 2px;
  letter-spacing: 0.05em;
  opacity: 0.9;
}

/* ==========================================================================
   KATEGORİ LİSTESİ SCROLL (AŞAĞI YUKARI KAYDIRILABİLİR LİSTE)
   ========================================================================== */

.exact-cat-list-scroll {
  max-height: 380px !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  scrollbar-width: thin;
  scrollbar-color: #14b8a6 #f1f5f9;
  border-radius: 4px;
}

.exact-cat-list-scroll::-webkit-scrollbar {
  width: 5px;
}

.exact-cat-list-scroll::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 4px;
}

.exact-cat-list-scroll::-webkit-scrollbar-thumb {
  background: #14b8a6;
  border-radius: 4px;
}

.exact-cat-list-scroll::-webkit-scrollbar-thumb:hover {
  background: #0f766e;
}

.exact-cat-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 0.85rem;
  font-size: 0.825rem;
  font-weight: 500;
  color: #334155;
  text-decoration: none;
  background-color: #ffffff;
  border-bottom: 1px solid #f1f5f9;
  transition: all 0.15s ease;
}

.exact-cat-item:last-child {
  border-bottom: none;
}

.exact-cat-item:hover {
  background-color: #f0fdfa;
  color: #0f766e;
  padding-left: 1.05rem;
}

.exact-cat-item.active {
  background-color: #14b8a6 !important;
  color: #ffffff !important;
  font-weight: 600;
}

.exact-cat-item.active .cat-icon,
.exact-cat-item.active .chevron-icon {
  color: #ffffff !important;
}

.exact-cat-item .cat-icon {
  font-size: 0.95rem;
  margin-right: 0.55rem;
  color: #14b8a6;
  transition: color 0.15s ease;
}

.exact-cat-item:hover .cat-icon {
  color: #0f766e;
}

.exact-cat-item .chevron-icon {
  font-size: 0.75rem;
  color: #94a3b8;
  transition: transform 0.15s ease, color 0.15s ease;
}

.exact-cat-item:hover .chevron-icon {
  color: #0f766e;
  transform: translateX(2px);
}

/* ==========================================================================
   YENİ NESİL GİRİŞ & KAYIT (MODERN AUTH - SİVRİ KÖŞELİ & YATAY DÜZEN)
   ========================================================================== */

.modern-auth-wrapper {
  background: #f8fafc;
  min-height: calc(100vh - 280px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1rem;
}

.modern-auth-card {
  background: #ffffff;
  border-radius: 0px !important; /* Sivri / Keskin Köşe */
  overflow: hidden;
  box-shadow: 0 10px 30px -5px rgba(15, 23, 42, 0.08), 0 0 0 1px rgba(226, 232, 240, 0.9);
  border: 1px solid #e2e8f0;
  width: 100%;
}

.modern-auth-card-login {
  max-width: 860px;
  margin: 0 auto;
}

.modern-auth-card-register {
  max-width: 960px;
  margin: 0 auto;
}

/* Sol Tanıtım & Bilgi Paneli */
.modern-auth-side {
  background: linear-gradient(145deg, #09343d 0%, #0d4d5a 50%, #0f172a 100%);
  color: #ffffff;
  padding: 2.75rem 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  border-radius: 0px !important;
}

.modern-auth-side::after {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.22) 0%, transparent 70%);
  border-radius: 0;
  pointer-events: none;
}

.modern-auth-side-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.75rem;
}

.modern-auth-side-icon {
  width: 42px;
  height: 42px;
  background: rgba(20, 184, 166, 0.2);
  border: 1px solid rgba(20, 184, 166, 0.4);
  border-radius: 0px !important; /* Sivri Köşe */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #2dd4bf;
}

.modern-auth-side-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.modern-auth-side-desc {
  font-size: 0.875rem;
  color: #cbd5e1;
  line-height: 1.55;
  margin-bottom: 1.75rem;
}

.modern-auth-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.modern-auth-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.835rem;
  color: #e2e8f0;
  line-height: 1.45;
}

.modern-auth-feature-icon {
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0px !important; /* Sivri Köşe */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2dd4bf;
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.modern-auth-side-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.25rem;
}

.modern-auth-switch-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.65rem 1.25rem;
  border-radius: 0px !important; /* Sivri Köşe */
  text-decoration: none;
  transition: all 0.2s ease;
  width: 100%;
}

.modern-auth-switch-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #2dd4bf;
  color: #ffffff !important;
  transform: translateY(-1px);
}

/* Sağ Form Alanı */
.modern-auth-form-area {
  padding: 2.5rem 2.5rem;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 0px !important;
}

.modern-auth-form-header {
  margin-bottom: 1.5rem;
}

.modern-auth-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 0px !important; /* Sivri Köşe */
  background: rgba(20, 184, 166, 0.1);
  color: #0d9488;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  border-left: 3px solid #0d9488;
}

.modern-auth-form-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}

.modern-auth-form-subtitle {
  font-size: 0.835rem;
  color: #64748b;
  margin-bottom: 0;
}

/* Form Input Grupları */
.modern-input-group {
  position: relative;
  margin-bottom: 1rem;
}

.modern-input-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: #334155;
  margin-bottom: 0.35rem;
  display: block;
}

.modern-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.modern-input-icon {
  position: absolute;
  left: 12px;
  color: #94a3b8;
  font-size: 0.95rem;
  pointer-events: none;
  transition: color 0.2s ease;
  z-index: 2;
}

.modern-input-field {
  width: 100%;
  height: 44px;
  padding: 0.55rem 0.85rem 0.55rem 38px;
  background-color: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 0px !important; /* Sivri / Keskin Köşe */
  font-size: 0.875rem;
  color: #0f172a;
  transition: all 0.2s ease;
  font-weight: 500;
}

.modern-input-field:focus {
  background-color: #ffffff;
  border-color: #0d9488;
  outline: none;
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.12);
}

.modern-input-field:focus + .modern-input-icon,
.modern-input-wrap:focus-within .modern-input-icon {
  color: #0d9488;
}

.modern-input-field::placeholder {
  color: #94a3b8;
  font-weight: 400;
}

.btn-toggle-password {
  position: absolute;
  right: 10px;
  background: none;
  border: none;
  color: #94a3b8;
  font-size: 1rem;
  cursor: pointer;
  padding: 4px;
  z-index: 2;
  transition: color 0.15s ease;
}

.btn-toggle-password:hover {
  color: #0f172a;
}

/* Hesap Türü Seçim Kartları (Kayıt Ol Sayfasında) */
.modern-role-selector {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 1rem;
}

.modern-role-card {
  position: relative;
  display: block;
  cursor: pointer;
}

.modern-role-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.modern-role-box {
  border: 1.5px solid #e2e8f0;
  background-color: #f8fafc;
  border-radius: 0px !important; /* Sivri / Keskin Köşe */
  padding: 0.65rem 0.75rem;
  text-align: center;
  transition: all 0.2s ease;
  height: 100%;
}

.modern-role-box i {
  font-size: 1.2rem;
  color: #64748b;
  margin-bottom: 0.2rem;
  display: block;
  transition: color 0.2s ease;
}

.modern-role-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: #1e293b;
  display: block;
  margin-bottom: 2px;
}

.modern-role-desc {
  font-size: 0.7rem;
  color: #94a3b8;
  line-height: 1.2;
  display: block;
}

.modern-role-card input[type="radio"]:checked + .modern-role-box {
  border-color: #0d9488;
  background-color: #f0fdfa;
  box-shadow: 0 2px 8px rgba(13, 148, 136, 0.12);
}

.modern-role-card input[type="radio"]:checked + .modern-role-box i {
  color: #0d9488;
}

.modern-role-card input[type="radio"]:checked + .modern-role-box .modern-role-title {
  color: #0f766e;
}

/* Submit Butonu */
.btn-modern-auth-submit {
  width: 100%;
  height: 46px;
  background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
  color: #ffffff !important;
  font-size: 0.925rem;
  font-weight: 700;
  border: none;
  border-radius: 0px !important; /* Sivri / Keskin Köşe */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 6px 16px -3px rgba(13, 148, 136, 0.35);
  transition: all 0.2s ease;
  cursor: pointer;
}

.btn-modern-auth-submit:hover {
  background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px -3px rgba(13, 148, 136, 0.45);
  color: #ffffff !important;
}

.btn-modern-auth-submit:active {
  transform: translateY(0);
}

.modern-auth-wrapper .form-check-input {
  border-radius: 0px !important; /* Sivri Köşeli Checkbox */
}

/* Responsive Uyumluluk */
@media (max-width: 991.98px) {
  .modern-auth-side {
    padding: 2rem 1.5rem;
  }
  .modern-auth-form-area {
    padding: 2rem 1.5rem;
  }
  
  /* Mobil Arka Plan Karartma Perdesi (Tamamen Net, Blursuz ve Sorunsuz) */
  .mobile-nav-backdrop {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    z-index: 99990 !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.28s ease, visibility 0.28s ease;
  }

  .mobile-nav-backdrop.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  /* Navbar Mobil Stacking Context (Topbar ve her şeyin üstünde) */
  .site-navbar {
    z-index: 99995 !important;
  }

  /* Soldan Sağa Açılan, Sol Tarafa Sıfır Yapışık Çekmece Menü */
  .site-navbar .navbar-collapse {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    bottom: 0 !important;
    width: 300px !important;
    max-width: 85vw !important;
    height: 100% !important;
    height: 100dvh !important;
    max-height: 100dvh !important;
    background-color: #ffffff !important;
    background: #ffffff !important;
    z-index: 99999 !important;
    box-shadow: 8px 0 35px rgba(0, 0, 0, 0.3) !important;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 0 !important;
    border: none !important;
    border-right: 1px solid #e2e8f0 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    overflow: hidden !important; /* Dış çekmece kaymaz, butonlar altta sabit kalır */
    filter: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    transform: translate3d(-100%, 0, 0) !important;
    transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1) !important;
    visibility: hidden;
  }

  .site-navbar .navbar-collapse.show {
    transform: translate3d(0, 0, 0) !important;
    visibility: visible !important;
  }

  .site-navbar .navbar-collapse.collapsing {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    bottom: 0 !important;
    width: 300px !important;
    height: 100% !important;
    height: 100dvh !important;
    max-height: 100dvh !important;
    background-color: #ffffff !important;
    background: #ffffff !important;
    z-index: 99999 !important;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    overflow: hidden !important;
    filter: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1) !important;
    visibility: visible;
  }

  /* Çekmece Üst Başlık & Kapatma Butonu (Sabit Üstte) */
  .mobile-drawer-header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 0.95rem 1.15rem !important;
    border-bottom: 1px solid #f1f5f9 !important;
    background: #ffffff !important;
    flex-shrink: 0 !important;
  }

  .mobile-drawer-close {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #f1f5f9;
    border: none;
    color: #475569;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s ease;
  }

  .mobile-drawer-close:hover {
    background: #e2e8f0;
    color: #0f172a;
  }

  /* Menülerin Alt Alta Sıralı Listelenmesi (Yalnızca Bu Alan Kaydırılabilir) */
  .site-navbar .navbar-nav {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    padding: 0.75rem 0.85rem !important;
    gap: 3px !important;
    width: 100% !important;
    flex: 1 1 auto !important;
    min-height: 0 !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    overscroll-behavior: contain !important;
  }

  .site-navbar .navbar-nav .nav-item {
    width: 100% !important;
  }

  .site-navbar .navbar-nav .nav-link {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 0.7rem 0.95rem !important;
    font-size: 0.925rem !important;
    font-weight: 600 !important;
    color: #334155 !important;
    border-radius: 6px !important;
    border: none !important;
    background: transparent !important;
    transition: all 0.15s ease !important;
  }

  .site-navbar .navbar-nav .nav-link:hover,
  .site-navbar .navbar-nav .nav-link.active {
    background: #f0fdfa !important;
    color: #0d9488 !important;
    padding-left: 1.15rem !important;
  }

  .site-navbar .nav-home-icon {
    width: 100% !important;
    justify-content: flex-start !important;
    gap: 10px;
  }
  
  .site-navbar .nav-home-icon::after {
    content: "Ana Sayfa";
    font-size: 0.925rem;
    font-weight: 600;
  }

  /* Çekmece Alt Butonlar (Sabit Altta, Her Zaman Görünür) */
  .mobile-drawer-footer {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    padding: 0.85rem 1rem !important;
    padding-bottom: max(0.85rem, env(safe-area-inset-bottom, 0.85rem)) !important;
    border-top: 1px solid #e2e8f0 !important;
    background: #ffffff !important;
    box-shadow: 0 -4px 14px rgba(0, 0, 0, 0.05) !important;
    flex-shrink: 0 !important;
    margin-top: auto !important;
  }
  .custom-dropdown-menu {
    position: static !important;
    width: 100% !important;
    max-width: 100% !important;
    box-shadow: none !important;
    border: 1px solid #f1f5f9 !important;
    background-color: #f8fafc !important;
    border-radius: 6px !important;
    padding: 0.4rem 0.5rem !important;
    margin: 0.25rem 0 0.5rem 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    pointer-events: auto !important;
  }

  .mega-dropdown-menu {
    padding: 0.5rem !important;
    max-height: 240px;
    overflow-y: auto;
  }

  .mega-menu-column {
    padding: 0.2rem 0 !important;
    border-right: none !important;
  }

  .mega-menu-link {
    display: block !important;
    padding: 0.45rem 0.65rem !important;
    color: #475569 !important;
    font-size: 0.835rem !important;
    font-weight: 500 !important;
    border-radius: 4px !important;
    text-decoration: none !important;
  }

  .mega-menu-link:hover {
    background: #e2e8f0 !important;
    color: #0d9488 !important;
  }
}

@media (max-width: 767.98px) {
  /* Topbar Tablet / Mobil */
  .site-topbar {
    height: 38px;
    font-size: 0.775rem;
  }
  .topbar-contact-item {
    font-size: 0.775rem;
    gap: 4px;
  }
  .topbar-btn {
    height: 38px;
    padding: 0 0.85rem;
    font-size: 0.775rem;
  }
  
  .modern-auth-wrapper {
    padding: 2rem 0;
  }
  .modern-auth-form-area {
    padding: 2rem 1.5rem;
  }
  .modern-auth-side {
    padding: 2rem 1.5rem;
  }
  .modern-role-selector {
    grid-template-columns: 1fr;
  }
  
  /* Hero & Arama */
  .exact-hero-section {
    min-height: auto;
    padding: 3rem 0 3.5rem 0;
  }
  .exact-hero-title {
    font-size: 1.45rem !important;
    letter-spacing: -0.01em;
  }
  .exact-hero-subtitle {
    font-size: 0.875rem !important;
    margin-bottom: 1.5rem !important;
  }
  .exact-search-card {
    padding: 8px;
    width: 100%;
    max-width: 100%;
  }
  .exact-search-form {
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }
  .exact-search-field {
    width: 100%;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    background-color: #f8fafc;
  }
  .exact-search-input, .exact-search-select {
    padding: 9px 12px;
    font-size: 0.875rem;
    width: 100%;
  }
  .exact-search-btn {
    width: 100%;
    height: 44px;
    justify-content: center;
    border-radius: 6px;
  }
  
  /* Firma Detay Sayfası Mobilde Taşma Engelleme */
  .exact-detail-header-card {
    padding: 1.25rem 1rem;
  }
  .exact-detail-title {
    font-size: 1.35rem;
  }
  .exact-detail-logo-box {
    width: 100%;
    max-width: 180px;
    height: 120px;
    margin: 0.5rem auto 0 auto;
  }
  .exact-detail-meta-list {
    font-size: 0.8rem;
  }
  .exact-detail-meta-item span {
    word-break: break-word;
    overflow-wrap: break-word;
  }
  .exact-detail-meta-item a {
    word-break: break-all;
  }
  .exact-detail-action-buttons {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(0, 1fr)) !important;
    gap: 8px !important;
    width: 100% !important;
  }
  .btn-detail-action {
    width: 100% !important;
    padding: 0.45rem 0.4rem !important;
    font-size: 0.785rem !important;
    gap: 4px !important;
    text-align: center !important;
  }
  .btn-detail-action i {
    font-size: 0.85rem !important;
  }
  .exact-gallery-item {
    height: 90px;
  }
  .exact-section-title-sm {
    font-size: 1.05rem;
  }
  .exact-detail-section-body {
    padding: 1rem;
  }
  
  /* Footer & Bülten Çubuğu */
  .exact-footer {
    padding: 2.5rem 0 1.5rem 0;
  }
  .footer-newsletter-bar {
    padding: 1.25rem 1rem !important;
    margin-bottom: 2rem !important;
  }
  .exact-footer-socials {
    flex-wrap: wrap;
  }
}

@media (max-width: 575.98px) {
  /* Topbar Mobilde Asla Alt Satıra Taşmama Kesin Düzeltmesi */
  .site-topbar {
    height: 36px !important;
    min-height: 36px !important;
    padding: 0 !important;
    line-height: 36px;
  }
  .site-topbar .container {
    height: 36px !important;
    padding-left: 12px;
    padding-right: 12px;
  }
  .topbar-left {
    gap: 8px !important;
  }
  .topbar-contact-item {
    font-size: 0.72rem !important;
    gap: 3px !important;
    white-space: nowrap !important;
    word-break: keep-all !important;
    overflow-wrap: normal !important;
  }
  .topbar-contact-item i {
    font-size: 0.78rem !important;
  }
  .topbar-contact-item span {
    white-space: nowrap !important;
    word-break: keep-all !important;
    overflow-wrap: normal !important;
  }
  .topbar-btn {
    height: 36px !important;
    padding: 0 0.55rem !important;
    font-size: 0.72rem !important;
    gap: 4px !important;
    white-space: nowrap !important;
  }
  .topbar-user-name {
    max-width: 80px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
    vertical-align: middle;
  }
  .site-topbar .dropdown-menu {
    min-width: 180px;
    right: 0 !important;
    left: auto !important;
  }

  /* Başlıklar & Kartlar */
  .exact-section-title {
    font-size: 1.18rem !important;
    line-height: 1.25 !important;
  }
  .exact-vitrin-title, .exact-blog-section-title {
    font-size: 1.18rem !important;
  }
  .exact-section-title-sm {
    font-size: 0.98rem !important;
  }
  .exact-vitrin-img-box {
    height: 130px;
  }
  .exact-vitrin-name {
    font-size: 0.8125rem;
    min-height: 2.2rem;
  }
  .exact-vitrin-city {
    font-size: 0.7rem;
  }
  .exact-job-card {
    padding: 0.85rem;
  }
  .exact-job-img-box {
    width: 65px;
    height: 60px;
  }
  .btn-exact-job-btn {
    font-size: 0.675rem;
    padding: 0.35rem 0.65rem;
  }
  
  /* Firma Detay Sayfası Aksiyon Butonları */
  .exact-detail-action-buttons {
    gap: 6px !important;
  }
  .btn-detail-action {
    padding: 0.42rem 0.25rem !important;
    font-size: 0.75rem !important;
    gap: 3px !important;
  }
  .btn-detail-action i {
    font-size: 0.8rem !important;
  }
  
  /* Tablolar ve Kartlar */
  .card {
    border-radius: 8px;
  }
  
  /* Kelime ve Link Kırılmaları (Topbar, Butonlar ve Sabit Metinler Hariç) */
  body, p, a:not(.topbar-contact-item):not(.topbar-btn):not(.btn):not(.btn-detail-action), h1, h2:not(.exact-section-title), h3:not(.exact-section-title-sm), h4, h5, h6, span:not(.topbar-phone-text):not(.topbar-email-text):not(.topbar-user-name):not(.text-nowrap), td, th {
    overflow-wrap: break-word;
    word-break: break-word;
  }
}

@media (max-width: 380px) {
  .topbar-contact-item.topbar-email {
    display: none !important;
  }
  .topbar-btn {
    padding: 0 0.42rem !important;
    font-size: 0.7rem !important;
  }
  .btn-detail-action {
    padding: 0.38rem 0.15rem !important;
    font-size: 0.7rem !important;
    gap: 2px !important;
  }
  .btn-detail-action i {
    font-size: 0.75rem !important;
  }
}

/* Evrensel Yatay Kaydırma Emniyeti */
.table-responsive {
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* ==========================================================================
   Şehirlere Göre Firma Listesi Kartları (City Cards)
   ========================================================================== */
.exact-city-card-link {
  display: block;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.exact-city-card {
  height: 185px;
  background-color: #0f172a;
  border-radius: 12px !important;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.exact-city-card .exact-city-img {
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  filter: brightness(0.92);
}

.exact-city-card-link:hover .exact-city-card {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px -4px rgba(15, 23, 42, 0.24) !important;
}

.exact-city-card-link:hover .exact-city-card .exact-city-img {
  transform: scale(1.08);
  filter: brightness(1);
}

.exact-city-overlay {
  background: linear-gradient(to top, rgba(10, 15, 29, 0.92) 0%, rgba(10, 15, 29, 0.5) 55%, rgba(10, 15, 29, 0) 100%);
  pointer-events: none;
}

.exact-city-title {
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
}

.exact-city-count {
  font-size: 0.85rem;
  margin-left: 4px;
}

.btn-dark-custom {
  background-color: #1e293b;
  color: #ffffff !important;
  border: 1px solid #334155;
  transition: all 0.2s ease;
}

.btn-dark-custom:hover {
  background-color: #0f172a;
  color: #ffffff !important;
  border-color: #0f172a;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.25);
}

@media (max-width: 576px) {
  .exact-city-card {
    height: 140px;
    border-radius: 10px !important;
  }
  .exact-city-title {
    font-size: 0.875rem;
  }
  .exact-city-count {
    font-size: 0.75rem;
  }
}

/* ==========================================================================
   GİRİŞ YAPMAYANLAR İÇİN KAYIT BANNERI (Guest Register CTA Banner)
   ========================================================================== */
.exact-guest-register-banner {
  background: linear-gradient(135deg, #09343d 0%, #0d4d5a 55%, #08242a 100%);
  border-top: 1px solid rgba(20, 184, 166, 0.25);
  border-bottom: 1px solid rgba(20, 184, 166, 0.25);
}

.exact-guest-banner-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 15% 50%, rgba(20, 184, 166, 0.25), transparent 50%),
              radial-gradient(circle at 85% 50%, rgba(13, 148, 136, 0.22), transparent 50%);
  pointer-events: none;
}

.exact-guest-banner-title {
  font-size: 1.35rem;
  letter-spacing: -0.01em;
  line-height: 1.35;
}

.exact-guest-register-btn {
  background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  font-size: 0.925rem;
  letter-spacing: 0.01em;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 15px rgba(20, 184, 166, 0.35);
}

.exact-guest-register-btn:hover {
  background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(20, 184, 166, 0.5);
  border-color: rgba(255, 255, 255, 0.35);
}

@media (max-width: 768px) {
  .exact-guest-banner-title {
    font-size: 1.1rem;
  }
  .exact-guest-register-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   EN GÜNCEL HABERLER KARTLARI (Latest News Section)
   ========================================================================== */
.exact-news-card-link {
  display: block;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.exact-news-card {
  background: #ffffff;
  border: 1px solid #e2e8f0 !important;
  border-radius: 14px !important;
  padding: 0.85rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.exact-news-card-link:hover .exact-news-card {
  transform: translateY(-4px);
  border-color: #14b8a6 !important;
  box-shadow: 0 12px 28px -6px rgba(15, 23, 42, 0.14) !important;
}

.exact-news-img-box {
  height: 175px;
  background-color: #f1f5f9;
}

.exact-news-img {
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.exact-news-card-link:hover .exact-news-img {
  transform: scale(1.06);
}

.exact-news-title {
  color: #0f172a !important;
  transition: color 0.2s ease;
}

.exact-news-card-link:hover .exact-news-title {
  color: #14b8a6 !important;
}

@media (max-width: 576px) {
  .exact-news-card {
    padding: 0.65rem;
    border-radius: 10px !important;
  }
  .exact-news-img-box {
    height: 130px;
  }
  .exact-news-title {
    font-size: 0.85rem !important;
  }
  .exact-news-summary {
    display: none !important;
  }
}

/* ==========================================================================
   HABER & MAKALE İÇERİK TİPOGRAFİSİ VE PARAGRAF DÜZENİ
   ========================================================================== */
.article-content {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #334155;
  word-break: break-word;
}

.article-content p {
  margin-bottom: 1.45rem;
  line-height: 1.9;
}

.article-content p:last-child {
  margin-bottom: 0;
}

.article-content h2,
.article-content h3,
.article-content h4 {
  font-weight: 700;
  color: #0f172a;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.article-content ul,
.article-content ol {
  margin-bottom: 1.45rem;
  padding-left: 1.5rem;
}

.article-content li {
  margin-bottom: 0.5rem;
}

.article-content blockquote {
  border-left: 4px solid #14b8a6;
  padding: 0.85rem 1.25rem;
  background-color: #f8fafc;
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: #475569;
  margin: 1.5rem 0;
}

/* ==========================================================================
   İSTATİSTİK SAYAÇ KARTLARI (Statistics / Counters Section - Keskin Köşeli)
   ========================================================================== */
.exact-stat-box-link {
  display: block;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.exact-stat-box {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 0px !important; /* Sivri / Keskin Köşeli */
  padding: 1.6rem 1rem 1.4rem 1rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  position: relative;
}

.exact-stat-box-link:hover .exact-stat-box {
  border-color: #14b8a6;
  box-shadow: 0 6px 18px rgba(20, 184, 166, 0.1) !important;
  transform: translateY(-2px);
}

.exact-stat-icon {
  font-size: 1.85rem;
  color: #14b8a6; /* Site Teal Rengi */
  line-height: 1;
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.exact-stat-box-link:hover .exact-stat-icon {
  transform: scale(1.1);
}

.exact-stat-number {
  font-size: 1.95rem;
  font-weight: 800;
  color: #0f172a; /* Site Koyu Metin Rengi */
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
}

.exact-stat-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #14b8a6; /* Site Teal Rengi */
  letter-spacing: 0.01em;
}

@media (max-width: 576px) {
  .exact-stat-box {
    padding: 1.1rem 0.5rem 1rem 0.5rem;
  }
  .exact-stat-icon {
    font-size: 1.4rem;
    margin-bottom: 0.4rem;
  }
  .exact-stat-number {
    font-size: 1.45rem;
  }
  .exact-stat-label {
    font-size: 0.75rem;
  }
}

/* ==========================================================================
   GLOBAL ÇEREZ (COOKIE) BİLDİRİM BANNERI (ORTADA İNCE UZUN & MODERN)
   ========================================================================== */
.cookie-banner-wrapper {
  position: fixed;
  bottom: 20px;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 960px;
  z-index: 99990;
  padding: 0;
  pointer-events: auto;
}

.cookie-banner-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-left: 4px solid #14b8a6;
  border-radius: 0px !important; /* Keskin Sivri Köşe */
  box-shadow: 0 10px 30px -5px rgba(15, 23, 42, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.04);
  padding: 0.65rem 1.15rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.cookie-banner-content {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 0;
}

.cookie-banner-icon {
  width: 32px;
  height: 32px;
  background-color: #f0fdfa;
  border: 1px solid #99f6e4;
  border-radius: 0px !important;
  color: #0d9488;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cookie-banner-text {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.cookie-banner-title {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.cookie-banner-desc {
  font-size: 0.775rem;
  color: #475569;
  line-height: 1.35;
  margin-bottom: 0;
}

.cookie-banner-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  flex-shrink: 0;
  white-space: nowrap;
}

.btn-cookie-settings {
  background-color: #f8fafc;
  border: 1px solid #cbd5e1;
  color: #475569 !important;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.8rem;
  border-radius: 0px !important;
  transition: all 0.15s ease;
  white-space: nowrap;
}

.btn-cookie-settings:hover {
  background-color: #f1f5f9;
  color: #0f172a !important;
}

.btn-cookie-reject {
  background-color: #ffffff;
  border: 1px solid #fca5a5;
  color: #dc2626 !important;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.8rem;
  border-radius: 0px !important;
  transition: all 0.15s ease;
  white-space: nowrap;
}

.btn-cookie-reject:hover {
  background-color: #fef2f2;
  color: #b91c1c !important;
}

.btn-cookie-accept {
  background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
  border: none;
  color: #ffffff !important;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.38rem 1rem;
  border-radius: 0px !important;
  transition: all 0.15s ease;
  box-shadow: 0 2px 6px rgba(20, 184, 166, 0.25);
  white-space: nowrap;
}

.btn-cookie-accept:hover {
  background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
  color: #ffffff !important;
}

/* Mobilde Kompakt & Geniş Olmayan Zarif Görünüm */
@media (max-width: 767.98px) {
  .cookie-banner-wrapper {
    bottom: 8px;
    right: 8px;
    left: 8px;
    transform: none;
    width: auto;
    max-width: 100%;
  }

  .cookie-banner-card {
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem 0.85rem;
    gap: 0.55rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  }

  .cookie-banner-content {
    align-items: flex-start;
    gap: 8px;
  }

  .cookie-banner-text {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }

  .cookie-banner-title {
    font-size: 0.8rem;
  }

  .cookie-banner-desc {
    font-size: 0.715rem;
    line-height: 1.35;
  }

  .cookie-banner-actions {
    display: flex;
    width: 100%;
    gap: 4px;
    flex-wrap: nowrap;
  }

  .btn-cookie-settings,
  .btn-cookie-reject {
    flex: 1;
    padding: 0.35rem 0.25rem;
    font-size: 0.7rem;
    text-align: center;
    justify-content: center;
    white-space: nowrap;
  }

  .btn-cookie-accept {
    flex: 1.35;
    padding: 0.35rem 0.35rem;
    font-size: 0.7rem;
    text-align: center;
    justify-content: center;
    white-space: nowrap;
  }
}

/* ==========================================================================
   ÇAPRAZ İNDİRİM BANDI (PRODUCT DISCOUNT RIBBON)
   ========================================================================== */
.product-ribbon-wrapper {
  position: relative !important;
  overflow: hidden !important;
}

.discount-ribbon {
  position: absolute;
  top: 14px;
  right: -32px;
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 50%, #b91c1c 100%);
  color: #ffffff !important;
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 34px;
  transform: rotate(45deg);
  box-shadow: 0 2px 8px rgba(185, 28, 28, 0.45);
  z-index: 10;
  pointer-events: none;
  line-height: 1;
  text-align: center;
}

/* ==========================================================================
   PWA MOBİL YÜKLEME BANNERI (ADD TO HOME SCREEN PROMPT)
   ========================================================================== */
.pwa-install-banner {
  position: fixed;
  top: 10px;
  left: 10px;
  right: 10px;
  z-index: 99999 !important;
  animation: slideDownBanner 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideDownBanner {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pwa-banner-inner {
  background: rgba(4, 38, 40, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(20, 184, 166, 0.35);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.pwa-app-icon {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.btn-outline-teal {
  color: #0f766e;
  border-color: #0f766e;
  background-color: transparent;
}

.btn-outline-teal:hover {
  color: #ffffff;
  background-color: #0f766e;
  border-color: #0f766e;
}



