@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
/* HEADER GENEL YAPI */
.header {
  width: 100%;
  height: 100px;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.header .container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
}

.header.scrolled {
    background-color: #fff;
    box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

.header .logo img {
    height:50px;
}

.header .menu {
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: center;
  flex: 1;
}

.header .menu a {
    text-decoration: none;
    color: #000;
    font-size:16px;
    font-family:'Epunda Slab', sans-serif;
    font-weight: 400;
}

.header.scrolled .menu a {
    color:#000;
}

.header .lang {
  display: flex;
  align-items: center;
  gap:5px;
}

.header .bars {
  color: #333;
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* MOBİL YAPI */
@media (max-width: 768px) {
    .header .logo img {
        height:40px;
    }
    .header {
        height: 75px;
    }
    .header .lang {
        gap:10px;
    }
    .header .container {
        width: 100%;
        padding: 0 20px;
    }
  .header .menu {
    display: none;
  }

  .header .bars {
    display: inline-block;
  }

  .footer .menu     {
      display:none;
  }

}


/* Mobil Menü Overlay */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.mobile-menu-overlay.active {
  display: flex;
}

.mobile-menu-overlay a {
  color: white;
  font-size: 24px;
  margin: 0 0 10px 0;
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  opacity: 0;
  animation: fadeInUp 0.5s ease forwards;
}

.mobile-menu-overlay a:nth-child(1) { animation-delay: 0.2s; }
.mobile-menu-overlay a:nth-child(2) { animation-delay: 0.4s; }
.mobile-menu-overlay a:nth-child(3) { animation-delay: 0.6s; }
.mobile-menu-overlay a:nth-child(4) { animation-delay: 0.8s; }
.mobile-menu-overlay a:nth-child(5) { animation-delay: 1.0s; }
.mobile-menu-overlay a:nth-child(6) { animation-delay: 1.2s; }
.mobile-menu-overlay a:nth-child(7) { animation-delay: 1.4s; }
.mobile-menu-overlay a:nth-child(8) { animation-delay: 1.6s; }
.mobile-menu-overlay a:nth-child(9) { animation-delay: 1.8s; }
.mobile-menu-overlay a:nth-child(10) { animation-delay: 2.0s; }

/* fadeInUp keyframe yedek (animate.css yoksa) */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

a.flip-animate {
    perspective: 1000px;
    span {
        position: relative;
        display: inline-block;
        padding: 8px 10px;
        transition: transform 0.3s;
        transform-origin: 50% 0;
        transform-style: preserve-3d;
        backface-visibility: hidden; // ✅ Ekle
    }

    span:before {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: 100%;
        content: attr(data-hover);
        transition: color 0.3s;
        transform: rotateX(-90deg);
        transform-origin: 50% 0;
        text-align: center;
        padding: 8px 10px;
        background: #fff;
        border-radius:5px;
        backface-visibility: hidden; // ✅ Ekle
    pointer-events: none; // ekstra garanti
    opacity: 0; // görünürlüğü sıfırla
    }
    &:hover span,
    &:focus span {
        transform: rotateX(90deg) translateY(-22px);
    }
    &:hover span:before,
    &:focus span:before {
        opacity: 1;
        color: rgb(210, 73, 54);
    }
}

.homeContento h3    {
    color:#555;
    font-family: 'Outfit', sans-serif;
    font-size:34px;
}
.homeContento h2    {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size:32px;
}

.footer {
    width: 100%;
    padding:0;
    background:#fff;
    box-shadow: rgba(255, 255, 255, 0.1) 0 1px 1px 0 inset, rgba(50, 50, 93, 0.25) 0 50px 100px -20px, rgba(0, 0, 0, 0.3) 0 30px 60px -30px;
}
.footer .container {
    height:100px;
    display:flex !important;
    align-items:center !important;
    justify-content:space-between !important;
}

.footer .logo img {
    height:50px;
}

.footer nav a   { color:#333; font-size:13px; }

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.mice-box {
    opacity: 0;
    transform: translateY(40px);
}

.mice-box.animate {
    animation: fadeInUp 0.6s forwards;
}

.delay-0 {
    animation-delay: 0s;
}
.delay-1 {
    animation-delay: 0.3s;
}
.delay-2 {
    animation-delay: 0.6s;
}
.delay-3 {
    animation-delay: 0.9s;
}
.delay-4 {
    animation-delay: 1.2s;
}

.pageHeader {
    height: 250px;
    display: flex;
    align-items: center;         /* içeriği dikeyde alta hizalar */
    justify-content: center;
    color: #000;
    font: 700 32px 'Epunda Slab', sans-serif;
    background: url('../images/header-bg.png?version=1.0.0') no-repeat center top;
    background-size: cover;
    text-align: center;
}
.servicesImageWrapper {
    width: 100%;
    height: auto;
    margin-bottom: 15px;

    display: flex;
    justify-content: center;
    align-items: center;

    border-radius: 50%;
    overflow: hidden;
    background-color: #f0f0f0; /* arka plan görünmesi için opsiyonel */
    aspect-ratio: 1 / 1; /* yuvarlak sabit oran */
}

.servicesRow {
    display: flex;
    flex-wrap: wrap;
    align-items: center; /* DİKEY ORTALAMA */
    margin-bottom: 30px;
}

.servicesImageWrapper {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #f0f0f0;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
}

.servicesImage {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.servicesText {
    flex: 1;
}

@media (max-width: 767px) {
    .servicesRow {
        flex-direction: column;
        text-align: center;
    }

    .servicesImageWrapper {
        margin: 0 0 15px 0;
    }

    .servicesText {
        text-align: center;
    }
}

.iletForm input[type=text]  {
    width:100%; padding:10px; border:#efefef 1px solid; border-radius:5px;
    margin-bottom:15px;
}
.iletForm input[type=submit]  {
    padding:10px; background:#000; color:#fff; border-radius:5px; border:none;
}
.iletForm textarea  {
    width:100%; padding:10px; border:#efefef 1px solid; border-radius:5px;
    margin-bottom:15px;
}

.workingStyle .ws {
    background:#efefef;
    color:#000;
    height:275px;
    display:flex;
    flex-direction:column;
    justify-content: center;
    padding:0 40px;
    position: relative;
    font-size:13px;
    font-family: 'Reddit Sans', sans-serif;
}

.workingStyle .ws img {
    position: absolute;
    top: 25px;
    right: 25px;
    width: auto;
    height: auto;
    max-width: 50px; /* opsiyonel, boyut kontrolü için */
}
.workingStyle .ws b {
    font-family:'Epunda Slab', sans-serif;
    font-size:20px;
    color:#e51607;
}

.workingStyle .ws:first-child{
    border-top-left-radius:20px;
}
.workingStyle .ws:last-child{
    border-bottom-right-radius:20px;
}

.workingStyle .ws:nth-child(2n) {
    background:#f5f5f5;
}

.wsTitle    {
    padding:50px 25px 30px 25px;
    text-align:center;
}
.wsTitle h4     {
    font-family:'Epunda Slab', sans-serif;
    font-size:32px;
    color:#e51607;
    font-weight:600;
}

.ServiceList .serviceElement{
    margin-bottom:30px;
    position: relative;
    cursor:pointer;
}
.ServiceList .serviceElement a {
    display: block;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}
.ServiceList .serviceElement img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 0;
}

.ServiceList .serviceElement b {
    position: absolute;
    bottom: 30px;
    left: 30px;
    color: #fff;
    font-family:'Epunda Slab', sans-serif;
    font-size:25px;
    z-index: 2;
}

.ServiceList .serviceElement a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    z-index: 1;
    pointer-events: none;
}

.serviceContent {
    font-size:13px;
    font-family: 'Reddit Sans', sans-serif;
    line-height:20px;
    margin-bottom:30px;
}
.serviceContent h1 {
    font-family:'Epunda Slab', sans-serif;
    font-size:35px;
}
.serviceContent ul {
    margin:20px 0;
}
.serviceContent ul li {
    list-style-type:circle;
}

.serviceImageRadius {
    border-radius:20px;
    margin-bottom:30px;
}

.otherServices ul, .otherServices ul li     {
    margin:0; padding:0;
    list-style-type:none;
}

.otherServices ul li a {
    width:100%;
    padding:10px; border-radius:6px;
    background:#efefef;
    box-sizing: border-box;
    display:block;
    color:#000;
    text-decoration:none;
    font-family:'Epunda Slab', sans-serif;
    font-size:13px;
    cursor:pointer;
    margin-bottom:5px;
}
.otherServices ul li a:hover {
    background:#e7e7e7;
    text-decoration:none;
}