/* === BLOG + PROFESYONEL FOOTER SON DÜZEN === */
.blog-section{
  padding:76px 0;
  background:
    radial-gradient(circle at 18% 0%, rgba(22,140,255,.13), transparent 28%),
    linear-gradient(180deg,#03142f,#041a41);
  border-top:1px solid rgba(72,180,255,.16);
}

.blog-section .section-title{
  margin-bottom:34px;
}

.blog-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.blog-card{
  min-height:245px;
  background:
    radial-gradient(circle at top right, rgba(22,140,255,.13), transparent 28%),
    linear-gradient(180deg,rgba(8,33,78,.94),rgba(3,20,47,.98));
  border:1px solid rgba(72,180,255,.23);
  border-radius:22px;
  padding:26px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  box-shadow:0 18px 45px rgba(0,0,0,.18);
  transition:.25s ease;
}

.blog-card:hover{
  transform:translateY(-5px);
  border-color:rgba(72,180,255,.55);
  box-shadow:0 24px 60px rgba(0,0,0,.28);
}

.blog-icon{
  width:58px;
  height:58px;
  border-radius:16px;
  display:grid;
  place-items:center;
  color:#ffffff;
  font-size:27px;
  background:linear-gradient(135deg,#168cff,#062650);
  border:1px solid rgba(72,180,255,.35);
  margin-bottom:18px;
}

.blog-card h3{
  margin:0 0 12px;
  font-size:21px;
  line-height:1.25;
  color:#ffffff;
}

.blog-card p{
  margin:0 0 18px;
  color:#c7d7ef;
  line-height:1.65;
  font-size:15px;
}

.blog-read{
  color:#48b4ff;
  font-weight:950;
  font-size:14px;
}

.site-footer{
  background:#020812;
  color:#ffffff;
  border-top:1px solid rgba(72,180,255,.14);
}

.footer-top{
  padding:56px 0 42px;
  background:
    radial-gradient(circle at 12% 10%, rgba(22,140,255,.10), transparent 28%),
    linear-gradient(180deg,#020d23,#020812);
}

.footer-grid{
  display:grid;
  grid-template-columns:1.25fr .85fr .85fr 1fr;
  gap:34px;
  align-items:start;
}

.footer-logo{
  width:165px;
  height:auto;
  max-height:68px;
  object-fit:contain;
  display:block;
  margin-bottom:18px;
}

.footer-about p{
  color:#b9c9e4;
  line-height:1.75;
  margin:0 0 18px;
  font-size:15px;
}

.footer-social{
  display:flex;
  gap:10px;
}

.footer-social a{
  width:40px;
  height:40px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:rgba(22,140,255,.12);
  border:1px solid rgba(72,180,255,.25);
  color:#48b4ff;
}

.footer-col h3{
  margin:0 0 18px;
  font-size:20px;
  color:#ffffff;
}

.footer-links{
  display:grid;
  gap:12px;
}

.footer-links a,
.footer-contact a,
.footer-contact span{
  color:#c7d7ef;
  font-size:15px;
  line-height:1.45;
}

.footer-links a:hover,
.footer-contact a:hover{
  color:#48b4ff;
}

.footer-contact{
  display:grid;
  gap:12px;
}

.footer-contact .line{
  display:flex;
  gap:11px;
  align-items:flex-start;
}

.footer-contact i{
  color:#48b4ff;
  width:18px;
  margin-top:2px;
}

.footer-cta{
  margin-top:18px;
  display:flex;
  gap:10px;
}

.footer-cta a{
  flex:1;
  height:44px;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:950;
  font-size:14px;
}

.footer-cta .call{
  background:#ffffff;
  color:#03142f;
}

.footer-cta .wa{
  background:#14bd43;
  color:#ffffff;
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,.08);
  padding:18px 0;
  color:#9fb0ca;
  font-size:14px;
}

.footer-bottom-inner{
  display:flex;
  justify-content:space-between;
  gap:18px;
  align-items:center;
}

.footer-bottom a{
  color:#9fb0ca;
}

@media(max-width:980px){
  .blog-grid{
    grid-template-columns:1fr;
  }

  .footer-grid{
    grid-template-columns:1fr 1fr;
  }
}

@media(max-width:760px){
  .blog-section{
    padding:54px 0;
  }

  .blog-card{
    min-height:auto;
    padding:22px;
  }

  .footer-top{
    padding:42px 0 30px;
  }

  .footer-grid{
    grid-template-columns:1fr;
    gap:28px;
  }

  .footer-bottom-inner{
    flex-direction:column;
    text-align:center;
  }

  .footer-cta{
    flex-direction:row;
  }
}
