/* Kartlar için hover efektleri */
.uk-card-hover {
  transition: all 0.3s ease;
  cursor: pointer;
}

.uk-card-hover:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* İkon containerları için özel stil */
.uk-card-media-top {
  background: rgba(121, 153, 168, 0.1);
  padding: 30px;
  transition: all 0.3s ease;
}

.uk-card-hover:hover .uk-card-media-top {
  background: rgba(121, 153, 168, 0.2);
}

/* Başlıklar için stil */
.uk-card-body h4 {
  color: #f1f2f2;
  font-weight: 600;
  transition: all 0.3s ease;
}

.uk-card-hover:hover .uk-card-body h4 {
  color: #7999a8;
}

/* İstatistik rakamları için stil */
.uk-text-primary {
  font-size: 3.5rem;
  font-weight: 700;
  color: #7999a8 !important;
  line-height: 1;
}

/* Bayilik ve servis kartları için gradient */
.uk-background-primary {
  background: linear-gradient(45deg, #7999a8, #6b8a98) !important;
}

.uk-background-secondary {
  background: linear-gradient(45deg, #333333, #666666) !important;
}

/* Ürün kartları için özel stiller */
.uk-section-muted .uk-card {
  border: 1px solid rgba(241, 242, 242, 0.1);
  transition: all 0.3s ease;
}

.uk-section-muted .uk-card:hover {
  border-color: #7999a8;
}

.uk-section-muted .uk-card-media-top {
  overflow: hidden;
  background: #fff;
  padding: 0;
}

.uk-section-muted .uk-card-media-top img {
  transition: transform 0.5s ease;
}

.uk-section-muted .uk-card:hover .uk-card-media-top img {
  transform: scale(1.1);
}

/* Responsive düzenlemeler */
@media (max-width: 960px) {
  .uk-text-primary {
    font-size: 2.5rem;
  }

  .uk-card-media-top {
    padding: 20px;
  }
}

/* Özel renkler */
.hilti-primary {
  color: #7999a8;
}

.hilti-secondary {
  color: #f1f2f2;
}

/* Animasyonlar */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.5s ease forwards;
}

/* Neden Bizi Tercih Etmelisiniz bölümü için stiller */
.why-choose-content {
  padding-right: 50px;
}

.highlight-text {
  color: #7999a8;
  position: relative;
  display: inline-block;
}

.highlight-text::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #7999a8;
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.stat-box {
  padding: 25px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(121, 153, 168, 0.15);
}

.stat-icon {
  width: 60px;
  height: 60px;
  background: rgba(121, 153, 168, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
}

.stat-icon i {
  font-size: 24px;
  color: #7999a8;
}

.stat-content h1 {
  font-size: 2.5rem;
  margin: 0;
  line-height: 1;
}

.stat-content p {
  margin: 5px 0 0;
  color: #666;
  font-weight: 500;
}

.image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
}

.main-image {
  max-width: 90%;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.experience-badge {
  position: relative;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: linear-gradient(45deg, #7999a8, #6b8a98);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 10px 20px rgba(121, 153, 168, 0.3);
  z-index: 3;
  margin: 40px auto 0;
}

.experience-badge .years {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}

.experience-badge .text {
  font-size: 1rem;
  text-align: center;
  margin-top: 5px;
}

/* Sayaç animasyonu için */
@property --num {
  syntax: "<integer>";
  initial-value: 0;
  inherits: false;
}

.counter {
  animation: counter 2s forwards;
  counter-reset: num var(--num);
}

.counter::after {
  content: "%";
}

@keyframes counter {
  from {
    --num: 0;
  }
  to {
    --num: attr(data-count);
  }
}

/* Responsive düzenlemeler */
@media (max-width: 960px) {
  .stats-container {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .why-choose-content {
    padding-right: 0;
    margin-bottom: 50px;
  }

  .experience-badge {
    width: 120px;
    height: 120px;
    margin: 30px auto;
    position: relative;
    right: auto;
  }

  .experience-badge .years {
    font-size: 2.5rem;
  }

  .feature-box {
    padding: 20px;
  }

  .feature-content h3 {
    font-size: 1.1rem;
  }

  .feature-content p {
    font-size: 0.9rem;
  }

  .image-container {
    flex-direction: column;
  }

  .features-floating {
    display: none;
  }
}

/* Feature box stilleri */
.feature-box {
  padding: 25px;
  border-radius: 15px;
  display: flex;
  align-items: flex-start;
  transition: all 0.3s ease;
  background: #1e1e1e;
  border: 1px solid rgba(241, 242, 242, 0.1);
}

.feature-box:hover {
  transform: translateY(-5px);
  border-color: #7999a8;
  box-shadow: 0 10px 30px rgba(121, 153, 168, 0.15);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: rgba(121, 153, 168, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  transition: all 0.3s ease;
}

.feature-box:hover .feature-icon {
  background: #7999a8;
}

.feature-icon i {
  font-size: 20px;
  color: #7999a8;
  transition: all 0.3s ease;
}

.feature-box:hover .feature-icon i {
  color: #fff;
}

.feature-content h3 {
  font-size: 1.2rem;
  margin: 0 0 10px 0;
  color: #f1f2f2;
  font-weight: 600;
}

.feature-content p {
  margin: 0;
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Sağ taraf için yeni stiller */
.image-wrapper {
  position: relative;
  z-index: 1;
}

.features-floating {
  position: absolute;
  right: -50px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.feature-item {
  background: white;
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(121, 153, 168, 0.1);
}

.feature-item:hover {
  transform: translateX(-10px);
  border-color: #7999a8;
  box-shadow: 0 10px 30px rgba(121, 153, 168, 0.15);
}

.feature-icon {
  width: 45px;
  height: 45px;
  min-width: 45px;
  background: rgba(121, 153, 168, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.feature-icon i {
  font-size: 18px;
  color: #7999a8;
}

.feature-text {
  flex: 1;
}

.feature-text h4 {
  font-size: 1rem;
  margin: 0 0 5px 0;
  color: #f1f2f2;
  font-weight: 600;
}

.feature-text p {
  font-size: 0.85rem;
  margin: 0;
  color: #666;
}

/* Responsive düzenlemeler */
@media (max-width: 960px) {
  .features-floating {
    display: none;
  }
}

/* Masaüstü için grid düzenlemesi */
@media (min-width: 960px) {
  .why-choose-content {
    padding-right: 40px;
  }

  .features-floating {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .feature-item {
    width: 100%;
    margin-bottom: 20px;
    transform: none !important; /* Hover efektini kaldır */
  }

  .feature-item:hover {
    transform: none !important;
  }

  .experience-badge {
    position: relative;
    margin: 0;
    right: auto;
  }
}

/* Daha büyük ekranlar için ek düzenleme */
@media (min-width: 1200px) {
  .why-choose-content {
    padding-right: 60px;
  }

  .features-floating {
    padding-left: 30px;
    padding-right: 30px;
  }
}

/* Profesyonel Çözüm Ortağınız kartları için özel stiller */
.solution-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  height: 400px;
  display: flex;
  align-items: flex-end;
  transition: all 0.5s ease;
  cursor: pointer;
}

.solution-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.4;
  transition: all 0.8s ease;
}

.solution-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 40px 30px;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.7) 50%,
    transparent 100%
  );
  transform: translateY(0);
  transition: all 0.5s ease;
}

.solution-tag {
  display: inline-block;
  padding: 6px 12px;
  background: #7999a8;
  color: #fff;
  font-size: 0.85rem;
  border-radius: 20px;
  margin-bottom: 15px;
  opacity: 1;
  transform: translateY(0);
  transition: all 0.5s ease;
}

.solution-content h4 {
  font-size: 1.5rem;
  margin: 0 0 15px 0;
  color: #fff;
  font-weight: 600;
  transition: all 0.3s ease;
}

.solution-content p {
  font-size: 1rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  opacity: 1;
  transform: translateY(0);
  transition: all 0.5s ease;
}

/* Hover efektleri */
.solution-card:hover .solution-bg {
  opacity: 0.9;
  transform: scale(1.1);
}

.solution-card:hover .solution-content {
  transform: translateY(100%);
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(0, 0, 0, 0.8) 70%,
    rgba(0, 0, 0, 0.6) 100%
  );
}

.solution-card:hover .solution-tag {
  opacity: 0;
  transform: translateY(20px);
}

.solution-card:hover .solution-content p {
  opacity: 0;
  transform: translateY(20px);
}

.solution-card:hover .solution-content h4 {
  opacity: 0;
  transform: translateY(20px);
}

/* Responsive düzenlemeler */
@media (max-width: 960px) {
  .solution-card {
    height: 350px;
  }

  .solution-content {
    padding: 30px 20px;
  }

  .solution-content h4 {
    font-size: 1.3rem;
  }

  .solution-content p {
    font-size: 0.9rem;
  }
}

/* Slider için özel stiller */
.in-slide-media {
  position: relative;
  padding: 30px;
}

/* Video container stilleri */
.video-container {
  position: relative;
  width: 100%;
  height: 600px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Görsel container stilleri */
.image-container {
  position: relative;
  width: 100%;
  height: 600px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Hover efektleri */
.video-container,
.image-container {
  transition: transform 0.3s ease;
}

.video-container:hover,
.image-container:hover {
  transform: translateY(-10px);
}

/* Responsive düzenlemeler */
@media (max-width: 960px) {
  .video-container,
  .image-container {
    height: 400px;
  }

  .in-slide-media {
    padding: 15px;
  }
}

@media (max-width: 640px) {
  .video-container,
  .image-container {
    height: 300px;
  }
}

/* Video arka plan stilleri */
.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.video-background::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.4) 100%
  );
  z-index: 2;
}

.video-background video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translateX(-50%) translateY(-50%);
  object-fit: cover;
}

/* Slider içerik stilleri */
.in-slide-text {
  position: relative;
  z-index: 3;
  color: #fff;
}

.in-slide-text h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.in-slide-text p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.in-highlight {
  color: #7999a8;
  position: relative;
  display: inline-block;
}

/* İstatistik stilleri */
.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #7999a8;
  line-height: 1;
  margin-top: 5px;
}

.uk-text-small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Responsive düzenlemeler */
@media (max-width: 960px) {
  .in-slide-text h1 {
    font-size: 2.5rem;
  }

  .in-slide-text p {
    font-size: 1rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }
}

/* Slider container düzenlemesi */
.uk-section.uk-padding-remove-vertical.in-slideshow-gradient {
  height: 100vh;
  margin: 0;
  padding: 0;
}

.uk-slideshow-items {
  min-height: 100vh !important;
}

/* Section başlığı için özel stil */
.uk-section.uk-section-primary.uk-preserve-color.in-equity-1 {
  position: relative;
  z-index: 1;
  padding-top: 80px;
  background: #323232;
  overflow: hidden;
}

/* Kart section'u için overlay */
.uk-section.uk-section-primary.uk-preserve-color.in-equity-1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 20% 0%,
    rgba(121, 153, 168, 0.15) 0%,
    rgba(0, 0, 0, 0) 60%
  );
  z-index: 1;
}

/* Mobil için düzenleme */
@media (max-width: 960px) {
  .uk-section.uk-padding-remove-vertical.in-slideshow-gradient {
    height: 800px;
    margin-bottom: -100px;
  }

  .uk-section.uk-padding-remove-vertical.in-slideshow-gradient::after {
    height: 150px;
  }

  .uk-section.uk-section-primary.uk-preserve-color.in-equity-1 {
    padding-top: 100px;
  }
}

/* Slider yüksekliği */
.uk-slideshow-items {
  min-height: 100vh !important;
}

/* Section başlığı için özel stil */
.uk-section.uk-section-primary.uk-preserve-color.in-equity-1 h2 {
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
}

/* Profesyonel Çözüm Ortağınız section arka plan düzenlemesi */
.uk-section.uk-section-primary.uk-preserve-color.in-equity-1 .uk-container {
  position: relative;
  z-index: 3;
}

/* Section içeriğinin z-index'ini ayarla */
.uk-section.uk-section-primary.uk-preserve-color.in-equity-1 .uk-container {
  position: relative;
  z-index: 3;
}

/* Section başlığı için özel stil */
.uk-section.uk-section-primary.uk-preserve-color.in-equity-1 h2 {
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
}

/* Mobil için düzenleme */
@media (max-width: 960px) {
  .uk-section.uk-section-primary.uk-preserve-color.in-equity-1 {
    margin-top: 0;
    padding-top: 60px;
  }
}

/* Neden Bizi Tercih Etmelisiniz section'u için gradient düzenleme */
.uk-section.in-equity-2 {
  position: relative;
  padding-top: 80px;
  background: #1e1e1e;
  overflow: hidden;
}

/* İçerik için kontrast ayarı */
.uk-section.in-equity-2 .why-choose-content h2,
.uk-section.in-equity-2 .why-choose-content p {
  color: #fff;
}

.uk-section.in-equity-2 .feature-box {
  background: linear-gradient(145deg, #1e1e1e, #2a2a2a);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2),
    -5px -5px 15px rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.uk-section.in-equity-2 .feature-content h3 {
  color: #fff;
  font-weight: 600;
  transition: all 0.3s ease;
}

.uk-section.in-equity-2 .feature-content p {
  color: rgba(255, 255, 255, 0.7);
}

.uk-section.in-equity-2 .feature-icon {
  background: rgba(121, 153, 168, 0.1);
  border: 1px solid rgba(121, 153, 168, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.uk-section.in-equity-2 .feature-icon i {
  color: #7999a8;
  transition: all 0.4s ease;
}

.uk-section.in-equity-2 .feature-box:hover {
  transform: translateY(-8px) scale(1.02);
  background: linear-gradient(145deg, #222222, #2d2d2d);
  box-shadow: 8px 8px 20px rgba(0, 0, 0, 0.3),
    -8px -8px 20px rgba(255, 255, 255, 0.07);
  border-color: rgba(121, 153, 168, 0.2);
}

.uk-section.in-equity-2 .feature-box:hover .feature-content h3 {
  transform: translateX(5px);
  color: #7999a8;
}

.uk-section.in-equity-2 .feature-box:hover .feature-icon {
  transform: rotate(8deg) scale(1.1);
  background: rgba(121, 153, 168, 0.15);
  border-color: rgba(121, 153, 168, 0.3);
}

.uk-section.in-equity-2 .feature-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 255, 255, 0.05),
    transparent
  );
  transform: skewX(-25deg);
  transition: all 0.75s ease;
}

.uk-section.in-equity-2 .feature-box:hover::before {
  left: 100%;
}

.uk-section.in-equity-2 .feature-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 15px;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(121, 153, 168, 0.1),
    transparent
  );
  opacity: 0;
  transition: all 0.4s ease;
}

.uk-section.in-equity-2 .feature-box:hover::after {
  opacity: 1;
}

/* Mobilde slider yüksekliğini artıralım ve video görünümünü sadece mobil için düzenleyelim */
@media (max-width: 960px) {
  .uk-section.uk-padding-remove-vertical.in-slideshow-gradient {
    height: 800px;
    margin-bottom: -100px;
  }

  .uk-slideshow-items {
    min-height: 800px !important;
  }

  /* Mobilde video pozisyonunu ayarla */
  .video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
  }

  /* Mobilde metin pozisyonunu ayarla */
  .in-slide-text {
    padding-top: 100px;
  }
}

/* Daha küçük ekranlar için ek düzenleme */
@media (max-width: 640px) {
  .uk-section.uk-padding-remove-vertical.in-slideshow-gradient {
    height: 700px;
  }

  .uk-slideshow-items {
    min-height: 700px !important;
  }
}

/* Neden Bizi Tercih Etmelisiniz bölümü düzenlemesi */
.uk-section.in-equity-2 .why-choose-content {
  padding-right: 0; /* Önceki padding'i kaldır */
  text-align: center; /* Başlığı ortala */
  max-width: 1200px; /* Maksimum genişlik */
  margin: 0 auto; /* Sayfada ortala */
  padding: 0 20px; /* Yanlarda boşluk */
}

/* Başlık ve açıklama için düzenleme */
.uk-section.in-equity-2 .why-choose-content h2,
.uk-section.in-equity-2 .why-choose-content p {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 800px; /* Başlık ve açıklama için maksimum genişlik */
}

/* Kartlar için grid düzenlemesi */
.uk-section.in-equity-2 .stats-container {
  grid-template-columns: repeat(2, 1fr); /* 2 sütunlu grid */
  max-width: 1200px; /* Maksimum genişlik */
  margin: 40px auto 0; /* Üstten boşluk ve ortala */
  gap: 30px; /* Kartlar arası boşluk */
}

/* Mobil düzenleme */
@media (max-width: 960px) {
  .uk-section.in-equity-2 .stats-container {
    grid-template-columns: 1fr; /* Tek sütun */
    gap: 20px;
    padding: 0 15px;
  }

  .uk-section.in-equity-2 .why-choose-content {
    padding: 0 15px;
    margin-bottom: 30px;
  }
}

/* İletişim section stilleri */
.uk-section.uk-section-contact {
  position: relative;
  padding: 80px 0;
  background: rgba(30, 30, 30, 0.95); /* Arka plan rengini koyulaştırdık */
}

/* İçerik katmanı */
.uk-section.uk-section-contact .uk-container {
  position: relative;
  z-index: 1;
}

/* Form container stilleri */
.contact-form-container {
  background: rgba(30, 30, 30, 0.9);
  padding: 40px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 25px;
  display: flex;
  align-items: flex-start;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  border-color: rgba(121, 153, 168, 0.2);
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: rgba(121, 153, 168, 0.1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-icon i {
  font-size: 24px;
  color: #7999a8;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-text h4 {
  color: #fff;
  margin: 0 0 10px 0;
  font-size: 1.1rem;
}

.contact-text p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* İletişim formu */
.contact-form-wrapper {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(10px);
}

.contact-form .uk-input,
.contact-form .uk-textarea {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 8px;
}

.contact-form .uk-input:focus,
.contact-form .uk-textarea:focus {
  background: rgba(255, 255, 255, 0.05);
  border-color: #7999a8;
}

.contact-form .uk-form-label {
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.contact-form .uk-button-primary {
  background: #7999a8;
  border-radius: 8px;
  font-weight: 600;
  text-transform: none;
  font-size: 1.1rem;
  padding: 10px 20px;
}

.contact-form .uk-button-primary:hover {
  background: #8fb4c6;
}

/* Başlık stilleri */
.uk-section-contact h2 {
  color: #fff;
  margin-bottom: 20px;
}

.uk-section-contact .uk-text-lead {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
}

/* Responsive düzenlemeler */
@media (max-width: 960px) {
  .contact-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-form-wrapper {
    padding: 30px;
    margin-top: 40px;
  }
}

/* Neden Bizi Tercih Etmelisiniz kartları için yeni stiller */
.hilti-feature-box {
  background: linear-gradient(145deg, #1e1e1e, #2a2a2a);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2),
    -5px -5px 15px rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  padding: 25px;
  text-align: -webkit-center;
  border-radius: 15px;
  /* display: flex
; */
  align-items: flex-start;
  overflow: hidden;
}

.hilti-feature-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: rgba(121, 153, 168, 0.1);
  border: 1px solid rgba(121, 153, 168, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hilti-feature-icon i {
  font-size: 20px;
  color: #7999a8;
  transition: all 0.4s ease;
}

.hilti-feature-content {
  padding-top: 20px;
  flex: 1;
}

.hilti-feature-content h3 {
  color: #fff;
  font-weight: 600;
  margin: 0 0 10px 0;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.hilti-feature-content p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Hover efektleri */
.hilti-feature-box:hover {
  transform: translateY(-8px) scale(1.02);
  background: linear-gradient(145deg, #222222, #2d2d2d);
  box-shadow: 8px 8px 20px rgba(0, 0, 0, 0.3),
    -8px -8px 20px rgba(255, 255, 255, 0.07);
  border-color: rgba(121, 153, 168, 0.2);
}

.hilti-feature-box:hover .hilti-feature-content h3 {
  transform: translateX(5px);
  color: #7999a8;
}

.hilti-feature-box:hover .hilti-feature-icon {
  transform: rotate(8deg) scale(1.1);
  background: rgba(121, 153, 168, 0.15);
  border-color: rgba(121, 153, 168, 0.3);
}

/* Işık efekti */
.hilti-feature-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 255, 255, 0.05),
    transparent
  );
  transition: all 0.75s ease;
}

.hilti-feature-box:hover::before {
  left: 100%;
}

/* Kenar parlaması */
.hilti-feature-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 15px;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(121, 153, 168, 0.1),
    transparent
  );
  opacity: 0;
  transition: all 0.4s ease;
}

.hilti-feature-box:hover::after {
  opacity: 1;
}

/* Sağ taraftaki kartlar için yeni stiller */
.hilti-floating-feature {
  background: linear-gradient(
    145deg,
    #1a1a1a,
    #1e1e1e
  ); /* Daha koyu antrasit */
  border: 1px solid rgba(255, 255, 255, 0.03);
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3),
    -5px -5px 15px rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  padding: 25px;
  border-radius: 15px;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover efektleri */
.hilti-floating-feature:hover {
  transform: translateX(-15px);
  background: linear-gradient(
    145deg,
    #1e1e1e,
    #222222
  ); /* Hover'da biraz daha koyu */
  box-shadow: 8px 8px 20px rgba(0, 0, 0, 0.4),
    -8px -8px 20px rgba(255, 255, 255, 0.02);
  border-color: rgba(121, 153, 168, 0.15);
}

/* İletişim section başlık düzenlemesi */
.contact-header {
  text-align: center;
  margin-bottom: 60px;
}

.contact-header h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.contact-header p {
  max-width: 600px;
  margin: 0 auto;
}

/* İletişim kartları ve form container düzenlemesi */
.contact-content-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

/* İletişim kartları grid düzenlemesi */
.contact-cards {
  display: grid;
  gap: 25px;
}

/* Responsive düzenlemeler */
@media (max-width: 960px) {
  .contact-content-wrapper {
    flex-direction: column;
  }

  .contact-cards {
    grid-template-columns: 1fr;
  }

  .contact-header h2 {
    font-size: 2rem;
  }
}

/* Animasyonlu İstatistikler Bölümü */
.stats-container-animated {
  background: linear-gradient(145deg, #1a1a1a, #1e1e1e);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
}

/* Dairesel Grafik */
.stat-circle-wrapper {
  text-align: center;
  margin-bottom: 40px;
}

.stat-circle {
  position: relative;
  display: inline-block;
  width: 150px;
  height: 150px;
}

.circular-chart {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.circle-bg {
  fill: none;
  stroke: rgba(121, 153, 168, 0.1);
  stroke-width: 3;
}

.circle {
  fill: none;
  stroke: #7999a8;
  stroke-width: 3;
  stroke-linecap: round;
  animation: progress 2s ease-out forwards;
}

.percentage-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
}

.percentage {
  font-size: 2rem;
  font-weight: 700;
  color: #7999a8;
  line-height: 1;
  margin-bottom: 5px;
}

.stat-label {
  color: #fff;
  font-size: 0.9rem;
  line-height: 1.2;
  margin-top: 5px;
}

/* Progress Bar */
.stat-progress-wrapper {
  margin-bottom: 40px;
}

.stat-title {
  color: #fff;
  margin-bottom: 15px;
  font-size: 1rem;
}

.progress-bar-container {
  background: rgba(121, 153, 168, 0.1);
  height: 40px;
  border-radius: 20px;
  overflow: hidden;
}

.progress-bar {
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #7999a8, #6b8a98);
  border-radius: 20px;
  animation: progressBar 2.5s ease-out forwards;
  display: flex;
  align-items: center;
  justify-content: center;
}

.progress-text {
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
}

/* Sayaç Animasyonu */
.yearly-stats {
  text-align: center;
}

.stat-number-animated {
  font-size: 3rem;
  font-weight: 700;
  color: #7999a8;
  margin-bottom: 10px;
}

.stat-suffix {
  font-size: 2rem;
}

.stat-description {
  color: #fff;
  font-size: 1rem;
}

/* Animasyonlar */
@keyframes progress {
  0% {
    stroke-dasharray: 0, 100;
  }
}

@keyframes progressBar {
  0% {
    width: 0;
  }
  100% {
    width: 85%;
  }
}

/* Sayaç animasyonu için JavaScript */
.counter {
  display: inline-block;
}

/* Responsive */
@media (max-width: 960px) {
  .stats-container-animated {
    padding: 30px;
    margin: 20px;
    border-radius: 15px;
  }

  .stat-circle {
    width: 120px;
    height: 120px;
  }

  .percentage {
    font-size: 1.8rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }

  .progress-bar-container {
    height: 35px;
  }

  .progress-text {
    font-size: 0.85rem;
  }

  .stat-title {
    font-size: 0.9rem;
  }
}

/* Tablet düzenlemeler */
@media (min-width: 641px) and (max-width: 960px) {
  .stats-container-animated {
    max-width: 500px;
    margin: 20px auto;
  }
}

/* Küçük ekranlar için düzenlemeler */
@media (max-width: 640px) {
  .stats-container-animated {
    margin: 15px;
    padding: 20px;
  }

  .stat-circle-wrapper {
    margin-bottom: 30px;
  }

  .stat-progress-wrapper {
    margin-bottom: 30px;
  }
}

/* 3D Küp Stilleri */
.cube-container {
  perspective: 1000px;
  width: 200px;
  height: 200px;
  margin: 50px auto;
  position: relative;
}

.cube {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  animation: rotate 20s infinite linear;
  transition: transform 0.3s ease;
}

/* Hover durumunda sadece büyüme */
.cube:hover {
  transform: scale(1.1);
}

/* Döndürme animasyonu */
@keyframes rotate {
  0% {
    transform: rotateX(0deg) rotateY(0deg);
  }
  100% {
    transform: rotateX(360deg) rotateY(360deg);
  }
}

.cube-face {
  position: absolute;
  width: 200px;
  height: 200px;
  background: linear-gradient(145deg, #1a1a1a, #1e1e1e);
  border: 2px solid rgba(121, 153, 168, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 50px rgba(121, 153, 168, 0.1);
  backdrop-filter: blur(5px);
}

/* Yüz Konumlandırmaları */
.front {
  transform: translateZ(100px);
}
.back {
  transform: translateZ(-100px) rotateY(180deg);
}
.right {
  transform: rotateY(90deg) translateZ(100px);
}
.left {
  transform: rotateY(-90deg) translateZ(100px);
}
.top {
  transform: rotateX(90deg) translateZ(100px);
}
.bottom {
  transform: rotateX(-90deg) translateZ(100px);
}

/* İçerik Stilleri */
.stat-content {
  text-align: center;
  color: #fff;
  padding: 20px;
}

.stat-content i {
  font-size: 2.5rem;
  color: #7999a8;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 10px rgba(121, 153, 168, 0.3));
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #7999a8;
  margin: 10px 0;
  text-shadow: 0 0 10px rgba(121, 153, 168, 0.3);
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
}

/* Hover Efektleri */
.cube-face:hover {
  border-color: rgba(121, 153, 168, 0.6);
  box-shadow: inset 0 0 70px rgba(121, 153, 168, 0.2);
}

.cube-face:hover .stat-content i {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

/* Responsive */
@media (max-width: 960px) {
  .cube-container {
    width: 150px;
    height: 150px;
    margin: 30px auto;
  }

  .cube-face {
    width: 150px;
    height: 150px;
  }

  .front {
    transform: translateZ(75px);
  }
  .back {
    transform: translateZ(-75px) rotateY(180deg);
  }
  .right {
    transform: rotateY(90deg) translateZ(75px);
  }
  .left {
    transform: rotateY(-90deg) translateZ(75px);
  }
  .top {
    transform: rotateX(90deg) translateZ(75px);
  }
  .bottom {
    transform: rotateX(-90deg) translateZ(75px);
  }

  .stat-content i {
    font-size: 2rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }
}

/* Işık Efekti */
.cube-face::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    transparent 0%,
    rgba(121, 153, 168, 0.1) 50%,
    transparent 100%
  );
  pointer-events: none;
}

/* Hakkımızda Section Yeni Stiller */
.about-section {
  background: #323232;
  /* Daha açık antrasit ton */
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Başlık Stili */
.hexagon-title {
  position: relative;
  text-align: center;
  margin-bottom: 80px;
}

.hexagon-title::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  background: rgba(121, 153, 168, 0.1);
  top: -20px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  z-index: 0;
}

.hexagon-title .subtitle {
  color: #7999a8;
  font-size: 1rem;
  letter-spacing: 3px;
  position: relative;
  z-index: 1;
}

.hexagon-title h2 {
  color: #fff;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 20px 0 0;
  position: relative;
  z-index: 1;
}

/* Deneyim Hexagon */
.experience-hexagon {
  position: relative;
  margin-bottom: 50px;
}

.hex-wrapper {
  width: 200px;
  height: 230px;
  margin: 0 auto;
  position: relative;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: linear-gradient(135deg, #7999a8, #6b8a98);
  animation: float 4s ease-in-out infinite;
}

.hex-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
}

.hex-inner .years {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  display: block;
}

.hex-inner .text {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* İstatistik Dalgaları */
.stats-wave {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 60px 0;
}

.wave-stat {
  position: relative;
  padding: 30px;
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 30px;
  clip-path: polygon(0% 0%, 100% 10%, 100% 90%, 0% 100%);
  transition: all 0.3s ease;
}

.wave-stat:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.08);
}

.wave-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  background: rgba(121, 153, 168, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wave-icon i {
  color: #7999a8;
  font-size: 28px;
}

.wave-counter {
  font-size: 2.5rem;
  font-weight: 700;
  color: #7999a8;
  line-height: 1;
  margin-bottom: 10px;
}

.wave-label {
  color: #fff;
  font-size: 1rem;
}

/* Organik Şekilli Özellikler - Yeni Tasarım */
.features-organic {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 60px;
}

.organic-shape {
  width: 250px;
  height: 200px;
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 30px;
  clip-path: path(
    "M 0,60 C 0,0 60,0 120,0 S 240,0 240,60 240,180 120,180 0,180 0,60"
  );
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.organic-shape:hover {
  transform: translateY(-15px) scale(1.03);
  background: rgba(121, 153, 168, 0.05);
  border-color: rgba(121, 153, 168, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3),
    inset 0 0 20px rgba(121, 153, 168, 0.1);
}

.organic-content {
  position: absolute;
  top: 45%;
  left: 45%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  padding: 25px;
}

.organic-content i {
  font-size: 2.2rem;
  color: #7999a8;
  margin-bottom: 20px;
  background: rgba(121, 153, 168, 0.1);
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 20px;
  display: inline-block;
  transition: all 0.3s ease;
}

.organic-shape:hover .organic-content i {
  transform: rotateY(360deg);
  background: rgba(121, 153, 168, 0.2);
  box-shadow: 0 0 20px rgba(121, 153, 168, 0.3);
}

.organic-content h4 {
  color: #fff;
  margin: 0 0 10px;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.organic-content p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Özel efekt - parlama */
.organic-shape::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.05),
    transparent
  );
  transition: 0.5s;
  pointer-events: none;
}

.organic-shape:hover::after {
  left: 100%;
}

/* Responsive düzenlemeler */
@media (max-width: 960px) {
  .features-organic {
    gap: 25px;
  }

  .organic-shape {
    width: 220px;
    height: 180px;
  }

  .organic-content i {
    font-size: 1.8rem;
    width: 50px;
    height: 50px;
    line-height: 50px;
  }

  .organic-content h4 {
    font-size: 1.1rem;
  }

  .organic-content p {
    font-size: 0.9rem;
  }
}

/* Modern Footer Stilleri */
.modern-footer {
  background: #323232;
  position: relative;
  margin-top: 0;
}

/* Dalga Efekti */
.footer-wave {
  display: none;
}

/* Footer İçerik */
.footer-content {
  padding: 40px 0;
  position: relative;
  background: #323232;
}

/* Marka Alanı */
.footer-brand {
  margin-bottom: 30px;
}

.brand-description {
  color: rgba(255, 255, 255, 0.7);
  margin: 20px 0;
  font-size: 1rem;
  line-height: 1.6;
}

/* Sosyal Medya */
.social-links {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7999a8;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #7999a8;
  color: #1e1e1e;
  transform: translateY(-3px);
}

/* Linkler */
.footer-links h4,
.footer-contact h4 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.footer-links h4::after,
.footer-contact h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: #7999a8;
}

.links-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.links-grid a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
}

.links-grid a:hover {
  color: #7999a8;
  transform: translateX(5px);
}

/* İletişim Bilgileri */
.contact-info p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-info i {
  color: #7999a8;
  width: 20px;
}

.contact-info a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: #7999a8;
}

/* Alt Bilgi */
.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.footer-link {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  margin-left: 20px;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #7999a8;
}

/* Responsive */
@media (max-width: 960px) {
  .footer-content {
    padding: 60px 0 30px;
  }

  .footer-brand,
  .footer-links,
  .footer-contact {
    margin-bottom: 40px;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }

  .footer-links h4::after,
  .footer-contact h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .links-grid {
    justify-content: center;
  }

  .contact-info p {
    justify-content: center;
  }

  .footer-bottom {
    text-align: center;
  }

  .uk-text-right\@m {
    text-align: center;
    margin-top: 15px;
  }
}

/* Modern Header Stilleri */
.uk-navbar-container {
  background: #1e1e1e !important;
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(121, 153, 168, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Logo Stilleri */
.uk-navbar-item.uk-logo {
  position: relative;
  padding: 0 25px;
}

.uk-navbar-item.uk-logo::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 30px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(121, 153, 168, 0.3),
    transparent
  );
}

.uk-navbar-item.uk-logo img {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.uk-navbar-item.uk-logo:hover img {
  transform: scale(1.05);
  filter: drop-shadow(0 0 8px rgba(121, 153, 168, 0.4));
}

/* Menü Linkleri */
.uk-navbar-nav {
  margin-left: 30px;
}

.uk-navbar-nav > li {
  margin: 0 5px;
}

.uk-navbar-nav > li > a {
  position: relative;
  font-size: 1rem;
  font-weight: 500;
  color: #f1f2f2 !important;
  text-transform: none;
  padding: 8px 20px;
  border-radius: 30px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: transparent;
}

/* Hover Efekti */
.uk-navbar-nav > li > a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(121, 153, 168, 0.1);
  border-radius: 30px;
  transform: scale(0.7, 0.5);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.uk-navbar-nav > li:hover > a::before {
  transform: scale(1);
  opacity: 1;
}

.uk-navbar-nav > li > a span {
  position: relative;
  z-index: 1;
}

.uk-navbar-nav > li:hover > a {
  color: #7999a8 !important;
  transform: translateY(-2px);
}

/* Aktif Menü */
.uk-navbar-nav > li.uk-active > a {
  color: #7999a8 !important;
  background: rgba(121, 153, 168, 0.1);
}

/* Scroll Durumunda Header */
[data-uk-sticky].uk-active .uk-navbar-container {
  padding: 15px 0;
  background: rgba(121, 153, 168, 0.98) !important;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
}

/* Mobil Menü */
@media (max-width: 960px) {
  .uk-navbar-container {
  }

  .uk-navbar-toggle {
    color: rgba(255, 255, 255, 0.9);
    padding: 8px 15px;
    border-radius: 30px;
    transition: all 0.3s ease;
  }

  .uk-navbar-toggle:hover {
    color: #7999a8;
    background: rgba(121, 153, 168, 0.1);
  }
}

/* Hakkımızda Sayfası Özel Stilleri */
.about-page-section {
  background: #1e1e1e;
  padding: 100px 0;
}

/* İstatistik Kartları */
.about-page-stats {
  margin-bottom: 80px;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 20px;
  max-width: 100%;
}

.about-stat-box {
  text-align: center;
  padding: 30px 20px;
  background: #2a2a2a;
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(121, 153, 168, 0.1);
}

.about-stat-box:hover {
  transform: translateY(-10px);
  background: #323232;
  border-color: rgba(121, 153, 168, 0.2);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.about-stat-icon {
  font-size: 2rem;
  color: #7999a8;
  margin-bottom: 15px;
}

.about-stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #7999a8;
  margin-bottom: 10px;
}

.about-stat-label {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
}

/* İçerik Alanı */
.about-page-content h2 {
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.about-page-content .uk-text-lead {
  color: #7999a8;
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.about-page-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  line-height: 1.8;
}

/* Özellik Kartları */
.about-features-list {
  display: grid;
  gap: 30px;
}

.about-feature-box {
  display: flex;
  gap: 20px;
  padding: 30px;
  background: #2a2a2a;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.about-feature-box:hover {
  transform: translateX(10px);
  background: #323232;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.about-feature-box i {
  color: #7999a8;
  font-size: 2rem;
  margin-top: 5px;
}

.about-feature-box h4 {
  color: #fff;
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.about-feature-box p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
}

/* CEO Alıntısı */
.about-quote blockquote {
  border-left: 3px solid #7999a8;
  padding-left: 30px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
}

.about-quote cite {
  color: #7999a8;
}

/* Responsive */
@media (max-width: 960px) {
  .about-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .about-page-content h2 {
    font-size: 2rem;
  }
}

@media (max-width: 640px) {
  .about-feature-box {
    padding: 20px;
  }
}

/* İletişim Sayfası Özel Stilleri */
.contact-page-section {
  background: #1e1e1e;
  padding: 100px 0;
}

/* İletişim Kartları */
.contact-page-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin: 0 auto;
  max-width: 100%;
}

.contact-page-box {
  background: #2a2a2a;
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(121, 153, 168, 0.1);
}

.contact-page-box:hover {
  transform: translateY(-10px);
  background: #323232;
  border-color: rgba(121, 153, 168, 0.2);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.contact-page-icon {
  width: 70px;
  height: 70px;
  background: rgba(121, 153, 168, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.contact-page-icon i {
  font-size: 28px;
  color: #7999a8;
}

.contact-page-content h4 {
  color: #fff;
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.contact-page-content p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
}

/* Form Stilleri */
.contact-page-form {
  background: #2a2a2a;
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(121, 153, 168, 0.1);
}

.contact-page-form h2 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 10px;
}

.contact-page-label {
  color: #fff;
  display: block;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.contact-page-input,
.contact-page-textarea {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 10px !important;
  color: #fff !important;
  transition: all 0.3s ease;
}

.contact-page-input:focus,
.contact-page-textarea:focus {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: #7999a8 !important;
}

.contact-page-button {
  background: #7999a8 !important;
  color: #1e1e1e !important;
  font-weight: 600;
  padding: 12px 25px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.contact-page-button:hover {
  background: #6b8a98 !important;
  transform: translateY(-2px);
}

/* Harita */
.contact-page-map {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(121, 153, 168, 0.1);
}

/* Responsive */
@media (max-width: 960px) {
  .contact-page-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .contact-page-form {
    padding: 30px;
    margin-bottom: 30px;
  }
}

@media (max-width: 640px) {
  .contact-page-grid {
    grid-template-columns: 1fr;
  }

  .contact-page-box {
    padding: 20px;
  }

  .contact-page-form h2 {
    font-size: 1.5rem;
  }
}

/* Takımlandırma Sayfası Stilleri */
.page-banner {
  background-color: #1e2022;
  background-image: url("../img/blockit/in-liquid-slide-bg-1.png");
  background-size: cover;
  background-position: center;
  padding: 80px 0;
  color: #fff;
}

.page-banner h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #fff;
}

.stats-section {
  background-color: #f8f9fa;
  margin-top: -30px;
  padding: 30px 0;
  position: relative;
  z-index: 1;
}

.stat-box {
  padding: 20px;
}

.stat-box i {
  font-size: 2rem;
  color: #7999a8;
  margin-bottom: 15px;
}

.stat-box h2 {
  font-size: 2.5rem;
  color: #7999a8;
  margin: 10px 0;
}

.stat-box p {
  color: #666;
  margin: 0;
}

.content-section {
  padding: 60px 0;
}

.content-box {
  padding: 30px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.feature-card {
  padding: 25px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card i {
  font-size: 2.5rem;
  color: #7999a8;
  margin-bottom: 15px;
}

.feature-card h4 {
  margin: 15px 0;
  color: #333;
}

.feature-card p {
  color: #666;
  font-size: 0.9rem;
  margin: 0;
}

.contact-form-box {
  padding: 30px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.contact-form-box h3 {
  color: #333;
  margin-bottom: 20px;
}

.uk-button-primary {
  background-color: #7999a8;
}

.uk-button-primary:hover {
  background-color: #6b8a98;
}

@media (max-width: 960px) {
  .page-banner h1 {
    font-size: 2rem;
  }

  .stat-box h2 {
    font-size: 2rem;
  }

  .content-section {
    padding: 40px 0;
  }
}

/* Hizmetlerimiz Sayfası Stilleri */
.hzm-card {
  perspective: 1500px;
  height: 400px;
  background-size: cover;
  background-position: center;
  margin: 30px; /* Kartlar arası boşluk */
}

.hzm-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
  cursor: pointer;
}

.hzm-card:hover .hzm-card-inner {
  transform: rotateY(180deg);
}

.hzm-card-front,
.hzm-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 15px;
  padding: 30px;
  background: rgba(34, 34, 34, 0.9); /* Saydam arka plan */
  border: 1px solid rgba(121, 153, 168, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(5px); /* Bulanık efekt */
}

.hzm-card-back {
  transform: rotateY(180deg);
  background: rgba(42, 42, 42, 0.9); /* Saydam arka plan */
}

.hzm-icon {
  width: 80px;
  height: 80px;
  background: rgba(121, 153, 168, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.hzm-icon i {
  font-size: 2.5rem;
  color: #7999a8;
}

.hzm-card h3 {
  color: #7999a8;
  margin: 15px 0;
  font-size: 1.8rem;
}

.hzm-card p {
  color: rgba(255, 255, 255, 0.8);
  margin: 15px 0;
  line-height: 1.6;
}

.hzm-button {
  display: inline-block;
  padding: 12px 30px;
  background: #7999a8;
  color: #1e1e1e;
  text-decoration: none;
  border-radius: 25px;
  margin-top: 20px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.hzm-button:hover {
  background: #6b8a98;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(121, 153, 168, 0.3);
  text-decoration: none;
  color: #1e1e1e;
}

/* Responsive düzenlemeler */
@media (max-width: 960px) {
  .hzm-card {
    height: 350px;
    margin-bottom: 30px;
  }

  .hzm-card h3 {
    font-size: 1.5rem;
  }

  .hzm-icon {
    width: 60px;
    height: 60px;
  }

  .hzm-icon i {
    font-size: 2rem;
  }
}

/* Hero section overlay stilleri */
.about-hero {
  position: relative;
  z-index: 1;
}

.about-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(121, 153, 168, 0.75); /* #7999a8 with opacity */
  z-index: -1;
}

.about-hero .uk-container {
  position: relative;
  z-index: 2;
}

/* Responsive düzenlemeler */
@media (max-width: 960px) {
  .about-hero {
    padding: 60px 0;
  }
}

/* Navbar container */
.uk-navbar-container .uk-navbar-nav > li {
  margin: 0;
  padding: 0 8px; /* Linkler arası boşluk */
}

/* Link ve span elementleri */
.uk-navbar-container .uk-navbar-nav > li > a {
  position: relative;
  font-size: 1rem;
  font-weight: 500;
  color: #f1f2f2 !important;
  text-transform: none;
  padding: 4px 12px !important; /* Padding'i biraz artırdık */
  border-radius: 6px; /* Border radius'u artırdık */
  transition: all 0.3s ease;
  background: transparent;
  min-height: auto !important; /* UIkit'in varsayılan min-height'ını kaldır */
}

.uk-navbar-container .uk-navbar-nav > li > a span {
  padding: 0;
  margin: 0;
}

/* Hover efekti */
.uk-navbar-container .uk-navbar-nav > li > a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(72, 134, 217, 0.15); /* Mavi renk (rgba(72, 134, 217)) */
  border-radius: 6px; /* Border radius'u artırdık */
  transform: scale(0.85, 0.7); /* Başlangıç boyutunu biraz büyüttük */
  opacity: 0;
  transition: all 0.3s ease;
}

.uk-navbar-container .uk-navbar-nav > li:hover > a::before {
  transform: scale(1);
  opacity: 1;
}

/* Hover durumunda yazı rengi */
.uk-navbar-container .uk-navbar-nav > li:hover > a {
  color: #7999a8 !important; /* Mavi renk */
}

/* Aktif sayfa için hover efektini kalıcı yapma */
.uk-navbar-container .uk-navbar-nav > li.uk-active > a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(72, 134, 217, 0.15) !important;
  border-radius: 6px !important;
  transform: scale(1) !important;
  opacity: 1 !important;
  transition: all 0.3s ease;
}

/* Aktif sayfanın link rengi */
.uk-navbar-container .uk-navbar-nav > li.uk-active > a {
  color: #7999a8 !important;
}

/* Aktif sayfada hover durumunda efekti koruma */
.uk-navbar-container .uk-navbar-nav > li.uk-active:hover > a::before {
  transform: scale(1) !important;
  opacity: 1 !important;
}

/* İletişim bölümü stilleri */
.contact-section {
  position: relative;
  padding: 80px 0;
  background: transparent;
}

.map-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 0;
}

.map-background iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-form-container {
  position: relative;
  z-index: 2;
  background: rgba(30, 30, 30, 0.9);
  padding: 40px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Form elementleri için stil */
.contact-form-wrapper {
  color: #fff;
}

.contact-form-wrapper .uk-form-label {
  color: #fff;
}

.contact-form-wrapper .uk-input,
.contact-form-wrapper .uk-textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
}

.contact-form-wrapper .uk-input:focus,
.contact-form-wrapper .uk-textarea:focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: #7999a8;
}

/* Smooth Scroll Davranışı */
html {
  scroll-behavior: auto; /* smooth yerine auto yapıyoruz çünkü jQuery ile kontrol edeceğiz */
}

/* Scroll için offset düzeltmesi */
.uk-section {
  scroll-margin-top: 80px; /* Header yüksekliğine göre ayarlayın */
}

/* Detayları Gör Butonu Container */
.section-button-container {
  display: flex;
  justify-content: center;
  margin: 50px auto 0;
  width: 100%;
  position: relative;
}

/* Yeni Detayları Gör Butonu Stili */
.details-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 35px;
  background: linear-gradient(45deg, #7999a8, #6b8a98);
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 6px 15px rgba(121, 153, 168, 0.3);
  min-width: 200px;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.details-button span {
  position: relative;
  z-index: 1;
  margin-right: 12px;
  transition: all 0.3s ease;
}

.details-button i {
  position: relative;
  z-index: 1;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.details-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #6b8a98, #7999a8);
  opacity: 0;
  transition: all 0.4s ease;
}

.details-button::after {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #7999a8, #6b8a98);
  border-radius: 50px;
  z-index: -1;
  opacity: 0;
  transition: all 0.4s ease;
}

.details-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(121, 153, 168, 0.4);
  color: #fff;
  text-decoration: none;
  border-color: rgba(255, 255, 255, 0.2);
}

.details-button:hover::before {
  opacity: 1;
}

.details-button:hover::after {
  opacity: 0.15;
}

.details-button:hover span {
  transform: translateX(-3px);
}

.details-button:hover i {
  transform: translateX(3px);
}

/* Responsive düzenlemeler */
@media (max-width: 960px) {
  .details-button {
    padding: 14px 30px;
    font-size: 1rem;
    min-width: 180px;
  }
}

/* Tam ekran hero section stilleri */
.about-hero-fullscreen {
  position: relative;
  height: 100vh;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 1;
}

.about-hero-fullscreen::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(121, 153, 168, 0.75); /* #7999a8 with opacity */

  z-index: -1;
}

.hero-content {
  text-align: left;
  padding: 0 20px;
  max-width: 1200px;
  width: 100%;
  position: relative;
  z-index: 2;
}

.about-hero-fullscreen h1 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: #fff !important;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: fadeInDown 1s ease;
}

.about-hero-fullscreen .uk-text-lead {
  font-size: 1.5rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9) !important;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 1s ease 0.3s;
  animation-fill-mode: both;
}

/* Animasyonlar */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive düzenlemeler */
@media (max-width: 960px) {
  .about-hero-fullscreen h1 {
    font-size: 3rem;
  }

  .about-hero-fullscreen .uk-text-lead {
    font-size: 1.2rem;
    width: 100% !important;
  }
}

@media (max-width: 640px) {
  .about-hero-fullscreen h1 {
    font-size: 2.5rem;
  }

  .about-hero-fullscreen .uk-text-lead {
    font-size: 1.1rem;
  }
}

/* İçerik bölümü için margin ayarı */
.about-page-section {
  margin-top: 0;
  background: #1e1e1e;
  position: relative;
  z-index: 2;
}

/* Hero section stilleri için class ismini değiştirelim */
.page-hero-fullscreen {
  position: relative;
  height: 100vh;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 1;
}

.page-hero-fullscreen::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.7) 100%
  );
  z-index: -1;
}

/* Diğer stiller aynı kalabilir, sadece class isimlerini güncellememiz yeterli */
.page-hero-fullscreen h1 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: #fff !important;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: fadeInDown 1s ease;
}

.page-hero-fullscreen .uk-text-lead {
  font-size: 1.5rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9) !important;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 1s ease 0.3s;
  animation-fill-mode: both;
}

/* Responsive düzenlemeler */
@media (max-width: 960px) {
  .page-hero-fullscreen h1 {
    font-size: 3rem;
  }

  .page-hero-fullscreen .uk-text-lead {
    font-size: 1.2rem;
    width: 100% !important;
  }
}

@media (max-width: 640px) {
  .page-hero-fullscreen h1 {
    font-size: 2.5rem;
  }

  .page-hero-fullscreen .uk-text-lead {
    font-size: 1.1rem;
  }
}

.brand-carousel {
  background: transparent;
  padding: 20px 0;
}

.brand-carousel .item {
  display: flex;
  justify-content: center;
  align-items: center;
}

.brand-carousel .item img {
  max-height: 50px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.brand-carousel .item img:hover {
  filter: grayscale(0%);
}


