:root {
  --lg-pink: #a50034;
  --lg-dark: #000000;
  --lg-light: #f4f4f4f1;
  --text: #222;
}

body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #e6e6e6;
  color: var(--text);
  padding-top: 160px;
}

/* ========== ANİMASYONLU SABİT HEADER ========== */
#mainHeader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #e6e6e6;
  border-bottom: 5px solid var(--lg-pink);
  padding: 20px 20px;
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
}

#mainHeader.shrink {
  padding: 8px 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

#mainHeader.shrink .logo {
  width: 55px;
  transition: width 0.4s ease;
}

#mainHeader.shrink .brand-text {
  font-size: 1.2em;
  transition: font-size 0.4s ease;
}

#mainHeader.shrink .main-title {
  font-size: 0;
  opacity: 0;
  visibility: hidden;
  margin: 0;
  padding: 0;
  transition: all 0.3s ease;
}

#mainHeader.shrink .logo-container {
  gap: 15px;
}

.main-title {
  margin: 5px 0 0;
  font-size: 1em;
  color: var(--lg-pink);
  font-weight: 400;
  transition: all 0.4s ease;
  opacity: 1;
  visibility: visible;
}

.logo {
  width: 100px;
  height: auto;
  transition: width 0.4s ease;
}

.brand-text {
  margin: 0;
  font-size: 2em;
  color: var(--lg-pink);
  font-weight: 600;
  transition: font-size 0.4s ease;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
}

.header-text {
  text-align: left;
}

/* Dil seçici - desktop */
.language-switcher {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 40px;
  z-index: 200;
  background: white;
  border-radius: 30px;
  padding: 5px 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  border: 1px solid var(--lg-pink);
  display: flex;
  gap: 5px;
}

.lang-btn {
  background: none;
  border: none;
  font-size: 0.85rem;
  font-weight: bold;
  cursor: pointer;
  padding: 6px 14px;
  border-radius: 25px;
  transition: all 0.2s ease;
  color: #333;
  font-family: inherit;
}

.lang-btn.active {
  background-color: var(--lg-pink);
  color: white;
}

.lang-btn:not(.active):hover {
  background-color: #f0f0f0;
  color: var(--lg-pink);
}

#mainHeader.shrink .lang-btn {
  padding: 4px 10px;
  font-size: 0.75rem;
}

#mainHeader.shrink .language-switcher {
  padding: 3px 8px;
  right: 35px;
}

/* SLIDER */
.slider {
  border-radius: 40px;
  margin: 0 2% 4% 2%;
  position: relative;
  overflow: hidden;
  background: transparent !important;
  height: 600px;
}

.slides {
  display: flex;
  height: 100%;
  transition: transform 0.4s ease;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: pan-y pinch-zoom;
  width: 100%;
  will-change: transform;
}

.slides:active {
  cursor: grabbing;
}

.slide {
  min-width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.slider-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
}

.slider-controls span {
  font-size: 30px;
  color: rgb(255, 255, 255);
  cursor: pointer;
  background: var(--lg-pink);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
  pointer-events: auto;
  margin: 0 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.slider-controls span:hover {
  background: rgba(165, 0, 52, 0.8);
  transform: scale(1.1);
}

.dots {
  text-align: center;
  position: absolute;
  bottom: 15px;
  width: 100%;
  z-index: 10;
}

.dot {
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background: #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot:hover {
  background: #fff;
}

.dot.active {
  background: var(--lg-pink);
}

.content {
  max-width: 1000px;
  margin: 0 auto 4% auto;
  padding: 40px 20px;
  text-align: center;
}

.content h2 {
  color: var(--lg-pink);
  margin-bottom: 15px;
}

.about p {
  font-size: 1.1em;
  margin-bottom: 5%;
  font-weight: 500;
}

.all-services-box {
  background-color: #a50034;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 100px;
  flex-wrap: wrap;
  margin-top: 30px;
  align-items: stretch;
  padding: 50px 20px;
}

.services-boxs {
  width: 15%;
  padding: 70px 10px;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  background-color: var(--lg-light);
  transition: 0.3s ease;
  min-width: 250px;
}

.services-boxs:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.279);
}

.services-boxs-img {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--lg-pink);
  background-color: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

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

.bilgi {
  color: var(--lg-pink);
  text-align: center;
  margin-bottom: 20px;
  margin-top: 4%;
}

.info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 2% auto 4% auto;
  max-width: 1200px;
  padding: 0 20px;
}

.info-card {
  background: #f0f0f0;
  border-radius: 12px;
  padding: 25px 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-align: center;
}

.info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.279);
}

.info-card h2 {
  margin-bottom: 20px;
  margin-top: 5px;
  color: var(--lg-pink);
  font-size: 1.5em;
}

.info-card a {
  color: var(--lg-pink);
  font-weight: bold;
  text-decoration: none;
}

.info-card a:hover {
  text-decoration: underline;
}

.map {
  color: var(--lg-pink);
  display: grid;
  place-items: center;
  text-align: center;
  margin-bottom: 4%;
}

.map iframe {
  width: 80%;
  height: 450px;
  border: none;
  border-radius: 10px;
}

footer {
  background-color: var(--lg-dark);
  color: white;
  text-align: center;
  padding: 15px;
  font-size: 0.9em;
}

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 35px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  width: 65px;
  height: 65px;
}

.whatsapp-float i {
  color: white;
  font-size: 40px;
}

.whatsapp-float:hover {
  background-color: #128C7E;
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.whatsapp-tooltip {
  position: absolute;
  right: 75px;
  background-color: #333;
  color: white;
  padding: 8px 15px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
  box-shadow: 0 5px 10px rgba(0,0,0,0.2);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  right: 85px;
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -8px;
  transform: translateY(-50%);
  border-width: 6px 0 6px 8px;
  border-style: solid;
  border-color: transparent transparent transparent #333;
}

/* ========== MOBİL DÜZENLEMELER - DÜZELTİLDİ ========== */
@media (max-width: 768px) {
  body {
    padding-top: 110px;
  }
  
  .language-switcher {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
    left: auto;
    z-index: 200;
    background: white;
    border-radius: 25px;
    padding: 4px 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    border: 1px solid var(--lg-pink);
    display: flex;
    gap: 4px;
  }
  
  .lang-btn {
    padding: 4px 10px;
    font-size: 0.7rem;
  }
  
  #mainHeader.shrink .language-switcher {
    padding: 3px 6px;
    right: 8px;
  }
  
  #mainHeader.shrink .lang-btn {
    padding: 3px 7px;
    font-size: 0.65rem;
  }
  
  .logo-container {
    margin-right: 70px;
    gap: 12px;
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  
  .logo {
    width: 50px;
  }
  
  .brand-text {
    font-size: 1.1em;
  }
  
  .main-title {
    font-size: 0.6em;
    max-width: 160px;
    line-height: 1.3;
  }
  
  #mainHeader.shrink .logo {
    width: 38px;
  }
  
  #mainHeader.shrink .brand-text {
    font-size: 0.85em;
  }
  
  .slider {
    border-radius: 0px;
    margin: 0 0 4% 0;
    height: auto;
    min-height: 250px;
  }
  
  .slide img {
    width: 100%;
    height: auto;
    display: block;
  }

  .slider-controls {
    display: none;
  }
  
  .dots {
    bottom: 10px;
  }
  
  .dot {
    width: 8px;
    height: 8px;
    margin: 0 4px;
  }
  
  .info {
    grid-template-columns: 1fr;
    padding: 0 15px;
  }
  
  .map iframe {
    width: 90%;
    height: 350px;
  }
  
  .all-services-box {
    padding: 60px 20px;
    gap: 30px;
  }
  
  .services-boxs {
    padding: 50px 10px;
  }
  
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
  
  .whatsapp-float i {
    font-size: 28px;
  }
  
  .whatsapp-tooltip {
    display: none;
  }
}

@media (max-width: 480px) {
  body {
    padding-top: 95px;
  }
  
  .language-switcher {
    right: 5px;
    padding: 3px 5px;
  }
  
  .lang-btn {
    padding: 3px 7px;
    font-size: 0.6rem;
  }
  
  .logo-container {
    margin-right: 55px;
    gap: 8px;
  }
  
  .logo {
    width: 40px;
  }
  
  .brand-text {
    font-size: 0.9em;
  }
  
  .main-title {
    font-size: 0.5em;
    max-width: 130px;
  }
  
  .slider {
    height: 200px;
  }
  
  .map iframe {
    height: 250px;
  }
  
  .services-boxs-img {
    width: 90px;
    height: 90px;
  }
}