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

:root {
  --blue:         #0099E5;
  --blue-dark:    #007CC7;
  --blue-deeper:  #0D1B2A;
  --blue-light:   #EBF6FF;
  --blue-mid:     #B8DCFF;

  --orange:       #FF8C00;
  --orange-dark:  #E07A00;
  --orange-deep:  #B85E00;
  --orange-light: #FFF4E6;
  --orange-mid:   #FFD199;

  --green:        #22C55E;
  --green-light:  #DCFCE7;
  --green-dark:   #16A34A;
  --red:          #F43F5E;

  --ink:          #0D1B2A;
  --ink-2:        #1E3448;
  --ink-3:        #4A6580;
  --muted:        #8FA8C0;

  --border:       rgba(0,153,229,0.12);
  --border-2:     rgba(0,0,0,0.07);
  --bg:           #F2F7FB;
  --bg-2:         #E8F2F8;
  --white:        #FFFFFF;

  --r-xs:   8px;
  --r-sm:   12px;
  --r-md:   18px;
  --r-lg:   24px;
  --r-full: 9999px;

  --sh-xs:     0 2px 8px rgba(13,27,42,0.05);
  --sh-sm:     0 4px 16px rgba(13,27,42,0.08);
  --sh-md:     0 10px 32px rgba(13,27,42,0.12);
  --sh-lg:     0 20px 60px rgba(13,27,42,0.16);
  --sh-orange: 0 8px 28px rgba(255,140,0,0.32);
  --sh-blue:   0 8px 28px rgba(0,153,229,0.28);

  --font:   'Poppins', sans-serif;
  --safe-b: env(safe-area-inset-bottom, 0px);
  --mob-h:  68px;
}

*, *::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;
}
@media(max-width:991.98px) {
  body { padding-bottom: calc(var(--mob-h) + var(--safe-b) + 4px); }
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ── Footer mobilde gizle ── */
@media(max-width:991.98px) {
  footer, .footer, #footer, .site-footer, .main-footer { display: none !important; }
}

/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
.srv-hero {
  position: relative;
  width: 100%; height: 320px;
  overflow: hidden;
  background: var(--blue-deeper);
}
@media(min-width:576px) { .srv-hero { height: 380px; } }
@media(min-width:992px) { .srv-hero { height: 440px; } }

.srv-hero-img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.6s ease; cursor: zoom-in;
}
.srv-hero:hover .srv-hero-img { transform: scale(1.03); }
.srv-hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(to top, rgba(13,27,42,0.92) 0%, rgba(13,27,42,0.55) 45%, rgba(13,27,42,0.15) 100%);
}
.srv-hero-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  z-index: 2; padding: 24px 20px;
}
@media(min-width:992px) { .srv-hero-content { padding: 32px 40px; max-width: 1220px; margin: 0 auto; } }

.srv-hero-kat {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--orange); color: #fff;
  padding: 4px 14px; border-radius: var(--r-full);
  font-size: 10px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.08em; margin-bottom: 10px;
}
.srv-hero-title {
  font-size: clamp(20px, 5vw, 34px); font-weight: 800; color: #fff;
  line-height: 1.2; margin-bottom: 12px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.srv-hero-meta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.srv-hero-meta-item {
  display: flex; align-items: center; gap: 5px;
  font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.85);
}
.srv-hero-meta-item i { font-size: 14px; }
.srv-hero-badges {
  position: absolute; top: 16px; right: 16px; z-index: 3;
  display: flex; flex-direction: column; gap: 6px; align-items: flex-end;
}
.hero-badge {
  display: flex; align-items: center; gap: 5px;
  padding: 5px 12px; border-radius: var(--r-full);
  font-size: 10px; font-weight: 800; backdrop-filter: blur(10px);
}
.hero-badge.onayli { background: rgba(34,197,94,0.9); color: #fff; }
.hero-badge.puan   { background: rgba(255,140,0,0.9);  color: #fff; }
.hero-zoom-btn {
  position: absolute; bottom: 16px; right: 16px; z-index: 3;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.2); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 16px; cursor: pointer; transition: background 0.2s;
}
.hero-zoom-btn:hover { background: rgba(255,140,0,0.8); color: #fff; }

/* ════════════════════════════════════════
   ANA LAYOUT
════════════════════════════════════════ */
.detay-wrap {
  max-width: 1220px; margin: 0 auto;
  padding: 20px 16px;
  display: grid; grid-template-columns: 1fr;
  gap: 16px; align-items: start;
}
@media(min-width:992px) {
  .detay-wrap { grid-template-columns: 1fr 360px; padding: 28px 40px; gap: 24px; }
}
.detay-left { display: flex; flex-direction: column; gap: 14px; }

/* ════════════════════════════════════════
   KART
════════════════════════════════════════ */
.biz-card {
  background: var(--white); border-radius: var(--r-lg);
  border: 1px solid var(--border-2); box-shadow: var(--sh-xs); overflow: hidden;
}

/* ════════════════════════════════════════
   SEKMELER
════════════════════════════════════════ */
.tabs-card {
  position: sticky; top: 0; z-index: 200;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.biz-tabs { display: flex; overflow-x: auto; scrollbar-width: none; padding: 0 12px; }
.biz-tabs::-webkit-scrollbar { display: none; }
.biz-tab {
  flex-shrink: 0; padding: 14px 16px;
  font-size: 12px; font-weight: 700; color: var(--muted);
  border-bottom: 3px solid transparent;
  white-space: nowrap; cursor: pointer; transition: all 0.2s;
  text-decoration: none; display: block;
}
.biz-tab:hover  { color: var(--orange); }
.biz-tab.active { color: var(--orange); border-bottom-color: var(--orange); }

/* ════════════════════════════════════════
   ACCORDION
════════════════════════════════════════ */
.acc-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; cursor: pointer; user-select: none;
  border-bottom: 1px solid transparent;
  transition: background 0.2s, border-color 0.2s;
}
.acc-head:hover { background: var(--orange-light); border-bottom-color: var(--orange-mid); }
.acc-title {
  font-size: 14px; font-weight: 700; color: var(--ink);
  display: flex; align-items: center; gap: 9px;
}
.acc-title i {
  width: 32px; height: 32px; border-radius: var(--r-xs);
  background: var(--orange-light); color: var(--orange); font-size: 16px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.acc-chevron { color: var(--muted); font-size: 16px; transition: transform 0.3s; flex-shrink: 0; }
.acc-section.open .acc-chevron { transform: rotate(180deg); }
.acc-body { padding: 16px 20px 20px; }

/* ════════════════════════════════════════
   AÇIKLAMA METNİ
════════════════════════════════════════ */
.desc-text {
  font-size: 13.5px; line-height: 1.9; color: var(--ink-3);
  max-height: 130px; overflow: hidden; transition: max-height 0.5s ease; position: relative;
}
.desc-text:not(.expanded)::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 50px;
  background: linear-gradient(transparent, var(--white));
}
.desc-text.expanded { max-height: 2000px; }
.desc-text.expanded::after { display: none; }
.btn-more {
  margin-top: 10px; display: inline-flex; align-items: center; gap: 5px;
  font-size: 12px; font-weight: 700; color: var(--orange);
  background: none; border: none; cursor: pointer; font-family: var(--font); padding: 0;
}
.btn-more:hover { color: var(--orange-dark); }

/* ════════════════════════════════════════
   SUNULAN HİZMET
════════════════════════════════════════ */
.srv-offer-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px; flex-wrap: wrap;
  background: linear-gradient(135deg, var(--orange-light), #FFF9F0);
  border: 1px solid var(--orange-mid); border-radius: var(--r-md); padding: 16px;
  transition: box-shadow 0.2s;
}
.srv-offer-row:hover { box-shadow: var(--sh-orange); }
.srv-offer-icon {
  width: 48px; height: 48px; border-radius: var(--r-sm); flex-shrink: 0;
  background: var(--orange); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 22px;
  box-shadow: 0 4px 12px rgba(255,140,0,0.35);
}
.srv-offer-name  { font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 3px; }
.srv-offer-desc  { font-size: 12px; color: var(--muted); }
.srv-offer-price { font-size: 20px; font-weight: 800; color: var(--orange); white-space: nowrap; text-align: right; }
.srv-offer-price small {
  font-size: 10px; color: var(--muted); display: block;
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em;
}

/* ════════════════════════════════════════
   DAHİL OLANLAR
════════════════════════════════════════ */
.inc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 8px; }
.inc-item {
  display: flex; align-items: center; gap: 9px;
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-sm);
  padding: 10px 14px; font-size: 12.5px; font-weight: 600; color: var(--ink-2);
  transition: border-color 0.2s, background 0.2s;
}
.inc-item:hover { border-color: var(--green); background: #F0FDF8; }
.inc-item i {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--green); color: #fff; font-size: 12px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

/* ════════════════════════════════════════
   GALERİ
════════════════════════════════════════ */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
@media(min-width:480px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }
@media(min-width:768px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 140px; }
  .gallery-thumb:first-child { grid-column: span 2; grid-row: span 2; }
}
.gallery-thumb {
  border-radius: var(--r-sm); overflow: hidden;
  cursor: zoom-in; background: var(--bg-2); aspect-ratio: 1; display: block;
}
@media(min-width:768px) { .gallery-thumb { aspect-ratio: unset; } }
.gallery-thumb img {
  width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.35s;
}
.gallery-thumb:hover img { transform: scale(1.08); }
.gallery-empty { text-align: center; padding: 24px 0; font-size: 13px; color: var(--muted); }
.gallery-empty i { font-size: 36px; display: block; margin-bottom: 8px; color: var(--blue-mid); }

/* ════════════════════════════════════════
   VİDEO
════════════════════════════════════════ */
.video-wrap {
  border-radius: var(--r-md); overflow: hidden;
  background: linear-gradient(135deg, var(--ink), var(--ink-2));
  aspect-ratio: 16/9;
  display: flex; align-items: center; justify-content: center; position: relative;
}
.video-wrap::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,140,0,0.12) 0%, transparent 70%);
}
.video-play-btn {
  position: relative; z-index: 1;
  width: 68px; height: 68px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff; font-size: 24px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--sh-orange); transition: transform 0.25s; text-decoration: none;
}
.video-play-btn:hover { transform: scale(1.12); color: #fff; }
.video-play-btn::after {
  content: ''; position: absolute; inset: -8px; border-radius: 50%;
  border: 2px solid rgba(255,140,0,0.4);
  animation: pulse-ring 1.8s ease-out infinite;
}
@keyframes pulse-ring {
  0%   { transform: scale(0.9); opacity: 0.8; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ════════════════════════════════════════
   SSS
════════════════════════════════════════ */
.faq-item {
  border: 1px solid var(--border-2); border-radius: var(--r-md);
  margin-bottom: 8px; overflow: hidden; transition: border-color 0.2s;
}
.faq-item:hover { border-color: var(--orange-mid); }
.faq-q {
  padding: 13px 16px; font-size: 13px; font-weight: 700; color: var(--ink);
  cursor: pointer; display: flex; align-items: center; justify-content: space-between;
  transition: background 0.2s; user-select: none; gap: 10px;
}
.faq-q:hover { background: var(--orange-light); color: var(--orange-dark); }
.faq-q i { flex-shrink: 0; transition: transform 0.3s; color: var(--orange); }
.faq-q.open i { transform: rotate(180deg); }
.faq-a {
  padding: 12px 16px; font-size: 13px; color: var(--ink-3);
  line-height: 1.75; border-top: 1px solid var(--border);
  background: var(--bg); display: none;
}

/* ════════════════════════════════════════
   YORUMLAR
════════════════════════════════════════ */
.review-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; border-bottom: 1px solid var(--border);
}
.review-head h5 { font-size: 14px; font-weight: 700; color: var(--ink); margin: 0; }
.btn-yorum {
  height: 34px; padding: 0 16px; border: none; border-radius: var(--r-full);
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff; font-family: var(--font); font-size: 12px; font-weight: 700;
  cursor: pointer; box-shadow: 0 3px 10px rgba(255,140,0,0.3); transition: all 0.2s;
}
.btn-yorum:hover { transform: translateY(-1px); box-shadow: var(--sh-orange); }
.review-empty { text-align: center; padding: 28px 0; font-size: 13px; color: var(--muted); }
.review-empty i { font-size: 34px; display: block; margin-bottom: 8px; color: var(--blue-mid); }

/* ════════════════════════════════════════
   SAĞ SIDEBAR
════════════════════════════════════════ */
.sidebar-wrap { display: flex; flex-direction: column; gap: 16px; }
@media(min-width:992px) { .sidebar-wrap { position: sticky; top: 60px; } }

/* Fiyat kartı */
.price-card {
  background: var(--white); border-radius: var(--r-lg);
  overflow: hidden; border: 1px solid var(--orange-mid); box-shadow: var(--sh-md);
}
.price-card-head {
  background: linear-gradient(135deg, var(--blue-deeper) 0%, var(--ink-2) 100%);
  padding: 18px 20px;
  display: flex; align-items: center; justify-content: space-between;
  position: relative; overflow: hidden;
}
.price-card-head::after {
  content: ''; position: absolute; right: -30px; top: -30px;
  width: 120px; height: 120px; border-radius: 50%;
  border: 2px solid rgba(255,140,0,0.25);
}
.price-card-head-title { font-size: 14px; font-weight: 700; color: rgba(255,255,255,0.9); }
.indirim-badge {
  background: var(--orange); color: #fff;
  padding: 4px 13px; border-radius: var(--r-full);
  font-size: 11px; font-weight: 800;
  box-shadow: 0 3px 8px rgba(255,140,0,0.4); position: relative; z-index: 1;
}
.price-card-body { padding: 20px; }

.price-box {
  background: linear-gradient(135deg, var(--orange-light), #FFF6EE);
  border: 1.5px solid var(--orange-mid); border-radius: var(--r-md);
  padding: 16px; text-align: center; margin-bottom: 18px;
  position: relative; overflow: hidden;
}
.price-box::before {
  content: '₺'; position: absolute; right: -10px; bottom: -12px;
  font-size: 80px; font-weight: 900; color: rgba(255,140,0,0.06); line-height: 1;
}
.price-type-badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--orange); color: #fff;
  padding: 3px 12px; border-radius: var(--r-full);
  font-size: 10px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.06em; margin-bottom: 10px;
}
.price-lbl { font-size: 11px; color: var(--ink-3); font-weight: 600; margin-bottom: 4px; }
.price-num {
  font-size: 38px; font-weight: 900; color: var(--ink);
  line-height: 1; position: relative; z-index: 1;
}
.price-num sup { font-size: 18px; font-weight: 700; vertical-align: top; margin-top: 6px; display: inline-block; }
.price-note-sm { font-size: 11px; color: var(--muted); margin-top: 6px; }

.ek-section-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.ek-section-head h6 { font-size: 13px; font-weight: 700; color: var(--ink); margin: 0; }
.opt-badge {
  background: var(--blue-light); color: var(--blue);
  padding: 2px 10px; border-radius: var(--r-full); font-size: 10px; font-weight: 700;
}
.ek-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 9px 0; border-bottom: 1px dashed var(--border); gap: 10px;
}
.ek-item:last-child { border-bottom: none; }
.ek-label {
  display: flex; align-items: center; gap: 9px;
  font-size: 13px; font-weight: 600; color: var(--ink-3);
  cursor: pointer; flex: 1; min-width: 0;
}
.ek-check { width: 18px; height: 18px; accent-color: var(--orange); cursor: pointer; flex-shrink: 0; }
.ek-price { font-size: 13px; font-weight: 800; color: var(--orange); white-space: nowrap; flex-shrink: 0; }
.ek-empty { font-size: 12px; color: var(--muted); }

.total-row {
  display: flex; align-items: center; justify-content: space-between;
  background: linear-gradient(135deg, var(--orange-light), #FFF6EE);
  border: 1.5px solid var(--orange-mid); border-radius: var(--r-md);
  padding: 12px 16px; margin: 16px 0;
}
.total-lbl { font-size: 12px; font-weight: 700; color: var(--ink-3); }
.total-num { font-size: 24px; font-weight: 900; color: var(--orange-dark); }
.total-num span { font-size: 26px; }

/* Teklif Ver — ana CTA */
.btn-teklif {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  width: 100%; height: 52px; border: none; border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff; font-family: var(--font); font-size: 15px; font-weight: 800;
  cursor: pointer; box-shadow: var(--sh-orange); transition: all 0.25s;
  margin-bottom: 12px; letter-spacing: 0.02em;
}
.btn-teklif:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(255,140,0,0.42); }
.btn-teklif i { font-size: 18px; }

/* Masaüstü iletişim butonları satırı */
.desktop-contact-row {
  display: flex; gap: 8px; margin-bottom: 12px;
}
.dc-btn {
  flex: 1; height: 42px;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  border-radius: var(--r-sm); border: none;
  font-family: var(--font); font-size: 12px; font-weight: 700;
  cursor: pointer; transition: all 0.2s; text-decoration: none;
}
.dc-btn i { font-size: 17px; }
.dc-call {
  background: var(--blue-light); color: var(--blue-dark);
  border: 1.5px solid rgba(0,153,229,0.25);
}
.dc-call:hover  { background: var(--blue); color: #fff; border-color: var(--blue); }
.dc-wp {
  background: var(--green-light); color: var(--green-dark);
  border: 1.5px solid rgba(34,197,94,0.25);
}
.dc-wp:hover   { background: var(--green); color: #fff; border-color: var(--green); }
.dc-mail {
  background: var(--bg); color: var(--ink-3);
  border: 1.5px solid var(--border-2);
}
.dc-mail:hover { background: var(--ink-2); color: #fff; border-color: var(--ink-2); }

.price-disclaimer {
  text-align: center; font-size: 11px; color: var(--muted);
  display: flex; align-items: center; justify-content: center; gap: 5px;
}
.price-disclaimer i { color: var(--blue); font-size: 13px; }

/* ════════════════════════════════════════
   FIRMA KARTI
════════════════════════════════════════ */
.firma-card {
  background: var(--white); border-radius: var(--r-lg);
  border: 1px solid var(--border-2); box-shadow: var(--sh-xs); overflow: hidden;
}
.firma-card-head { height: 6px; background: linear-gradient(90deg, var(--orange), var(--orange-dark), var(--blue)); }
.firma-card-body { padding: 18px; }
.firma-card-title {
  font-size: 12px; font-weight: 700; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px;
  display: flex; align-items: center; gap: 6px;
}
.firma-card-title i { color: var(--orange); font-size: 15px; }
.firma-row { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.firma-avatar-wrap { position: relative; flex-shrink: 0; }
.firma-avatar { width: 60px; height: 60px; border-radius: 50%; border: 3px solid var(--orange); object-fit: cover; }
.firma-online { position: absolute; bottom: 2px; right: 2px; width: 14px; height: 14px; border-radius: 50%; background: var(--green); border: 2px solid #fff; }
.firma-name { font-size: 15px; font-weight: 800; color: var(--ink); margin-bottom: 3px; }
.firma-loc { font-size: 12px; color: var(--muted); display: flex; align-items: center; gap: 4px; margin-bottom: 5px; }
.firma-verified { display: inline-flex; align-items: center; gap: 4px; background: #E8FFF5; color: #059669; padding: 2px 10px; border-radius: var(--r-full); font-size: 10px; font-weight: 700; }
.firma-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 14px; }
.fsi { background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-sm); padding: 10px 8px; text-align: center; transition: border-color 0.2s; }
.fsi:hover { border-color: var(--orange-mid); }
.fsi-lbl { font-size: 9px; color: var(--muted); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; display: block; margin-bottom: 3px; }
.fsi-val { font-size: 14px; font-weight: 800; color: var(--ink); display: flex; align-items: center; justify-content: center; gap: 3px; }
.fsi-val i { font-size: 12px; color: var(--orange); }
.btn-profil {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  width: 100%; height: 40px; border: 2px solid var(--blue-deeper);
  border-radius: var(--r-full); background: none;
  color: var(--blue-deeper); font-family: var(--font); font-size: 13px; font-weight: 700;
  cursor: pointer; transition: all 0.2s; text-decoration: none;
}
.btn-profil:hover { background: var(--blue-deeper); color: #fff; }

/* ════════════════════════════════════════
   MOBİL STICKY ALT BAR
   [← Geri] [ℹ Fiyat] [→ Teklif Ver] [📞] [💬] [✉]
════════════════════════════════════════ */
.mob-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 500;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-2);
  box-shadow: 0 -4px 24px rgba(13,27,42,0.10);
  padding: 8px 10px;
  padding-bottom: calc(8px + var(--safe-b));
  display: flex; align-items: center; gap: 6px;
}
@media(min-width:992px) { .mob-bar { display: none !important; } }

/* İkon butonlar (Geri, Fiyat, Ara, WA, Mail) */
.mob-btn {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px;
  width: 48px; min-width: 48px; height: 52px;
  border-radius: var(--r-sm); border: 1.5px solid var(--border-2);
  background: var(--bg); color: var(--ink-3);
  font-family: var(--font); font-size: 8px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.04em;
  text-decoration: none; cursor: pointer; transition: all 0.18s; flex-shrink: 0;
}
.mob-btn i { font-size: 19px; line-height: 1; }
.mob-btn span { line-height: 1; }

/* Geri */
.mob-back:hover { background: var(--bg-2); color: var(--ink); border-color: var(--blue-mid); }

/* Fiyat / Info */
.mob-info { background: var(--blue-light); color: var(--blue-dark); border-color: rgba(0,153,229,0.25); }
.mob-info:hover { background: var(--blue); color: #fff; border-color: var(--blue); }
.mob-info i { color: var(--blue); }
.mob-info:hover i { color: #fff; }

/* Ara */
.mob-call { background: var(--blue-light); color: var(--blue-dark); border-color: rgba(0,153,229,0.2); }
.mob-call:hover { background: var(--blue); color: #fff; border-color: var(--blue); }
.mob-call i { color: var(--blue-dark); }
.mob-call:hover i { color: #fff; }

/* WhatsApp */
.mob-wp { background: var(--green-light); color: var(--green-dark); border-color: rgba(34,197,94,0.25); }
.mob-wp:hover { background: var(--green); color: #fff; border-color: var(--green); }
.mob-wp i { color: var(--green-dark); }
.mob-wp:hover i { color: #fff; }

/* Mail */
.mob-mail { background: var(--bg); color: var(--ink-3); border-color: var(--border-2); }
.mob-mail:hover { background: var(--ink-2); color: #fff; border-color: var(--ink-2); }

/* Teklif Ver — ana CTA, orta genişlik */
.mob-teklif {
  flex: 1; height: 52px; border: none; border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff; font-family: var(--font); font-size: 13px; font-weight: 800;
  display: flex; align-items: center; justify-content: center; gap: 7px;
  box-shadow: var(--sh-orange); cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s; letter-spacing: 0.01em;
  min-width: 0;
}
.mob-teklif:hover { transform: translateY(-1px); box-shadow: 0 10px 28px rgba(255,140,0,0.42); color: #fff; }
.mob-teklif i { font-size: 17px; }
.mob-teklif span { white-space: nowrap; }

/* ════════════════════════════════════════
   MOBİL FİYAT BOTTOM SHEET
════════════════════════════════════════ */
.mob-overlay {
  position: fixed; inset: 0; z-index: 600;
  background: rgba(13,27,42,0.55);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.mob-overlay.show { opacity: 1; pointer-events: all; }

.mob-sheet {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 700;
  background: var(--white);
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  box-shadow: 0 -12px 48px rgba(13,27,42,0.18);
  padding-bottom: var(--safe-b);
  max-height: 90vh; overflow-y: auto;
  transform: translateY(100%);
  transition: transform 0.38s cubic-bezier(0.32, 0.72, 0, 1);
}
.mob-sheet.show { transform: translateY(0); }

.mob-sheet-handle {
  width: 40px; height: 4px; border-radius: var(--r-full);
  background: var(--border-2); margin: 12px auto 0;
}
.mob-sheet-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px 10px;
  border-bottom: 1px solid var(--border);
}
.mob-sheet-title {
  font-size: 15px; font-weight: 800; color: var(--ink);
  display: flex; align-items: center; gap: 8px;
}
.mob-sheet-title i { color: var(--orange); font-size: 18px; }
.mob-sheet-close {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--bg); border: 1px solid var(--border-2);
  color: var(--ink-3); font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.2s;
}
.mob-sheet-close:hover { background: var(--red); color: #fff; border-color: var(--red); }

.mob-sheet-body { padding: 16px 20px 24px; }

/* Sheet: fiyat kutusu */
.mps-price-box {
  background: linear-gradient(135deg, var(--orange-light), #FFF6EE);
  border: 1.5px solid var(--orange-mid); border-radius: var(--r-md);
  padding: 16px; text-align: center; margin-bottom: 16px;
  position: relative; overflow: hidden;
}
.mps-price-box::before {
  content: '₺'; position: absolute; right: -10px; bottom: -12px;
  font-size: 80px; font-weight: 900; color: rgba(255,140,0,0.06); line-height: 1;
}
.mps-badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--orange); color: #fff;
  padding: 3px 12px; border-radius: var(--r-full);
  font-size: 10px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.06em; margin-bottom: 8px;
}
.mps-lbl { font-size: 11px; color: var(--ink-3); font-weight: 600; margin-bottom: 4px; }
.mps-num {
  font-size: 38px; font-weight: 900; color: var(--ink); line-height: 1; position: relative; z-index: 1;
}
.mps-num sup { font-size: 18px; font-weight: 700; vertical-align: top; margin-top: 6px; display: inline-block; }
.mps-note { font-size: 11px; color: var(--muted); margin-top: 6px; }

/* Sheet: ek hizmetler başlığı */
.mps-ek-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 8px; font-size: 13px; font-weight: 700; color: var(--ink);
}

/* Sheet: toplam */
.mps-total {
  display: flex; align-items: center; justify-content: space-between;
  background: linear-gradient(135deg, var(--orange-light), #FFF6EE);
  border: 1.5px solid var(--orange-mid); border-radius: var(--r-md);
  padding: 12px 16px; margin: 14px 0;
  font-size: 13px; font-weight: 700; color: var(--ink-3);
}
.mps-total strong { font-size: 22px; font-weight: 900; color: var(--orange-dark); }

/* Sheet: Teklif Ver butonu */
.mps-teklif-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; height: 52px; border: none; border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff; font-family: var(--font); font-size: 15px; font-weight: 800;
  cursor: pointer; box-shadow: var(--sh-orange); transition: all 0.25s;
  margin-bottom: 10px;
}
.mps-teklif-btn:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(255,140,0,0.42); }
.mps-teklif-btn i { font-size: 18px; }

.mps-disclaimer {
  text-align: center; font-size: 11px; color: var(--muted);
  display: flex; align-items: center; justify-content: center; gap: 5px; margin: 0;
}
.mps-disclaimer i { color: var(--blue); font-size: 13px; }

/* ════════════════════════════════════════
   MODAL
════════════════════════════════════════ */
.biz-modal .modal-content {
  border: none; border-radius: var(--r-lg);
  font-family: var(--font); box-shadow: var(--sh-lg); overflow: hidden;
}
.biz-modal .modal-header {
  border-bottom: 1px solid var(--border); padding: 16px 20px 12px;
  background: linear-gradient(135deg, var(--blue-deeper), var(--ink-2));
}
.biz-modal .modal-title { font-size: 15px; font-weight: 700; color: #fff; display: flex; align-items: center; gap: 8px; }
.biz-modal .modal-title i { color: var(--orange); font-size: 18px; }
.biz-modal .btn-close { filter: invert(1) opacity(0.7); }
.biz-modal .modal-body   { padding: 18px 20px; }
.biz-modal .modal-footer { border-top: 1px solid var(--border); padding: 12px 20px; background: var(--bg); }

.modal-srv-preview {
  display: flex; align-items: center; gap: 12px;
  background: var(--bg); padding: 12px; border-radius: var(--r-md);
  margin-bottom: 16px; border: 1px solid var(--border);
}
.modal-srv-preview img {
  width: 50px; height: 50px; border-radius: var(--r-sm);
  object-fit: cover; flex-shrink: 0;
}
.modal-srv-title {
  font-size: 13px; font-weight: 700; color: var(--ink);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.modal-srv-meta {
  font-size: 11px; color: var(--orange); font-weight: 700;
  display: flex; align-items: center; gap: 3px; margin-top: 2px;
}
.modal-srv-meta span { color: var(--muted); font-weight: 600; }
.modal-srv-meta i { color: var(--orange); }

.modal-field { margin-bottom: 12px; }
.modal-field:last-child { margin-bottom: 0; }

.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: 13px; 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.12); }
.biz-label { font-size: 11px; font-weight: 700; color: var(--ink-3); margin-bottom: 5px; display: block; }

.btn-modal-send {
  height: 42px; padding: 0 24px; border: none; border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff; font-family: var(--font); font-size: 13px; font-weight: 700;
  cursor: pointer; box-shadow: 0 4px 14px rgba(255,140,0,0.3); transition: all 0.2s;
}
.btn-modal-send:hover { transform: translateY(-1px); box-shadow: var(--sh-orange); }
.btn-modal-cancel {
  height: 42px; padding: 0 18px; 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-modal-cancel:hover { border-color: var(--orange); color: var(--orange); }
.star-rating a { color: var(--orange); font-size: 22px; margin-right: 4px; transition: transform 0.15s; }
.star-rating a:hover { transform: scale(1.2); }

/* ════════════════════════════════════════
   SHIMMER
════════════════════════════════════════ */
@keyframes shimmer {
  0%   { background-position: -600px 0; }
  100% { background-position:  600px 0; }
}
.skeleton {
  background: linear-gradient(90deg, var(--bg-2) 25%, var(--white) 50%, var(--bg-2) 75%);
  background-size: 600px 100%;
  animation: shimmer 1.6s ease-in-out infinite;
  border-radius: var(--r-sm);
}