@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 {
  position: fixed;
  top: 0;
  left: 0;
  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:35px;
}

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

.header .menu a {
    text-decoration: none;
    color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 400;
}

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

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

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

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

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


/* 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:35px;
}

.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: flex-end;         /* içeriği dikeyde alta hizalar */
    justify-content: center;       /* içeriği yatayda ortalar */
    padding-bottom: 75px;          /* alttan boşluk bırakır */
    color: #000;
    font: 700 20px 'Outfit', 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;
}