/* Yusafix iletişim sayfası — Iletisim.vue style bloğundan birebir taşındı */
.ik-root {
  --ink: #0a1124;
  --ink-2: #0e1830;
  --line: rgba(255, 255, 255, 0.09);
  --blue: #3b82f6;
  --blue-2: #2563eb;
  --amber: #f9a826;
  --amber-2: #f5901f;
  --green: #22c55e;
  --text: #e8eefb;
  --muted: #9fb0cf;

  position: relative;
  isolation: isolate;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--ink);
  color: var(--text);
  font-family: 'Plus Jakarta Sans', ui-sans-serif, system-ui, sans-serif;
  overflow-x: clip;
  line-height: 1.5;
}
.ik-root :where(h1, h2, h3) { font-family: 'Sora', sans-serif; letter-spacing: -0.02em; }
.ik-container { width: 100%; max-width: 1100px; margin-inline: auto; padding-inline: 22px; }

.ik-grid-bg {
  position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 80%);
}
.ik-glow { position: fixed; z-index: -2; border-radius: 50%; filter: blur(90px); pointer-events: none; opacity: 0.45; }
.ik-glow--blue { top: -160px; left: -120px; width: 480px; height: 480px; background: radial-gradient(circle, rgba(59,130,246,0.5), transparent 70%); }
.ik-glow--amber { top: 260px; right: -160px; width: 420px; height: 420px; background: radial-gradient(circle, rgba(249,168,38,0.28), transparent 70%); }

/* Nav */
.ik-nav { border-bottom: 1px solid var(--line); background: rgba(10,17,36,0.72); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); position: sticky; top: 0; z-index: 40; }
.ik-nav__inner { display: flex; align-items: center; justify-content: space-between; height: 74px; gap: 16px; }
.ik-brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: var(--text); }
.ik-brand__mark { display: grid; place-items: center; width: 44px; height: 44px; }
.ik-brand__mark img { width: 100%; height: 100%; object-fit: contain; }
.ik-brand__text { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 24px; letter-spacing: -0.02em; }
.ik-brand__text span { color: var(--amber); }
.ik-nav__actions { display: flex; align-items: center; gap: 8px; }

.ik-btn {
  display: inline-flex; align-items: center; gap: 8px; justify-content: center;
  font-family: 'Sora', sans-serif; font-weight: 600; font-size: 13.5px;
  padding: 10px 16px; border-radius: 12px; border: 1px solid transparent;
  text-decoration: none; cursor: pointer;
  transition: transform .18s ease, background .2s ease, box-shadow .25s ease;
  white-space: nowrap;
}
.ik-btn svg { width: 16px; height: 16px; }
.ik-btn--lg { padding: 14px 26px; font-size: 15px; border-radius: 14px; }
.ik-btn--solid { background: linear-gradient(180deg, var(--blue), var(--blue-2)); color: #fff; box-shadow: 0 8px 24px -8px rgba(37,99,235,0.7); }
.ik-btn--solid:hover { transform: translateY(-2px); }
.ik-btn--ghost { color: var(--text); background: rgba(255,255,255,0.05); border-color: var(--line); }
.ik-btn--ghost:hover { background: rgba(255,255,255,0.1); }
.ik-btn--amber { background: linear-gradient(180deg, var(--amber), var(--amber-2)); color: #2a1a00; box-shadow: 0 10px 28px -8px rgba(249,168,38,0.6); }
.ik-btn--amber:hover { transform: translateY(-2px); }

/* Hero */
.ik-hero { padding-top: 64px; padding-bottom: 40px; text-align: center; }
.ik-kicker { display: inline-block; font-family: 'Sora', sans-serif; font-weight: 600; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--amber); margin-bottom: 12px; }
.ik-h1 { font-size: clamp(32px, 5vw, 48px); font-weight: 800; line-height: 1.1; }
.ik-lead { color: var(--muted); font-size: 16.5px; max-width: 620px; margin: 18px auto 0; }

/* Kartlar */
.ik-kartlar { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; padding-bottom: 20px; }
.ik-kart {
  display: block; text-decoration: none; color: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.012));
  border: 1px solid var(--line); border-radius: 18px; padding: 24px;
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}
.ik-kart:hover { transform: translateY(-4px); border-color: rgba(59,130,246,0.42); box-shadow: 0 24px 46px -26px rgba(0,0,0,0.75); }
.ik-kart--wa:hover { border-color: rgba(34,197,94,0.45); }
.ik-kart__ikon { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 13px; margin-bottom: 16px; }
.ik-kart__ikon svg { width: 23px; height: 23px; }
.ik-i-mavi { background: rgba(59,130,246,0.14); color: var(--blue); }
.ik-i-amber { background: rgba(249,168,38,0.15); color: var(--amber); }
.ik-i-yesil { background: rgba(34,197,94,0.14); color: var(--green); }
.ik-kart h3 { font-size: 17px; font-weight: 600; margin-bottom: 6px; }
.ik-kart__deger { color: var(--text); font-size: 15px; font-weight: 500; word-break: break-word; }
.ik-kart__deger--adres { font-size: 14px; font-weight: 400; color: var(--muted); line-height: 1.55; }
.ik-kart__link { display: inline-block; margin-top: 14px; font-size: 13px; font-weight: 600; color: var(--blue); }
.ik-kart--wa .ik-kart__link { color: #4ade80; }

/* Çalışma saatleri — kart içinde ortalanmış */
.ik-saat {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.012));
  border: 1px solid var(--line); border-radius: 18px; padding: 28px 24px; margin-top: 4px;
  text-align: center;
}
.ik-saat__ikon { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 13px; background: rgba(249,168,38,0.15); color: var(--amber); margin: 0 auto 14px; }
.ik-saat__ikon svg { width: 23px; height: 23px; }
.ik-saat h3 { font-size: 17px; font-weight: 600; margin-bottom: 16px; }
.ik-saat__satirlar { display: flex; flex-direction: column; gap: 9px; max-width: 380px; margin-inline: auto; }
.ik-saat__satirlar div { display: flex; align-items: center; justify-content: space-between; gap: 16px; font-size: 14.5px; color: var(--muted); border-bottom: 1px dashed rgba(255,255,255,0.08); padding-bottom: 8px; }
.ik-saat__satirlar b { color: var(--text); font-weight: 600; }
.ik-kapali { color: #f87171 !important; }
.ik-saat__not { font-size: 12.5px; color: var(--muted); margin-top: 16px; }

/* CTA */
.ik-cta-alan { padding-block: 56px; }
.ik-cta {
  text-align: center; border-radius: 26px; padding: 52px 28px;
  background: linear-gradient(135deg, var(--blue-2), #1b2f6e 60%, var(--ink-2));
  border: 1px solid var(--line);
}
.ik-cta h2 { font-size: clamp(24px, 3.4vw, 34px); font-weight: 700; color: #fff; }
.ik-cta p { color: #cdd9f4; font-size: 16px; margin: 12px auto 26px; max-width: 480px; }

/* Footer */
.ik-footer { margin-top: auto; background: var(--ink-2); border-top: 1px solid var(--line); }
.ik-footer__inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; padding-block: 22px; padding-bottom: 84px; color: var(--muted); font-size: 13px; }
.ik-footer__linkler { display: flex; gap: 18px; flex-wrap: wrap; }
.ik-footer__linkler a { color: var(--muted); text-decoration: none; transition: color .2s; }
.ik-footer__linkler a:hover { color: var(--text); }

/* Yüzen WhatsApp (ana sayfayla aynı) */
.ik-wa {
  position: fixed; right: 20px; bottom: 24px; z-index: 60;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 16px; border-radius: 999px;
  background: linear-gradient(135deg, #25d366, #128c4a);
  color: #fff; text-decoration: none;
  box-shadow: 0 16px 34px -12px rgba(18,140,74,0.65);
  animation: ik-wa-in .6s cubic-bezier(.2,.7,.3,1) .9s backwards;
  transition: transform .3s cubic-bezier(.2,.7,.3,1), box-shadow .3s ease;
}
.ik-wa:hover { transform: translateY(-4px) scale(1.03); box-shadow: 0 22px 44px -14px rgba(18,140,74,0.75); }
.ik-wa:active { transform: translateY(-1px) scale(.98); }
@keyframes ik-wa-in { from { opacity: 0; transform: translateX(50px) scale(.7); } }
.ik-wa__icon { position: relative; display: grid; place-items: center; width: 24px; height: 24px; flex-shrink: 0; }
.ik-wa__icon svg { width: 24px; height: 24px; }
.ik-wa__ring {
  position: absolute; inset: -7px; border-radius: 999px;
  border: 2px solid rgba(37,211,102,0.55);
  animation: ik-wa-ring 2.4s cubic-bezier(.3,.6,.3,1) infinite;
  pointer-events: none;
}
@keyframes ik-wa-ring {
  0% { transform: scale(.86); opacity: .9; }
  70% { transform: scale(1.4); opacity: 0; }
  100% { opacity: 0; }
}
.ik-wa__label { font-family: 'Sora', sans-serif; font-weight: 600; font-size: 13.5px; white-space: nowrap; }

@media (prefers-reduced-motion: reduce) {
  .ik-wa, .ik-wa__ring { animation: none !important; }
}

/* Responsive */
@media (max-width: 780px) {
  .ik-kartlar { grid-template-columns: 1fr; gap: 12px; }
  .ik-hero { padding-top: 44px; padding-bottom: 28px; }
  .ik-kart { padding: 18px; }
  .ik-kart__ikon { width: 40px; height: 40px; margin-bottom: 12px; }
  .ik-saat { padding: 18px; gap: 14px; }
  .ik-cta-alan { padding-block: 40px; }
  .ik-cta { padding: 36px 20px; }
}
@media (max-width: 480px) {
  .ik-nav__inner { height: 64px; }
  .ik-brand__mark { width: 34px; height: 34px; }
  .ik-brand__text { font-size: 18px; }
  .ik-nav__actions .ik-btn { padding: 8px 11px; font-size: 12px; }
  .ik-footer__inner { flex-direction: column; align-items: flex-start; }
  .ik-wa { right: 14px; bottom: 16px; }
}

/* Dar ekranda yazı gizlenir, simge kalır (ana sayfayla aynı) */
@media (max-width: 420px) {
  .ik-wa__label { display: none; }
  .ik-wa { padding: 13px; gap: 0; }
}
