.vl-footer-recent-post {
    list-style: none;
    margin: 0;
    padding: 0;
    padding-top: 14px;
}

.vl-footer-recent-post li{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:16px;
}

.vl-footer-recent-post li:last-child {
    margin-bottom: 0;
}

/* Görsel alanı */
.vl-footer-recent-post .post-thumb {
    flex: 0 0 64px;
    height: 64px;
    overflow: hidden;
    border-radius: 6px;
}

.vl-footer-recent-post .post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* İçerik alanı */
.vl-footer-recent-post .post-content{
    flex:1;
    min-width:0;
    font-size:14px;
    line-height:1.4;
}

.vl-footer-recent-post .post-content a{
    display:block;
    width:100%;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
    padding:0 !important;
    font-weight:bold;

    color: var(--ztc-text-text-3);
    font-family: var(--ztc-family-font2);
    font-size: var(--ztc-font-size-font-s16);
    font-style: normal;
    line-height: 16px;
    transition: all 0.4s;
}

.vl-footer-recent-post .post-content span{
    display:block;
    width:100%;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}

/* Hover – renk kullanmadan etkileşim */
.vl-footer-recent-post li:hover {
    transform: translateX(2px);
    transition: transform 0.2s ease;
}

.vl-footer-recent-post .post-content a:hover {
    text-decoration: underline;
}

/* ===== ABOUT PAGE STYLES ===== */

/* Pera Box Styles */
.pera-box .icons {
    color: #fff;
    font-size: 24px;
}

/* Service Box Area Styles */
.service-boxarea {
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.service-boxarea:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.15);
}

.service-boxarea .icons {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ztc-bg-bg-3);
    border-radius: 50%;
    color: #fff;
    font-size: 32px;
    transition: all 0.3s ease;
}

.service-boxarea:hover .icons {
    background: var(--ztc-bg-bg-4);
}

.service-boxarea h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 15px;
}

.service-boxarea p {
    margin: 0;
    color: #4a5568;
    line-height: 1.7;
    font-size: 15px;
}

.faq-inner-section-area .btn-area1 .vl-btn1.btn2 {
  border: 1px solid var(--ztc-text-text-1);
  margin-left: 16px;
  background: transparent;
  color: var(--ztc-text-text-1);
}

/* Grid */
.catalog-inner-section-area .catalog-grid{
  margin-top: 8px;
}

/* Kart */
.catalog-inner-section-area .catalog-card{
  position: relative;
  overflow: hidden;
  border-radius: 8px;

  background: #fff;
  border: 1px solid var(--ztc-bg-bg-3);
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.06);

  will-change: transform, box-shadow, border-color;
  transition:
    transform 320ms cubic-bezier(.2,.8,.2,1),
    box-shadow 320ms cubic-bezier(.2,.8,.2,1),
    border-color 320ms cubic-bezier(.2,.8,.2,1);
}

.catalog-inner-section-area .catalog-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(2, 6, 23, 0.12);
  border-color: var(--ztc-bg-bg-8);
}

/* Poster (A4) */
.catalog-inner-section-area .catalog-poster{
  display: block;
  position: relative;
  aspect-ratio: 210 / 297;
  overflow: hidden;
  background: var(--ztc-bg-bg-3);
}

.catalog-inner-section-area .catalog-poster img{
  width: 100%;
  height: 100%;
  object-fit: cover;

  will-change: transform;
  transform: scale(1.01);
  transition: transform 520ms cubic-bezier(.2,.8,.2,1);
}

.catalog-inner-section-area .catalog-card:hover .catalog-poster img{
  transform: scale(1.06);
}

/* İçerik (overlay) */
.catalog-inner-section-area .catalog-body{
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;

  display: flex;
  flex-direction: column;
  gap: 8px;

  padding: 16px 16px 18px;
  background: rgba(35, 48, 90, 0.82); /* var(--ztc-bg-bg-3) alpha */
  will-change: background-color, padding;
  transition:
    background-color 360ms cubic-bezier(.2,.8,.2,1),
    padding 360ms cubic-bezier(.2,.8,.2,1);
}

.catalog-inner-section-area .catalog-card:hover .catalog-body{
  background: rgba(26, 37, 68, 0.92); /* var(--ztc-bg-bg-4) alpha */
  padding-bottom: 3rem;
}

/* Metinler */
.catalog-inner-section-area .catalog-title{
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.25;
  letter-spacing: -0.2px;
  color: var(--ztc-text-text-1);
}

.catalog-inner-section-area .catalog-desc{
  margin: 0;
  font-size: .95rem;
  line-height: 1.45;
  color: rgba(226, 232, 240, 0.78);

  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Aksiyonlar */
.catalog-inner-section-area .catalog-actions{
  margin-top: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.catalog-inner-section-area .catalog-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 10px 14px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: .92rem;
  white-space: nowrap;

  color: var(--ztc-text-text-1);
  background: var(--ztc-bg-bg-10);

  will-change: transform, background-color;
  transition:
    background-color 260ms cubic-bezier(.2,.8,.2,1),
    transform 260ms cubic-bezier(.2,.8,.2,1);
}

.catalog-inner-section-area .catalog-btn:hover{
  background: var(--ztc-bg-bg-8);
  transform: translateY(-1px);
}

@media (prefers-reduced-motion: reduce){
  .catalog-inner-section-area .catalog-card,
  .catalog-inner-section-area .catalog-poster img,
  .catalog-inner-section-area .catalog-body,
  .catalog-inner-section-area .catalog-btn{
    transition: none !important;
  }
}


.service-inner-section-area .service3-single-boxarea .icons {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    position: relative;
    overflow: hidden;
}

.service-inner-section-area .service3-single-boxarea .icons img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: 
        transform 0.4s ease,
        filter 0.4s ease;
}

.service-inner-section-area .service3-single-boxarea:hover .icons img {
    transform: scale(1.08);
    filter: grayscale(100%);
}

.service-inner-section-area .service3-single-boxarea:hover .icons{
    transform: none !important;
}

.request-types-section .request-card{
  background-color: var(--ztc-bg-bg-3);
}

.request-types-section .request-card .hologram-icon{
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 120px;
  line-height: 120px;
  opacity: 0.4;
  color: var(--ztc-bg-bg-10);
}

.vl-offcanvas .vl-hero-btn .language-icon *{
  white-space: nowrap;
}

.vl-offcanvas .vl-hero-btn .language-icon a{
  color: var(--ztc-text-text-1);
  margin-left: 1rem;
  width: 40px;
  height: 40px;
  line-height: 40px;
  display: inline-block;
}

.vl-offcanvas .vl-hero-btn .language-icon a:first-child{
  margin-left: 0;
}

.vl-offcanvas .vl-hero-btn .language-icon a.active{
  color: var(--ztc-text-text-2);
  background: var(--ztc-bg-bg-1);
  border-radius: 4px;
}

.vl-referances-area{
  background-image: url(/assets/default/img/all-images/bg/bg2.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 4rem 2rem;
}

.referances-slider-area .owl-stage {
  display: flex;
}

.referances-slider-area .owl-item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.referances-slider-area .icons {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-align: center;
}

.referances-slider-area .icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.referances-slider-area .icons img {
  display: block;
  max-width: 100%;
  max-height: 120px;
  height: auto;
  width: auto;

  filter: grayscale(100%);
  opacity: 0.85;
  transition: filter 300ms ease, opacity 300ms ease, transform 300ms ease;
}

.referances-slider-area .icons img:hover,
.referances-slider-area .icons a:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: translateY(-1px);
}


