.pro-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
    padding: 50px 20px;
}

/* CARD */
.pro-card {
    position: relative;
    background: #fff;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    transition: transform .35s ease, box-shadow .35s ease;
    transform-style: preserve-3d;
    box-shadow: 0 8px 30px rgba(0,0,0,0.45);
}

.pro-card:hover {
    transform: rotateY(6deg) rotateX(3deg) scale(1.02);
}

/* CARD LIGHT (mouse-follow) */
.card-light {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at var(--x,50%) var(--y,50%),
        rgba(255,255,255,0.14),
        rgba(255,255,255,0.03) 30%,
        transparent 50%);
    opacity: 0;
    transition: opacity .25s linear;
}
.pro-card:hover .card-light { opacity: 1; }

/* LIGHT SWEEP */
.sweep {
    position: absolute;
    top: 0;
    left: -120%;
    width: 80%;
    height: 100%;
    background: linear-gradient(120deg,
        transparent,
        rgba(255,255,255,0.28),
        transparent);
    transform: skewX(-25deg);
    transition: left .7s cubic-bezier(.2,.9,.2,1);
    pointer-events: none;
}
.pro-card:hover .sweep { left: 140%; }

/* SKELETON (İNCE) */
.skeleton {
    height: 50px;
    background: linear-gradient(90deg,
        rgba(255,255,255,0.06),
        rgba(255,255,255,0.14),
        rgba(255,255,255,0.06));
    background-size: 200% 100%;
    animation: shine 1.2s linear infinite;
}
@keyframes shine { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }

/* THUMB IMAGE */
.thumb {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: none;
    transition: transform .35s ease, filter .35s ease;
}
.pro-card:hover .thumb {
    transform: scale(1.06);
    filter: none !important;
}

/* INFO */
.pro-info {
    padding: 14px;
}
.pro-info h3 { margin: 0; font-size: 18px; color: var(--accent); }
.pro-info p { margin: 8px 0 0 0; color: rgba(255,255,255,0.86); font-size: 14px; }

/* =========================
   MODAL / VIEWER
   ========================= */
#fullView {
    position: fixed;
    inset: 0;
    display: none;
    background: rgba(0,0,0,0.78);
    backdrop-filter: blur(14px);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    padding: 36px;
}

/* modal fade-in */
#fullView.open {
    display: flex;
    animation: modalFade .28s cubic-bezier(.2,.9,.2,1);
}
@keyframes modalFade {
  from { opacity: 0; transform: scale(.98); } 
  to { opacity: 1; transform: scale(1); }
}

.viewer-wrap {
    position: relative;
    width: min(1100px, 92%);
    height: min(720px, 78vh);
    display:flex;
    align-items:center;
    justify-content:center;
}

#fullImg {
    max-width: 100%;
    max-height: 100%;
    border-radius: 12px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.6);
    transition: transform .25s ease;
    display:block;
    user-select: none;
    -webkit-user-drag: none;
}

/* Magnifier (glass) */
#magnifier {
    position: absolute;
    width: 180px;
    height: 180px;
    pointer-events: none;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.35);
    overflow: hidden;
    display: none;
    z-index: 12;
    /* glass look */
    background-repeat: no-repeat;
    background-size: 200% 200%;
    background-position: center center;
    background-color: rgba(255,255,255,0.03);
    backdrop-filter: blur(6px) saturate(120%);
    -webkit-backdrop-filter: blur(6px) saturate(120%);
    box-shadow: 0 8px 24px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.03);
    transition: width .12s ease, height .12s ease, transform .08s linear;
}

/* shapes */
#magnifier.shape-square { border-radius: 8px; }
#magnifier.shape-hex { clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0% 50%); border-radius:0; }

/* glare (light streak inside magnifier) */
#magnifier .glare {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.22) 40%, rgba(255,255,255,0.02) 60%, transparent 80%);
    transform: translateX(-120%) rotate(-12deg);
    opacity: 0.8;
    transition: transform .6s ease;
}
#magnifier.show-glare .glare { transform: translateX(40%) rotate(-12deg); }

/* controls panel inside modal (bottom) */
.modal-controls {
    position: absolute;
    bottom: 26px;
    left: 50%;
    transform: translateX(-50%);
    width: min(1100px, 92%);
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap: 12px;
    z-index: 20;
}
.modal-text { color: #fff; }
.controls {
    display:flex;
    align-items:center;
    gap:8px;
}
.controls button {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    color: #fff;
    padding: 6px 10px;
    border-radius: 8px;
    cursor:pointer;
}
.controls button:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0,0,0,0.45); }
.controls .shape-btn { font-size: 16px; padding:6px 8px; }

/* close & arrows */
#closeFull {
    position: fixed;
    top: 20px;
    right: 28px;
    z-index: 60;
    font-size: 36px;
    color: #fff;
    background: rgba(0,0,0,0.2);
    border: none;
    padding: 6px 10px;
    border-radius: 8px;
    cursor:pointer;
}
.nav-arrow {
    position: fixed;
    z-index: 60;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.25);
    border: none;
    color: #fff;
    font-size: 36px;
    padding: 8px 12px;
    border-radius: 10px;
    cursor:pointer;
}
#leftArrow { left: 28px; }
#rightArrow { right: 28px; }

/* small responsive tweaks */
@media (max-width:800px){
  #magnifier { width: 120px; height:120px; }
  .modal-controls { padding: 8px; gap:8px; flex-direction:column; align-items:center; bottom:14px; }
  .controls { flex-wrap:wrap; justify-content:center; }
  .viewer-wrap { height: 56vh; }
}
body.magnifier-active {
    cursor: none !important;
}
/* Cam kırığı efekti */
#magnifier::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.55;
    mix-blend-mode: screen;
    background-image:
      /* ana kırık çizgiler */
      linear-gradient(135deg, rgba(255,255,255,0.5) 0 2px, transparent 2px 100%),
      linear-gradient(45deg, rgba(255,255,255,0.45) 0 1px, transparent 1px 100%),
      radial-gradient(circle at 20% 30%, rgba(255,255,255,0.45), transparent 55%),
      radial-gradient(circle at 70% 70%, rgba(255,255,255,0.35), transparent 60%);
    background-repeat: no-repeat;
    background-size:
      2px 100%,
      100% 2px,
      140% 140%,
      160% 160%;
    background-position:
      50% 0,
      0 50%,
      0 0,
      100% 100%;
}

/* Büyüteç açıkken mouse gizlensin */
body.magnifier-active {
    cursor: none !important;
}

/* Sağ tık ile sabitlenince kenarlık rengi değişsin */
#magnifier.pinned {
    border-color: rgba(255,100,100,0.8);
    box-shadow: 0 0 16px rgba(255,120,120,0.7), 0 8px 24px rgba(0,0,0,0.5);
}

/* =====================================================
   ARDA LIGHT OVERRIDE – PRO SERVICES (FINAL)
   Bu kodu services.css EN ALTINA ekle
===================================================== */

/* Genel arka plan */
:root{
  --bg:#ffffff;
  --accent:#3089d7;
}

body{
  background:#ffffff !important;
  color:#333 !important;
}

/* Grid alanı */
.pro-services{
  background:#ffffff !important;
}

/* Kart ana yapı */
.pro-services .pro-card{
  position:relative;
  background:#ffffff !important;
  border:1px solid #e6e6e6 !important;
  border-radius:14px;
  box-shadow:0 10px 30px rgba(0,0,0,0.08) !important;
  transition:transform .35s ease, box-shadow .35s ease;
}

/* Hover */
.pro-services .pro-card:hover{
  transform:translateY(-8px) scale(1.02);
  border-color:#3089d7 !important;
  box-shadow:0 25px 60px rgba(48,137,215,0.25) !important;
}

/* Görsel kararmasını kaldır */
.pro-services .pro-card .thumb{
  filter:none !important;
  opacity:1 !important;
}

.pro-services .pro-card:hover .thumb{
  transform:scale(1.06);
  filter:none !important;
}

/* Yazılar */
.pro-services .pro-info h3{
  color:#3089d7 !important;
  font-weight:700;
}

.pro-services .pro-info p{
  color:#333 !important;
}

/* Dark overlay efektlerini temizle */
.pro-services .card-dark,
.pro-services .card-light,
.pro-services .sweep{
  background:transparent !important;
  opacity:0 !important;
}

/* Mouse ışık efekti – mavi ton */
.pro-services .card-light{
  background:radial-gradient(circle at var(--x,50%) var(--y,50%),
      rgba(48,137,215,0.18),
      rgba(48,137,215,0.05) 30%,
      transparent 50%) !important;
}
.pro-card{
  background:#ffffff !important;
  border:1px solid #e6e6e6 !important;
  box-shadow:0 10px 30px rgba(0,0,0,0.08) !important;
}
.pro-info p{
  color:#333 !important;
}
