/* ============================================================
   vcard.css  —  Faz 2 UI Yenilemesi
   Tasarım: Lüks/Refined minimalizm
   Font: Syne (başlık) + DM Sans (gövde)
   Renk: CSS custom property temelli, tema-bağımlı
   ============================================================ */

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

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary:    #1e88e5;
  --secondary:  #0d47a1;
  --bg:         #f1f4f9;
  --surface:    #ffffff;
  --text:       #111827;
  --muted:      #6b7280;
  --border:     rgba(0,0,0,.07);
  --shadow-sm:  0 2px 8px rgba(0,0,0,.06);
  --shadow-md:  0 8px 28px rgba(0,0,0,.10);
  --shadow-lg:  0 20px 56px rgba(0,0,0,.14);
  --radius-sm:  12px;
  --radius-md:  18px;
  --radius-lg:  26px;
  --radius-xl:  32px;
  --font-head:  'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body:  'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  min-height: 100dvh;
  -webkit-font-smoothing: antialiased;
}

/* ── Layout ───────────────────────────────────────────────── */
.vc-wrap {
  max-width: 480px;
  margin: 0 auto;
  background: var(--surface);
  min-height: 100dvh;
  position: relative;
  overflow: hidden;
}

/* ── Hero ─────────────────────────────────────────────────── */
.vc-hero {
  position: relative;
  background: linear-gradient(145deg, var(--primary) 0%, var(--secondary) 100%);
  padding: 52px 24px 68px;
  text-align: center;
  overflow: hidden;
}

/* Dekoratif arkaplân daireleri */
.vc-hero::before,
.vc-hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  opacity: .12;
  pointer-events: none;
}
.vc-hero::before {
  width: 300px; height: 300px;
  top: -80px; right: -60px;
  background: #fff;
}
.vc-hero::after {
  width: 200px; height: 200px;
  bottom: -40px; left: -50px;
  background: #fff;
}

.vc-avatar-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 16px;
}

.vc-avatar {
  width: 108px; height: 108px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(255,255,255,.35);
  background: rgba(255,255,255,.15);
  display: block;
  box-shadow: 0 12px 36px rgba(0,0,0,.22);
  transition: transform .3s ease;
}
.vc-avatar:hover { transform: scale(1.04); }

.vc-name {
  font-family: var(--font-head);
  font-size: clamp(20px, 5vw, 26px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.2px;
  line-height: 1.15;
  text-shadow: 0 2px 12px rgba(0,0,0,.18);
  margin-bottom: 5px;
}

.vc-title {
  font-size: 13px;
  color: rgba(255,255,255,.82);
  font-weight: 400;
  letter-spacing: .3px;
}

/* ── Action Buttons (Floating) ────────────────────────────── */
.vc-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: -28px;
  padding: 0 20px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.vc-action {
  background: var(--surface);
  width: 64px; height: 64px;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-decoration: none;
  color: var(--primary);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.vc-action:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.vc-action:active { transform: translateY(0); }
.vc-action-icon { font-size: 22px; line-height: 1; }

/* ── Sections ─────────────────────────────────────────────── */
.vc-section { padding: 24px 20px 4px; }
.vc-section:last-of-type { padding-bottom: 24px; }

.vc-section-title {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.vc-section-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ── Info Rows ────────────────────────────────────────────── */
.vc-info-list { display: flex; flex-direction: column; gap: 8px; }

.vc-info-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--bg);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  text-decoration: none;
  color: var(--text);
  transition: background .15s ease, border-color .15s ease;
}
.vc-info-row:hover {
  background: rgba(0,0,0,.03);
  border-color: rgba(0,0,0,.12);
}

.vc-info-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex; align-items: center; justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0,0,0,.12);
}

.vc-info-body { flex: 1; min-width: 0; }
.vc-info-label { font-size: 10px; font-weight: 600; letter-spacing: .5px; text-transform: uppercase; color: var(--muted); margin-bottom: 2px; }
.vc-info-value { font-size: 14px; font-weight: 500; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.vc-info-copy {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  flex-shrink: 0;
  transition: opacity .15s;
}
.vc-info-copy:hover { opacity: .88; }

/* ── Services ─────────────────────────────────────────────── */
.vc-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.vc-service {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 12px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .3px;
  text-transform: uppercase;
  color: var(--text);
  transition: background .15s, transform .15s;
}
.vc-service:hover { background: rgba(0,0,0,.03); transform: scale(1.02); }

/* ── Social ───────────────────────────────────────────────── */
.vc-social {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.vc-social-btn {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  background: var(--bg);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  color: var(--primary);
  transition: transform .2s ease, box-shadow .2s ease, background .15s;
  box-shadow: var(--shadow-sm);
}
.vc-social-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  background: var(--surface);
}
.vc-social-btn svg {
  width: 22px; height: 22px;
  fill: currentColor;
  display: block;
}

/* Google renkli */
.vc-social-btn svg.google path.g1 { fill: #4285F4; }
.vc-social-btn svg.google path.g2 { fill: #34A853; }
.vc-social-btn svg.google path.g3 { fill: #FBBC05; }
.vc-social-btn svg.google path.g4 { fill: #EA4335; }

/* ── QR Bölümü ────────────────────────────────────────────── */
.vc-qr-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.vc-qr-box {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px;
  text-align: center;
}
.vc-qr-inner {
  position: relative;
  display: inline-block;
  padding: 10px;
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
}
.vc-qr-inner img.qr-code {
  width: 150px; height: 150px;
  display: block;
  border-radius: 8px;
}
.vc-qr-logo {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 38px; height: 38px;
  border-radius: 50%;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,.18);
  overflow: hidden;
}
.vc-qr-logo img { width: 30px; height: 30px; border-radius: 50%; object-fit: cover; }
.vc-qr-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  margin-top: 10px;
  letter-spacing: .3px;
}
.vc-qr-url {
  font-size: 10px;
  color: var(--muted);
  margin-top: 4px;
  word-break: break-all;
  opacity: .7;
}

/* ── CTA Butonu ───────────────────────────────────────────── */
.vc-cta {
  display: block;
  margin: 8px 20px 32px;
  padding: 16px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .3px;
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
  transition: transform .2s ease, box-shadow .2s ease, opacity .15s;
}
.vc-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(0,0,0,.20);
}
.vc-cta:active { transform: translateY(0); opacity: .92; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 420px) {
  .vc-qr-grid { grid-template-columns: 1fr; }
  .vc-actions { gap: 8px; }
  .vc-action { width: 58px; height: 58px; }
}

/* ── Banka copy feedback ──────────────────────────────────── */
.vc-copy-toast {
  position: fixed;
  bottom: 24px; left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: rgba(17,24,39,.92);
  color: #fff;
  padding: 10px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  opacity: 0;
  transition: all .2s ease;
  z-index: 999;
  white-space: nowrap;
  backdrop-filter: blur(8px);
}
.vc-copy-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ════════════════════════════════════════════
   FAZ 4 — Yeni Bölümler
   ════════════════════════════════════════════ */

/* Çalışma Saatleri */
.vc-hours { display:flex; flex-direction:column; gap:0; }
.vc-hour-row {
  display:flex; justify-content:space-between; align-items:center;
  padding:10px 0; border-bottom:1px solid rgba(255,255,255,.08);
  font-size:14px;
}
.vc-hour-row:last-child { border-bottom:0; }
.vc-hour-today { font-weight:600; }
.vc-hour-day { display:flex; align-items:center; gap:8px; }
.vc-today-badge {
  font-size:10px; font-weight:700; padding:2px 7px;
  background:var(--vc-accent); color:#fff;
  border-radius:100px; letter-spacing:.3px;
}
.vc-hour-time { font-size:13px; opacity:.85; }

/* Galeri */
.vc-gallery {
  display:grid; grid-template-columns:repeat(3,1fr); gap:6px;
}
.vc-gallery-item {
  aspect-ratio:1; border-radius:10px; overflow:hidden;
  cursor:pointer; position:relative;
}
.vc-gallery-item img {
  width:100%; height:100%; object-fit:cover;
  transition:transform .3s;
}
.vc-gallery-item:hover img { transform:scale(1.05); }

/* Lightbox */
.vc-lightbox {
  display:none; position:fixed; inset:0; z-index:1000;
  background:rgba(0,0,0,.92);
  align-items:center; justify-content:center;
  flex-direction:column; gap:12px;
}
.vc-lightbox.open { display:flex; }
.vc-lightbox img {
  max-width:92vw; max-height:72vh;
  border-radius:12px; object-fit:contain;
}
.vc-lb-close {
  position:absolute; top:16px; right:20px;
  background:rgba(255,255,255,.15); border:none;
  color:#fff; font-size:20px; width:36px; height:36px;
  border-radius:50%; cursor:pointer; line-height:1;
}
.vc-lb-prev, .vc-lb-next {
  position:absolute; top:50%; transform:translateY(-50%);
  background:rgba(255,255,255,.15); border:none;
  color:#fff; font-size:28px; width:44px; height:44px;
  border-radius:50%; cursor:pointer; line-height:1;
}
.vc-lb-prev { left:12px; }
.vc-lb-next { right:12px; }
.vc-lb-cap { color:rgba(255,255,255,.7); font-size:13px; }

/* Videolar */
.vc-videos { display:flex; flex-direction:column; gap:14px; }
.vc-video-title { font-size:14px; font-weight:600; margin-bottom:6px; }
.vc-video-frame {
  position:relative; padding-bottom:56.25%; height:0;
  border-radius:12px; overflow:hidden;
}
.vc-video-frame iframe {
  position:absolute; inset:0; width:100%; height:100%;
}
.vc-video-link {
  display:flex; align-items:center; gap:10px;
  padding:14px 16px; border-radius:12px;
  background:rgba(255,255,255,.08);
  color:inherit; text-decoration:none; font-size:14px;
  transition:background .2s;
}
.vc-video-link:hover { background:rgba(255,255,255,.13); }

/* Katalog */
.vc-catalog { display:flex; flex-direction:column; gap:10px; }
.vc-catalog-item {
  display:flex; gap:12px; align-items:flex-start;
  padding:12px 14px; border-radius:12px;
  background:rgba(255,255,255,.07);
}
.vc-catalog-img {
  width:64px; height:64px; border-radius:8px;
  overflow:hidden; flex-shrink:0;
}
.vc-catalog-img img { width:100%; height:100%; object-fit:cover; }
.vc-catalog-body { flex:1; min-width:0; }
.vc-catalog-name { font-size:14px; font-weight:600; margin-bottom:3px; }
.vc-catalog-desc { font-size:12px; opacity:.7; margin-bottom:5px; line-height:1.4; }
.vc-catalog-price {
  font-size:15px; font-weight:700;
  color:var(--vc-accent);
}

/* Yorumlar */
.vc-testimonials { display:flex; flex-direction:column; gap:12px; }
.vc-testimonial {
  padding:14px 16px; border-radius:14px;
  background:rgba(255,255,255,.07);
  border-left:3px solid var(--vc-accent);
}
.vc-testi-stars { font-size:14px; color:#fbbf24; margin-bottom:6px; letter-spacing:1px; }
.vc-testi-content {
  font-size:13px; line-height:1.6;
  opacity:.9; font-style:italic; margin-bottom:8px;
}
.vc-testi-author { font-size:12px; opacity:.65; }
.vc-testi-author strong { opacity:1; }

/* ════════════════════════════════════════════
   FAZ 5 — Promo, Dark Mode, Sayaçlar, SSS, Lead, Review
   ════════════════════════════════════════════ */

/* Promosyon banner */
.vc-promo {
  display:flex; align-items:center; gap:8px;
  padding:10px 16px; margin-bottom:0;
  background:#e02424;
  color:#fff !important; font-size:13px; font-weight:600;
  text-align:center; justify-content:center;
}
.vc-promo *, .vc-dark .vc-promo, .vc-dark .vc-promo * { background:#e02424; color:#fff !important; }
.vc-promo-icon { font-size:16px; }

/* Dark mode toggle */
.vc-dm-toggle {
  position:absolute; top:14px; right:14px;
  background:rgba(255,255,255,.15); border:none;
  width:36px; height:36px; border-radius:50%;
  cursor:pointer; font-size:16px; line-height:1;
  display:flex; align-items:center; justify-content:center;
  backdrop-filter:blur(4px); z-index:10;
}

/* Dark mode overrides */
.vc-dark { filter:none; }
.vc-dark .vc-wrap { background:#0f1115; color:#e5e5e5; }
.vc-dark .vc-section { background:rgba(255,255,255,.05); }
.vc-dark .vc-card { background:#1a1d23; }
.vc-dark .vc-hour-row { border-color:rgba(255,255,255,.06); }
.vc-dark .vc-catalog-item { background:rgba(255,255,255,.06); }
.vc-dark .vc-testimonial { background:rgba(255,255,255,.06); }
.vc-dark .vc-faq-item { border-color:rgba(255,255,255,.08); }
.vc-dark .vc-lead-input { background:rgba(255,255,255,.08); color:#e5e5e5; border-color:rgba(255,255,255,.15); }
.vc-dark .vc-lead-input::placeholder { color:rgba(255,255,255,.35); }
.vc-dark .vc-cert { background:rgba(255,255,255,.06); }

/* Başarı Sayaçları */
.vc-stats {
  display:grid; grid-template-columns:repeat(auto-fit,minmax(100px,1fr));
  gap:12px; padding:4px 0;
}
.vc-stat-item {
  text-align:center; padding:14px 8px;
  background:rgba(255,255,255,.08);
  border-radius:12px;
}
.vc-stat-num {
  font-size:28px; font-weight:800;
  color:var(--vc-accent); line-height:1;
}
.vc-stat-suffix {
  font-size:16px; font-weight:700;
  color:var(--vc-accent); display:inline;
}
.vc-stat-label { font-size:12px; opacity:.7; margin-top:4px; }

/* Sertifikalar */
.vc-certs { display:flex; flex-direction:column; gap:8px; }
.vc-cert {
  display:flex; align-items:center; gap:12px;
  padding:11px 14px; border-radius:12px;
  background:rgba(255,255,255,.08);
}
.vc-cert-icon { font-size:20px; flex-shrink:0; }
.vc-cert-title { font-size:14px; font-weight:600; }
.vc-cert-meta { font-size:12px; opacity:.65; margin-top:2px; }

/* SSS */
.vc-faq { display:flex; flex-direction:column; }
.vc-faq-item { border-bottom:1px solid rgba(255,255,255,.08); }
.vc-faq-item:last-child { border-bottom:none; }
.vc-faq-q {
  width:100%; display:flex; justify-content:space-between; align-items:center;
  padding:13px 0; background:none; border:none; color:inherit;
  font-size:14px; font-weight:600; cursor:pointer; text-align:left; gap:10px;
}
.vc-faq-arrow {
  font-size:18px; flex-shrink:0; transition:transform .2s; display:inline-block;
}
.vc-faq-a {
  font-size:13px; line-height:1.7; opacity:.8;
  max-height:0; overflow:hidden; transition:max-height .3s ease, padding .3s;
  padding:0;
}
.vc-faq-a.open { max-height:600px; padding-bottom:12px; }

/* Lead form & Review form */
.vc-lead-form, .vc-review-form {
  display:flex; flex-direction:column; gap:10px;
}
.vc-lead-row { display:flex; gap:8px; }
.vc-lead-row .vc-lead-input { flex:1; }
.vc-lead-input {
  width:100%; padding:11px 14px;
  background:rgba(255,255,255,.1);
  border:1px solid rgba(255,255,255,.15);
  border-radius:10px; color:inherit; font-size:14px;
  font-family:inherit; outline:none;
  transition:border-color .2s;
}
.vc-lead-input:focus { border-color:var(--vc-accent); }
.vc-lead-input::placeholder { opacity:.5; }
.vc-lead-textarea { resize:vertical; min-height:80px; }
.vc-lead-btn {
  padding:12px; background:var(--vc-accent);
  color:#fff; border:none; border-radius:10px;
  font-size:14px; font-weight:700; cursor:pointer;
  transition:opacity .2s; font-family:inherit;
}
.vc-lead-btn:hover { opacity:.88; }
.vc-lead-btn:disabled { opacity:.6; cursor:default; }
.vc-lead-msg { font-size:13px; text-align:center; min-height:18px; }

/* Yıldız seçici */
.vc-star-picker { display:flex; gap:6px; justify-content:center; padding:4px 0; }
.vc-star-btn {
  background:none; border:none; font-size:28px;
  cursor:pointer; color:rgba(255,255,255,.35);
  line-height:1; transition:color .15s, transform .15s; padding:0;
}
.vc-star-btn.active, .vc-star-btn:hover { color:#fbbf24; transform:scale(1.15); }

/* Başarı Sayaçları */
.vc-counters {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 10px;
}
.vc-counter {
  text-align: center;
  background: rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 14px 10px;
}
.vc-counter-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--vc-accent);
  line-height: 1;
  margin-bottom: 4px;
}
.vc-counter-label {
  font-size: 12px;
  opacity: .7;
  line-height: 1.3;
}

/* Lead form — mesaj listesi (panel) */
.a-btn-success { background: #10b981; color: #fff; border-color: #10b981; }
.a-btn-success:hover { background: #059669; }
.a-btn-sm { padding: 5px 12px; font-size: 12px; }
