/* ╔══════════════════════════════════════════╗
   ║     BIZLIKO — HİZMET ARA SAYFASI         ║
   ╚══════════════════════════════════════════╝ */

:root {
  --blue:        #0099E5;
  --blue-dark:   #007CC7;
  --blue-deeper: #0D1B2A;
  --blue-light:  #E8F6FF;
  --blue-mid:    #CCE9F9;
  --orange:      #FF8C00;
  --orange-dark: #E07A00;
  --orange-light:#FFF3E0;
  --ink:         #0D1B2A;
  --ink-2:       #1E3448;
  --ink-3:       #4A6580;
  --muted:       #8FA8C0;
  --border:      rgba(0,153,229,0.10);
  --border-2:    rgba(0,0,0,0.07);
  --bg:          #F4F8FC;
  --white:       #FFFFFF;
  --r-sm:        12px;
  --r-md:        18px;
  --r-lg:        24px;
  --r-full:      9999px;
  --sh-xs:       0 2px 8px rgba(0,100,180,0.06);
  --sh-sm:       0 4px 16px rgba(0,100,180,0.09);
  --sh-md:       0 10px 32px rgba(0,100,180,0.13);
  --sh-blue:     0 6px 24px rgba(0,153,229,0.28);
  --sh-orange:   0 6px 24px rgba(255,140,0,0.28);
  --font:        'Poppins', sans-serif;
  --safe-b:      env(safe-area-inset-bottom, 0px);
  --safe-t:      env(safe-area-inset-top, 0px);
  --ha-h:        70px;   /* desktop header yüksekliği */
  --ham-h:       112px;  /* mobil header yüksekliği (logo + search) */
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }

/* ════════════════════════════════════════════
   DESKTOP HEADER
════════════════════════════════════════════ */
.ha-header {
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 500;
  height: var(--ha-h);
  background: linear-gradient(135deg, var(--blue-deeper) 0%, #122035 100%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 2px 24px rgba(0,0,0,0.22);
  display: flex;
  align-items: center;
}

.ha-header-inner {
  width: 100%; max-width: 1280px; margin: 0 auto;
  padding: 0 32px;
  display: flex; align-items: center; gap: 20px;
}

/* ── LOGO ── */
.ha-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; flex-shrink: 0;
}
.ha-logo-text {
  display: flex; flex-direction: column; line-height: 1;
}
.ha-logo-name {
  font-family: var(--font);
  font-weight: 900; font-size: 20px;
  color: #fff; letter-spacing: -0.5px;
}
.ha-logo-tag {
  font-size: 9px; font-weight: 500;
  color: rgba(255,255,255,0.40);
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-top: 1px;
}

/* ── SEARCH FORM ── */
.ha-search-form {
  flex: 1; max-width: 560px;
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.10);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: var(--r-full);
  padding: 0 6px 0 18px;
  height: 44px;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
  backdrop-filter: blur(12px);
}
.ha-search-form:focus-within {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.30);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.08);
}
.ha-search-form i {
  color: rgba(255,255,255,0.55); font-size: 18px; flex-shrink: 0;
}
.ha-search-form input {
  flex: 1; border: none; outline: none; background: none;
  font-family: var(--font); font-size: 13.5px; font-weight: 500;
  color: #fff; min-width: 0;
}
.ha-search-form input::placeholder { color: rgba(255,255,255,0.45); }
.ha-search-btn {
  width: 34px; height: 34px; border: none; border-radius: var(--r-full);
  background: var(--orange);
  color: #fff; font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(255,140,0,0.35);
  transition: all 0.2s;
}
.ha-search-btn:hover { background: var(--orange-dark); transform: scale(1.08); }

/* ── ACTIONS ── */
.ha-actions { display: flex; gap: 8px; align-items: center; margin-left: auto; }

.ha-btn-ghost {
  height: 38px; padding: 0 18px; border-radius: var(--r-full);
  border: 1.5px solid rgba(255,255,255,0.18);
  background: transparent;
  font-family: var(--font); font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,0.75); cursor: pointer;
  display: inline-flex; align-items: center; gap: 6px;
  text-decoration: none; transition: all 0.2s; white-space: nowrap;
}
.ha-btn-ghost i { font-size: 15px; }
.ha-btn-ghost:hover {
  border-color: rgba(255,255,255,0.40);
  background: rgba(255,255,255,0.07);
  color: #fff;
}
.ha-btn-cta {
  height: 38px; padding: 0 20px; border-radius: var(--r-full);
  border: none;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  font-family: var(--font); font-size: 13px; font-weight: 700;
  color: #fff; cursor: pointer;
  box-shadow: 0 3px 14px rgba(255,140,0,0.35);
  display: inline-flex; align-items: center; gap: 6px;
  text-decoration: none; transition: all 0.2s; white-space: nowrap;
}
.ha-btn-cta i { font-size: 15px; }
.ha-btn-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 22px rgba(255,140,0,0.50); color: #fff; }

/* ════════════════════════════════════════════
   MOBİL HEADER
════════════════════════════════════════════ */
.ha-mobile-header {
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 500;
  background: linear-gradient(160deg, var(--blue-deeper) 0%, #122035 100%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 2px 20px rgba(0,0,0,0.20);
  padding: calc(var(--safe-t) + 10px) 16px 12px;
  display: flex; flex-direction: column; gap: 10px;
}

.ha-mobile-top {
  display: flex; align-items: center; justify-content: space-between;
}

.ha-mobile-btns { display: flex; gap: 6px; }

.ha-icon-btn {
  width: 38px; height: 38px; border-radius: 11px;
  border: 1.5px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.80); font-size: 18px;
  text-decoration: none; transition: all 0.2s;
}
.ha-icon-btn:hover, .ha-icon-btn:active {
  border-color: var(--orange); color: var(--orange);
  background: rgba(255,140,0,0.10);
}

/* Mobil search bar */
.ha-mobile-search {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.10);
  border: 1.5px solid rgba(255,255,255,0.14);
  border-radius: var(--r-full);
  padding: 0 6px 0 14px; height: 40px;
  transition: background 0.2s, border-color 0.2s;
}
.ha-mobile-search:focus-within {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.28);
}
.ha-mobile-search i { color: rgba(255,255,255,0.50); font-size: 16px; flex-shrink: 0; }
.ha-mobile-search input {
  flex: 1; border: none; outline: none; background: none;
  font-family: var(--font); font-size: 13px; font-weight: 500;
  color: #fff; min-width: 0;
}
.ha-mobile-search input::placeholder { color: rgba(255,255,255,0.42); }
.ha-mobile-search button {
  width: 30px; height: 30px; border: none; border-radius: var(--r-full);
  background: var(--orange); color: #fff; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; flex-shrink: 0; transition: all 0.2s;
}
.ha-mobile-search button:hover { background: var(--orange-dark); }

/* body padding — header'dan sonra içerik */
body { padding-top: 0; } /* sticky olduğu için extra padding gerekmez */

/* ════════════════════════════════════════════
   LAYOUT
════════════════════════════════════════════ */
.biz-container {
  max-width: 1280px; margin: 0 auto;
  padding: 20px 16px;
  display: grid; grid-template-columns: 1fr; gap: 16px;
}
@media(min-width:992px){
  .biz-container {
    grid-template-columns: 270px 1fr;
    padding: 24px 32px; gap: 20px; align-items: start;
  }
}

/* ════════════════════════════════
   FİLTRE PANELİ
════════════════════════════════ */
.filter-panel {
  background: var(--white); border-radius: var(--r-lg);
  box-shadow: var(--sh-xs); overflow: hidden;
  border: 1px solid var(--border);
  display: flex; flex-direction: column;
}

@media(max-width:991.98px){
  .filter-panel {
    position: fixed; top: 0; right: -100%; bottom: 0;
    width: min(360px, 92%); z-index: 9999;
    border-radius: 0;
    transition: right 0.38s cubic-bezier(0.4,0,0.2,1);
    box-shadow: -8px 0 40px rgba(0,0,0,0.18);
  }
  .filter-panel.active { right: 0; }
}

.filter-head {
  padding: 18px 20px 14px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  flex-shrink: 0;
}
.filter-head-title {
  font-size: 14px; font-weight: 700; color: var(--ink);
  display: flex; align-items: center; gap: 8px;
}
.filter-head-title i { color: var(--orange); font-size: 17px; }

.filter-close-btn {
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid var(--border-2); background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--ink-3); font-size: 15px;
  transition: all 0.2s;
}
.filter-close-btn:hover { background: var(--blue-light); color: var(--blue); border-color: var(--blue); }

.filter-scroll {
  flex: 1; overflow-y: auto; padding: 18px 20px;
  -webkit-overflow-scrolling: touch;
}
@media(min-width:992px){ .filter-scroll { max-height: calc(100vh - 200px); } }
@media(max-width:991.98px){ .filter-scroll { max-height: calc(100vh - 170px); } }
.filter-scroll::-webkit-scrollbar { width: 4px; }
.filter-scroll::-webkit-scrollbar-thumb { background: var(--blue-mid); border-radius: 4px; }

.filter-label {
  font-size: 10.5px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--muted); margin-bottom: 9px;
  display: flex; align-items: center; gap: 5px;
}
.filter-label i { font-size: 13px; color: var(--orange); }

.biz-select {
  width: 100%; padding: 10px 14px;
  border: 1.5px solid var(--border-2); border-radius: var(--r-sm);
  background: var(--bg); font-family: var(--font);
  font-size: 13px; font-weight: 500; color: var(--ink);
  outline: none; cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238FA8C0' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center; padding-right: 32px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.biz-select:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0,153,229,0.10); }
.biz-select:disabled { opacity: 0.5; cursor: not-allowed; }
.biz-select + .biz-select { margin-top: 7px; }

#subCatContainer { overflow: visible !important; max-height: none !important; }
.sub-category-scroll-wrap .form-check {
  border: 1.5px solid var(--border-2); padding: 9px 14px;
  border-radius: var(--r-sm); margin-bottom: 6px; transition: all 0.2s; cursor: pointer;
}
.sub-category-scroll-wrap .form-check:hover { border-color: var(--orange); background: var(--orange-light); }
.sub-category-scroll-wrap .form-check-input:checked { background-color: var(--orange); border-color: var(--orange); }
.sub-category-scroll-wrap .form-check-label { font-size: 13px; font-weight: 500; cursor: pointer; }

.price-slider-wrapper { padding: 4px 2px 8px; }

.filter-footer {
  padding: 14px 20px; border-top: 1px solid var(--border);
  flex-shrink: 0; background: var(--white);
}
.btn-apply {
  width: 100%; height: 44px; border: none; border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff; font-family: var(--font); font-size: 14px; font-weight: 700;
  cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px;
  box-shadow: var(--sh-orange); transition: all 0.2s; margin-bottom: 7px;
}
.btn-apply:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(255,140,0,0.40); }
.btn-clear {
  width: 100%; height: 38px; border: 1.5px solid var(--border-2);
  border-radius: var(--r-md); background: none;
  color: var(--ink-3); font-family: var(--font); font-size: 13px; font-weight: 600;
  cursor: pointer; transition: all 0.2s;
}
.btn-clear:hover { border-color: var(--orange); color: var(--orange); background: var(--orange-light); }

.filter-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.45); z-index: 9998;
  backdrop-filter: blur(3px);
}
.filter-overlay.active { display: block; }

/* ════════════════════════════════
   SONUÇ ALANI
════════════════════════════════ */
.results-head {
  background: var(--white); border-radius: var(--r-md);
  padding: 12px 16px; margin-bottom: 14px;
  display: flex; align-items: center; justify-content: space-between;
  box-shadow: var(--sh-xs); border: 1px solid var(--border);
  flex-wrap: wrap; gap: 8px;
}
.results-count {
  display: flex; align-items: center; gap: 8px;
  font-size: 13.5px; font-weight: 700; color: var(--ink);
}
.results-count .count-badge {
  background: var(--blue-light); color: var(--blue);
  padding: 3px 12px; border-radius: var(--r-full);
  font-size: 12px; font-weight: 800;
}
.sort-select {
  height: 36px; padding: 0 34px 0 12px;
  border: 1.5px solid var(--border-2); border-radius: var(--r-full);
  background: var(--bg); font-family: var(--font);
  font-size: 12.5px; font-weight: 600; color: var(--ink);
  outline: none; cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238FA8C0' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 10px center;
  transition: border-color 0.2s;
}
.sort-select:focus { border-color: var(--orange); }

/* ════════════════════════════════
   HİZMET KARTI
════════════════════════════════ */
.service-item {
  background: var(--white); border-radius: var(--r-lg);
  border: 1.5px solid var(--border-2); overflow: hidden;
  margin-bottom: 14px; display: grid;
  grid-template-columns: 140px 1fr auto;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  position: relative; cursor: pointer;
}
.service-item:hover {
  transform: translateY(-3px); box-shadow: var(--sh-md);
  border-color: var(--orange);
}
.service-item.is-selected {
  border: 2px solid var(--orange) !important;
  background: #FFFAF4;
  box-shadow: 0 8px 24px rgba(255,140,0,0.15) !important;
  transform: translateY(-2px);
}
.service-item::after {
  content: "\ea5e";
  font-family: "tabler-icons" !important;
  position: absolute; top: 10px; right: 10px;
  width: 26px; height: 26px;
  background: var(--orange); color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  opacity: 0; transform: scale(0.5) rotate(-20deg);
  transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 10;
}
.service-item.is-selected::after { opacity: 1; transform: scale(1) rotate(0deg); }

@media(max-width:767px){
  .service-item { grid-template-columns: 100px 1fr; grid-template-rows: auto auto; }
}

.selection-overlay { position: absolute; top: 10px; left: 10px; z-index: 10; }
.usta-sec-check { display: none !important; }

.service-img-container { position: relative; overflow: hidden; width: 140px; flex-shrink: 0; }
@media(max-width:767px){ .service-img-container { width: 100px; grid-row: 1 / 3; } }
.service-img-container a { display: block; height: 100%; }
.service-img-container img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.service-item:hover .service-img-container img { transform: scale(1.06); }

.badge-overlay { position: absolute; bottom: 7px; left: 7px; }
.glass-badge {
  background: rgba(0,0,0,0.55); backdrop-filter: blur(8px);
  color: #fff; padding: 3px 9px; border-radius: var(--r-full);
  font-size: 10.5px; font-weight: 700;
  display: flex; align-items: center; gap: 3px;
}
.dynamic-badges { position: absolute; top: 7px; right: 7px; z-index: 5; }
.d-badge {
  background: var(--orange); color: #fff;
  padding: 3px 8px; border-radius: var(--r-full);
  font-size: 9px; font-weight: 700; letter-spacing: 0.04em;
  display: flex; align-items: center; gap: 3px;
}

.service-info-content {
  padding: 14px 12px; display: flex; flex-direction: column;
  justify-content: center; min-width: 0;
}
@media(max-width:767px){ .service-info-content { padding: 10px 8px 6px; } }

.kat-badge {
  display: inline-flex; align-items: center;
  background: var(--orange-light); color: var(--orange-dark);
  padding: 3px 11px; border-radius: var(--r-full);
  font-size: 9.5px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; margin-bottom: 6px; width: fit-content;
}
.service-title { font-size: 14.5px; font-weight: 700; color: var(--ink); line-height: 1.35; margin-bottom: 5px; }
.service-title a { color: var(--ink); transition: color 0.2s; }
.service-title a:hover { color: var(--orange); }

.fast-reply-badge {
  display: inline-flex; align-items: center; gap: 4px;
  background: #E8FFF5; color: #059669;
  padding: 3px 9px; border-radius: var(--r-full);
  font-size: 9.5px; font-weight: 700; margin-bottom: 7px; width: fit-content;
}
.fast-reply-badge i { font-size: 11px; }
.service-desc {
  font-size: 11.5px; color: var(--muted); line-height: 1.6; margin-bottom: 7px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.service-meta { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.service-meta span {
  font-size: 11px; font-weight: 600; color: var(--muted);
  display: flex; align-items: center; gap: 4px;
}
.service-meta i { font-size: 12px; }

.price-tag {
  padding: 14px 14px 14px 10px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  border-left: 1px solid dashed;
  min-width: 160px; background: #FAFCFF; flex-shrink: 0;
}
@media(max-width:767px){
  .price-tag {
    grid-column: 2 / 3; border-left: none; border-top: 1px solid var(--border);
    padding: 9px 9px 11px; min-width: 0; background: #FAFCFF;
    flex-direction: row; justify-content: space-between; align-items: center; gap: 8px;
  }
}

.price-prefix { font-size: 9px; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; display: block; margin-bottom: 2px; }
.price-num { font-size: 25px; font-weight: 800; color: var(--orange); line-height: 1; }
.price-type { font-size: 9px; color: var(--muted); font-weight: 600; text-transform: uppercase; display: block; margin-top: 2px; }

.price-btns { display: flex; flex-direction: column; gap: 6px; margin-top: 10px; width: 100%; }
@media(max-width:767px){ .price-btns { margin-top: 0; flex-direction: row; flex-wrap: wrap; width: auto; } }

.btn-incele {
  height: 32px; padding: 0 12px; border-radius: var(--r-full);
  border: 1.5px solid var(--border-2); background: none;
  font-family: var(--font); font-size: 12px; font-weight: 700;
  color: var(--ink); cursor: pointer; text-decoration: none;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s; white-space: nowrap;
}
.btn-incele:hover { border-color: var(--orange); color: var(--orange); background: var(--orange-light); }

.btn-wp {
  height: 32px; padding: 0 12px; border-radius: var(--r-full);
  border: none; background: #22C55E;
  font-family: var(--font); font-size: 12px; font-weight: 700;
  color: #fff; cursor: pointer; text-decoration: none;
  display: flex; align-items: center; justify-content: center; gap: 4px;
  transition: all 0.2s; white-space: nowrap;
  box-shadow: 0 3px 10px rgba(34,197,94,0.3);
}
.btn-wp:hover { background: #16A34A; color: #fff; }
.btn-wp i { font-size: 14px; }

/* Tıklanabilir alanların seçimi tetiklememesi */
.price-btns, .service-title a, .service-img-container a { position: relative; z-index: 15; }

/* ════════════════════════════════
   BOŞ SONUÇ
════════════════════════════════ */
.no-result {
  background: var(--white); border-radius: var(--r-lg);
  padding: 48px 24px; text-align: center;
  box-shadow: var(--sh-xs); border: 1px solid var(--border);
}
.no-result-icon {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--blue-light); margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 38px; color: var(--blue);
}
.no-result h3 { font-size: 19px; font-weight: 700; color: var(--ink); margin-bottom: 7px; }
.no-result p  { font-size: 13.5px; color: var(--muted); max-width: 400px; margin: 0 auto 22px; line-height: 1.7; }
.pop-tag {
  display: inline-flex; align-items: center;
  background: var(--bg); color: var(--ink-3);
  border: 1.5px solid var(--border-2); padding: 6px 14px;
  border-radius: var(--r-full); font-size: 12px; font-weight: 600;
  text-decoration: none; transition: all 0.2s; margin: 4px;
}
.pop-tag:hover { border-color: var(--orange); color: var(--orange); background: var(--orange-light); }

/* ════════════════════════════════
   TEKLİF BARI
════════════════════════════════ */
.teklif-bar {
  position: fixed !important;
  bottom: calc(var(--safe-b) + 28px) !important;
  left: 50% !important; transform: translateX(-50%) !important;
  width: 60% !important; max-width: 400px !important;
  background: var(--blue-deeper) !important;
  border-radius: var(--r-full) !important;
  padding: 11px 14px 11px 20px !important;
  box-shadow: 0 16px 48px rgba(0,0,0,0.4) !important;
  z-index: 1000 !important;
  border: 1px solid rgba(255,140,0,0.25) !important;
  display: flex !important; align-items: center !important;
  justify-content: space-between !important; gap: 12px !important;
}
.teklif-bar-left { display: flex; align-items: center; gap: 10px; }
.teklif-sayi {
  background: var(--orange); color: #fff;
  padding: 3px 12px; border-radius: var(--r-full);
  font-weight: 800; font-size: 13px; white-space: nowrap;
}
.teklif-bar-text { font-size: 13px; font-weight: 600; color: #fff; white-space: nowrap; }
@media(max-width:480px){ .teklif-bar-text { display: none; } }
.btn-teklif-iste {
  height: 38px; padding: 0 20px; border: none;
  border-radius: var(--r-full);
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff; font-family: var(--font); font-size: 13px; font-weight: 700;
  cursor: pointer; white-space: nowrap; flex-shrink: 0;
  box-shadow: var(--sh-orange); transition: all 0.2s;
}
.btn-teklif-iste:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(255,140,0,0.4); }

@media(max-width:991.98px){ #teklif-bar, .teklif-bar { display: none !important; } }

/* ════════════════════════════════
   MODAL
════════════════════════════════ */
.biz-modal .modal-content {
  border: none; border-radius: var(--r-lg);
  box-shadow: 0 24px 80px rgba(0,0,0,0.18);
  font-family: var(--font);
}
.biz-modal .modal-header { border-bottom: 1px solid var(--border); padding: 18px 22px 14px; }
.biz-modal .modal-title { font-size: 15px; font-weight: 700; color: var(--ink); }
.biz-modal .modal-title i { color: var(--orange); margin-right: 7px; }
.biz-modal .modal-body { padding: 18px 22px; }

.biz-input {
  width: 100%; padding: 10px 13px;
  border: 1.5px solid var(--border-2); border-radius: var(--r-sm);
  font-family: var(--font); font-size: 13.5px; color: var(--ink);
  background: var(--bg); outline: none; transition: border-color 0.2s, box-shadow 0.2s;
}
.biz-input:focus { border-color: var(--orange); background: #fff; box-shadow: 0 0 0 3px rgba(255,140,0,0.08); }
.biz-label { font-size: 11.5px; font-weight: 700; color: var(--ink-3); margin-bottom: 5px; display: block; }

.btn-send-form {
  width: 100%; height: 48px; border: none; border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff; font-family: var(--font); font-size: 14px; font-weight: 700;
  cursor: pointer; box-shadow: var(--sh-orange);
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: all 0.2s;
}
.btn-send-form:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(255,140,0,0.35); }

.kvkk-wrap { display: flex; align-items: flex-start; gap: 9px; padding: 0 3px; }
.kvkk-wrap input[type="checkbox"] { width: 17px; height: 17px; flex-shrink: 0; cursor: pointer; accent-color: var(--orange); margin-top: 1px; }
.kvkk-wrap label { font-size: 11.5px; color: var(--muted); line-height: 1.6; cursor: pointer; }
.kvkk-wrap a { color: var(--orange); font-weight: 700; }

/* ════════════════════════════════
   BOTTOM NAV (mobil)
════════════════════════════════ */
.b-nav {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 500;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(24px);
  border-top: 1px solid rgba(0,0,0,0.05);
  padding: 8px 8px calc(var(--safe-b) + 6px);
  display: flex; justify-content: space-around; align-items: center;
  height: 70px;
}
@media(min-width:992px){ .b-nav { display: none; } }
.b-nav-item {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  text-decoration: none; color: var(--muted); flex: 1; padding: 4px 0;
  transition: color 0.2s; border: none; background: none; font-family: var(--font);
}
.b-nav-item i { font-size: 22px; }
.b-nav-item span { font-size: 9.5px; font-weight: 700; }
.b-nav-item.active { color: var(--orange); }
.b-nav-item:active { color: var(--orange); }

.b-nav-cta-wrapper {
  width: 62px; height: 62px;
  margin-top: -30px; position: relative;
}
.b-nav-cta {
  width: 100%; height: 100%; border-radius: 20px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  border: 4px solid #fff; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; box-shadow: 0 8px 22px rgba(0,153,229,0.30);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
}
.bg-orange {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark)) !important;
  box-shadow: 0 8px 22px rgba(255,140,0,0.40) !important;
}
.cta-count-badge {
  position: absolute; top: -3px; right: -3px;
  background: #F43F5E; color: #fff; font-size: 10px; font-weight: 800;
  width: 20px; height: 20px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid #fff;
}

/* Range Slider */
.irs--round .irs-bar { background: var(--orange); }
.irs--round .irs-handle { border-color: var(--orange); }
.irs--round .irs-from, .irs--round .irs-to, .irs--round .irs-single { background: var(--orange); }
/* Kart seçildiğinde oluşacak stil */
.service-item.is-selected {
    border-color: #FF8C00 !important;
    background-color: #FFF9F2 !important;
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.15) !important;
    transform: scale(0.98); /* Hafifçe içeri çökme efekti */
}

/* Kartın sağ üstüne "Seçildi" işareti koyalım */
.service-item.is-selected::after {
    content: '\eb2d'; /* tabler-icon check */
    font-family: 'tabler-icons';
    position: absolute;
    top: 10px;
    right: 10px;
    background: #FF8C00;
    color: #fff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Orta butona nabız efekti verelim (Seçim varken) */
.bg-orange.animate__bounceIn {
    background: linear-gradient(135deg, #FF8C00, #E07A00) !important;
    animation: pulseOrange 2s infinite;
}

@keyframes pulseOrange {
    0% { box-shadow: 0 0 0 0 rgba(255, 140, 0, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(255, 140, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 140, 0, 0); }
}
/* Buton Grubu Konteynırı */
.price-btns {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    margin-top: 12px;
}

/* İncele Butonu - Nötr ve Profesyonel */
.btn-incele {
    height: 38px;
    background: #F1F5F9;
    color: #475569;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s;
}
.btn-incele:hover {
    background: #E2E8F0;
    color: #1E293B;
}

/* WhatsApp Butonu - Canlı Yeşil */
.btn-wp {
    height: 38px;
    background: #22C55E;
    color: #fff;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.25);
}

/* TEKLİF AL BUTONU - Indigo/Mor (Sistem Aksiyonu) */
.btn-teklif-al-sistem {
    height: 38px;
    background: #6366F1; /* Indigo */
    color: #fff;
    border: none;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.25);
    transition: all 0.3s;
}
.btn-teklif-al-sistem:hover {
    background: #4F46E5;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(99, 102, 241, 0.35);
}