
/* !hakkımızda */

.hakkimizda {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8fffe 0%, #e8f8f7 100%);
  min-height: 100vh;
  width: 100%;
}

.bolum-baslik {
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 2rem;
  position: relative;
}

.bolum-baslik::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #00b7b2, #4ecdc4);
  border-radius: 2px;
}

/* Hakkimizda Slider */
.hakkimizda-slider {
  margin-bottom: 60px;
  position: relative;
  width: 100%;
  padding: 0;
}

.slider-container {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  width: 100%;
}

.slider-wrapper {
  display: flex;
  transition: transform 0.5s ease;
}

.hakkimizda-slide {
  min-width: 100%;
  display: none;
}

.hakkimizda-slide.active {
  display: block;
}

.slide-content {
  display: flex;
  align-items: stretch;
  min-height: 600px;
  background: white;
  position: relative;
  overflow: hidden;
}


.slide-text {
  flex: 1;
  padding: 40px;
  background: linear-gradient(135deg, #f8fffe 0%, #e8f8f7 100%);
  position: relative;
  z-index: 1;
}

.slide-text h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
  position: relative;
}

.slide-text h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #00b7b2, #4ecdc4);
  border-radius: 2px;
}

.slide-text p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  text-align: justify;
  margin-bottom: 15px;
}


.slide-image {
  flex: 1;
  position: relative;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.slide-image:hover img {
  filter: grayscale(0%);
}


/* Diğer slide'lar için normal düzen */
.slide-content:not(.first-slide) {
  flex-direction: row;
}

.slide-content:not(.first-slide) .slide-text {
  background: linear-gradient(135deg, #f8fffe 0%, #e8f8f7 100%);
  padding: 40px;
}

.slide-content:not(.first-slide) .slide-text h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
  position: relative;
}

.slide-content:not(.first-slide) .slide-text h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #00b7b2, #4ecdc4);
  border-radius: 2px;
}

.slide-content:not(.first-slide) .slide-text p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  text-align: justify;
  margin-bottom: 15px;
}

.slide-content:not(.first-slide) .slide-image {
  background: white;
}

.slide-content:not(.first-slide) .slide-image img {
  filter: none;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.slide-text h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
  position: relative;
}

.slide-text h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #00b7b2, #4ecdc4);
  border-radius: 2px;
}

.slide-text p {
  font-size: 18px;
  color: #555;
  line-height: 1.8;
  text-align: justify;
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 183, 178, 0.9);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all 0.3s ease;
  z-index: 100;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.slider-nav:hover {
  background: rgba(0, 183, 178, 1);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.prev-slide {
  left: -70px !important;
}

.next-slide {
  right: -70px !important;
}

.slider-indicators {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: #00b7b2;
  transform: scale(1.2);
}

.hakkimizda-aciklama {
  font-size: 18px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 25px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  text-align: justify;
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-left: 5px solid #00b7b2;
}

.hakkimizda-kartlar {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

.hakkimizda-kart {
  background: #ffffff;
  border-radius: 8px;
  padding: 20px 15px;
  flex: 0 0 250px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
  position: relative;
  overflow: hidden;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.hakkimizda-kart::before {
  content: none;
}

.hakkimizda-kart:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-color: #d0d0d0;
}

.hakkimizda-kart i {
  font-size: 24px;
  color: #666666;
  margin-bottom: 10px;
  display: block;
  transition: all 0.3s ease;
}

.hakkimizda-kart:hover i {
  transform: scale(1.02);
  color: #888888;
}

.hakkimizda-kart h4 {
  margin-bottom: 8px;
  color: #333333;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.hakkimizda-kart p {
  color: #666;
  font-size: 13px;
  line-height: 1.4;
  margin: 0 0 8px 0;
  font-weight: 400;
}

/* Kart İçerik Zenginleştirme */
.hakkimizda-kart .card-number {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #666666;
  color: white;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 10px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.hakkimizda-kart .card-highlight {
  background: #f8f8f8;
  padding: 8px;
  border-radius: 4px;
  margin-top: 8px;
  border-left: 2px solid #cccccc;
}

.hakkimizda-kart .card-highlight p {
  font-size: 11px;
  font-style: italic;
  color: #666666;
  margin: 0;
  font-weight: 400;
}

/* Modern Misyon Vizyon Bölümü */
.modern-mission-vision {
  margin-top: 80px;
  padding: 0 20px;
}

.mission-vision-container {
  max-width: 800px;
  margin: 0 auto;
  background: transparent;
  border: 2px solid #00b7b2;
  border-radius: 8px;
  box-shadow: none;
  overflow: visible;
  padding: 60px 50px;
}

.mission-vision-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.content-header {
  margin-bottom: 40px;
}

.company-logo {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: #00b7b2;
  color: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 18px;
  margin-right: 12px;
}

.company-name {
  font-size: 18px;
  font-weight: 600;
  color: #333;
}

.section-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  margin: 0;
}

.title-part1 {
  color: #333;
  display: block;
}

.title-part2 {
  color: #00b7b2;
  display: block;
}

.mission-vision-text {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.mission-section h3,
.vision-section h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

.mission-section p,
.vision-section p {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
  margin: 0;
}

.mission-vision-image {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Responsive Design */
@media (max-width: 768px) {
  .slide-content {
    flex-direction: column;
    min-height: auto;
  }
  
  .mission-vision-container {
    flex-direction: column;
  }
  
  .mission-vision-content {
    padding: 40px 30px;
  }
  
  .section-title {
    font-size: 2.5rem;
  }
  
  .mission-vision-image {
    height: 300px;
  }
}
  
  .slide-content {
    flex-direction: column;
  }
  
  .slide-image {
    padding: 20px;
    min-height: 300px;
  }
  
  .slide-text {
    padding: 20px;
  }
  
  .slide-text h3 {
    font-size: 2rem;
  }
  
  .slide-content.first-slide .slide-text h3 {
    font-size: 2.5rem;
  }
  
  .slider-nav {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  
  .prev-slide {
    left: -70px !important;
  }
  
  .next-slide {
    right: -70px !important;
  }
  
  .bolum-baslik {
    font-size: 2.5rem;
  }
  
  .hakkimizda-kartlar {
    flex-direction: column;
    gap: 20px;
  }
  
  .hakkimizda-kart {
    width: 100%;
    padding: 25px 20px;
  }
}