
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Cocogoose-Pro-Regular-trial.ttf', sans-serif;
  background-color: #fff;
  color: #1a1a1a;
  line-height: 1.7;
}

.divider-image {
  width: 100%;
  height: 100vh;
  background-image: url('/image/hero.webp');
  background-size: cover;
  background-position: center;
  margin: 60px 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Safari için özel çözüm */
@supports (-webkit-touch-callout: none) {
  .divider-image {
    background-attachment: scroll;
  }
  .divider-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/image/hero.webp');
    background-size: cover;
    background-position: center;
    transform: translateZ(0);
    will-change: transform;
    z-index: -1;
  }
}

/* Diğer tarayıcılar için normal parallax */
@supports not (-webkit-touch-callout: none) {
  .divider-image {
    background-attachment: fixed;
  }
}

.divider-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.divider-image h3 {
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: 28px;
  font-family: 'Playfair Display', serif;
  text-align: center;
  animation: slideInLeft 1.5s ease forwards;
}

header {
  background: #fff;
  opacity: 0.8;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 999;
}

.logo {
  display: inline-block;
  width: 220px; /* Logo genişliği */
  height: 70px; /* Logo yüksekliği */
  background: url('/image/logo.png') center/cover no-repeat;
  text-indent: -9999px; /* Metni ekran dışına taşı */
  overflow: hidden; /* Taşan metni gizle */
}

.logo a {
  display: block;
  width: 100%;
  height: 100%;
}
nav {
  display: flex;
  gap: 30px;
}

nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.2s;
}

nav a:hover {
  color: #ff9800;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background-color: #333;
  transition: all 0.3s ease;
}

/* Mobil Menü */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: #fff;
  position: absolute;
  top: 70px;
  right: 30px;
  width: 200px;
  border: 1px solid #eee;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  border-radius: 6px;
  overflow: hidden;
}

.mobile-menu a {
  padding: 15px;
  border-bottom: 1px solid #f0f0f0;
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.mobile-menu a:hover {
  background: #f7f7f7;
}


@media(max-width: 768px) {
  nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.about-section {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.about-text {
  flex: 1;
  animation: slideInLeft 1.5s ease forwards;
  opacity: 0;
}

.about-text h2 {
  font-family: 'Cocogoose-Pro-Regular-trial.ttf', serif;
  font-size: 36px;
  margin-bottom: 20px;
}

.about-text p {
  color: #444;
  font-size: 17px;
}

.about-image {
  flex: 1;
  animation: slideInRight 1.5s ease forwards;
  opacity: 0;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.metrics {
  max-width: 1200px;
  margin: 80px auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.metric-card {
  flex: 1 1 30%;
  background: #f9f9f9;
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: 0.3s;
}

.metric-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
}

.metric-icon {
  font-size: 40px;
  margin-bottom: 15px;
  color: #f59e0b; /* amber-500 */
}

.metric-value {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 5px;
  color: #111;
}

.metric-label {
  font-size: 16px;
  color: #555;
}

@keyframes slideInLeft {
  0% {
    transform: translateX(-80px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInRight {
  0% {
    transform: translateX(80px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

footer {
  background-color: #111;
  color: #ccc;
  text-align: center;
  padding: 30px 0;
  font-size: 14px;
}

.social-icons {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-icons a {
  color: #444;
  font-size: 24px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #000;
}

.whatsapp-fixed {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  padding: 14px 16px;
  border-radius: 50%;
  font-size: 24px;
  z-index: 999;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease;
}

.whatsapp-fixed:hover {
  background-color: #1ebf57;
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  color: #333;
}

.contact-box {
  flex: 1 1 300px;
  background-color: #f9f9f9;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.contact-box h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #000;
}

.contact-box p, .contact-box a {
  color: #555;
  line-height: 1.6;
  text-decoration: none;
}
.contact {
  text-align: center;
}
.contact h2 {
  font-size: 32px;
  font-family: 'Cocogoose-Pro-Regular-trial.ttf', serif;
  margin-bottom: 20px;
}
.contact p {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
  color: #444;
}


.map {
  margin-top: 50px;
  width: 100%;
  max-width: 800px;
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
.about-section {
flex-direction: column;
text-align: center;
}

.about-text {
padding: 0 10px;
}

.about-img img {
width: 90%;
margin: 0 auto;
}
}

.whatsapp-fixed {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  padding: 14px 16px;
  border-radius: 50%;
  font-size: 24px;
  z-index: 999;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease;
}

.whatsapp-fixed:hover {
  background-color: #1ebf57;
}
.whatsapp-floating {
position: fixed;
bottom: 20px;
right: 20px;
z-index: 9999;
}

.whatsapp-btn {
background-color: #25D366;
color: white;
padding: 12px 14px;
border-radius: 50%;
font-size: 24px;
text-align: center;
cursor: pointer;
box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.whatsapp-options {
display: none;
position: absolute;
bottom: 60px;
right: 0;
background: white;
border: 1px solid #ccc;
border-radius: 8px;
overflow: hidden;
}

.whatsapp-options a {
display: block;
padding: 10px 15px;
color: #333;
text-decoration: none;
border-bottom: 1px solid #eee;
}

.whatsapp-options a:hover {
background-color: #f0f0f0;
}




.contact-row {
  display: flex;
  margin-bottom: 10px; /* Satırlar arası boşluk */
}

.contact-name {
  width: 150px; /* İsimler için sabit genişlik */
  font-weight: 500; /* İsimleri biraz kalın yapalım */
}

.contact-number {
  flex: 1; /* Kalan alanı kaplasın */
}

@media (max-width: 768px) {
  .contact-row {
    flex-direction: column; /* Dikey hizalama */
    gap: 5px; /* İsim ve numara arası boşluk */
  }
  
  .contact-name {
    width: 100%; /* Tam genişlik */
  }
}


.language-selector {
  position: relative;
  display: flex;
  align-items: center; /* DİKEY ORTALAMA */
  margin-left: 20px;
  }
  
  .lang-icon {
  font-size: 18px;
  padding: 6px 10px;
  background: transparent;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 25px;
  }
  .lang-dropdown {
  display: none;
  position: absolute;
  right: 0;
  top: 40px;
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  z-index: 1000;
  min-width: 140px;
  }
  
  .lang-dropdown div {
  padding: 10px;
  cursor: pointer;
  border-bottom: 1px solid #eee;
  }
  
  .lang-dropdown div:last-child {
  border-bottom: none;
  }
  
  .lang-dropdown div:hover {
  background-color: #f5f5f5;
  }
  
  .mobile-language {
  margin-top: 10px;
  margin-left: 15px;
  align-items: flex-start;
  }
  .mobile-language .lang-dropdown {
  top: 35px;
  left: 0;
  }


  /* Yeni eklenen stiller */
.mobile-header-right {
  display: none;
  align-items: center;
  gap: 15px;
  }
  
  @media(max-width: 768px) {
  .mobile-header-right {
      display: flex;
  }
  
  /* Mobildeki dil seçiciyi düzenle */
  .mobile-language .lang-icon {
      font-size: 23px;
      padding: 6px 10px;
      background: transparent;
      border-radius: 6px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 25px;
  }
  
  .mobile-language .lang-dropdown {
    display: none;
      position: absolute;
      left: 0;
      top: 100%;
      transform: translateX(-50%); /* Sola doğru hizala */
      background-color: white;
      border: 1px solid #ccc;
      border-radius: 6px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      z-index: 1000;
      min-width: 140px;
      margin-top: 5px;
  }
  
  /* Mobil menüdeki dil seçiciyi gizle */
  .mobile-menu .language-selector {
      display: none;
  }
  }
  
  
  