body {
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
  font-family: "Montserrat", sans-serif;
  color: #112337;
}

a {
  text-decoration: none;
  color: var(--text-color);
  transition: color 0.3s ease;
}

a:hover {
  color: #fff;
}

:root {
  --text-color: #fff;
}


a.WhatsApp1 {
    display: flex;
    font-size: 18px;
    background: #2EB843;
    font-weight: 600;
    width: 51px;
    height: 51px;
    position: fixed;
    bottom: 20px;
    left: 20px;
    border-radius: 50%;
    -webkit-transition: all 0.1s ease-out 0s;
    -moz-transition: all 0.1s ease-out 0s;
    -ms-transition: all 0.1s ease-out 0s;
    -o-transition: all 0.1s ease-out 0s;
    transition: all 0.1s ease-out 0s;
    color: #fff;
    align-items: center;
    justify-content: center;
    animation: whatsapp infinite 2s linear;
    z-index: 9999;
}

@keyframes whatsapp {
    0% {
        box-shadow: 0 0 0 0 #2EB843;
    }
    50% {
        box-shadow: 0 0 0 10px rgba(1, 93, 199, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(1, 93, 199, 0);
    }
}


/* --- HEADER ANA YAPISI --- */
.site-header {
  width: 100%;
  height: 80px;
  position: fixed; /* Sayfa ile kaymayan, sabit header */
  top: 30px;
  left: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  box-sizing: border-box;

  background: transparent;
  /* Yukarı/aşağı kaydırma efekti için geçiş */
}

.site-header.scroll-up {
  background: #192a3d;
  top: 0px;
}

.site-header.scroll-up,
.site-header.hidden {
  background: #192a3d;
  top: 0px;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  background: transparent;
  /* Yukarı/aşağı kaydırma efekti için geçiş */
}

/* --- HEADER BÖLÜMLERİ (SOL, ORTA, SAĞ) --- */
.header-left,
.header-right {
  flex: 1; /* Eşit alan kaplamalarını sağlar */
  display: flex;
  align-items: center;
}

.header-right {
  justify-content: flex-end; /* İçeriği sağa yaslar */
  gap: 20px; /* İkonlar arası boşluk */
}

/* Logo (Absolute ile ortalama) */
.header-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.logo {
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: 2px;
}

.logo img {
  width: auto;
  height: 40px;
}

.logo span {
  font-weight: 400;
  opacity: 0.7;
}

.slogan-yazisi {
  display: block;
  font-size: 12px;
  color: #fff;
  margin-top: 0px;
  letter-spacing: -0px;
  text-align: center;
}

/* --- NAVİGASYON (DESKTOP) --- */
.desktop-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 30px; /* Menü elemanları arası boşluk */
}

.desktop-nav ul li:nth-child(1) {
  display: none;
}

.desktop-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 5px;
}
/* Hover efekti için çizgi */
.desktop-nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--text-color);
  transition: width 0.3s ease;
}
.desktop-nav a:hover::after {
  width: 100%;
}

/* --- SAĞ TARAF İKONLARI --- */
.header-right svg {
  width: 22px;
  height: 22px;
  stroke: var(--text-color);
}

.lang-switcher {
  font-weight: 500;
  font-size: 0.9rem;
  display: flex;
  display: inline-flex;
  align-items: center;
  text-transform: uppercase;
  gap: 6px;
}

.special-icon {
  background-color: var(--accent-color);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  color: var(--header-bg);
}

/* --- MOBİL İÇİN HAMBURGER VE MENÜ --- */
.hamburger-menu {
  display: none; /* Desktop'ta gizli */
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.hamburger-menu span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--text-color);
  margin: 5px 0;
  transition: all 0.3s ease;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-nav.is-active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 80%;
  max-width: 320px;
  height: 100%;
  background-color: var(--header-bg);
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
  padding: 100px 40px;
  box-sizing: border-box;
  transform: translateX(100%);
  transition: transform 0.4s ease-in-out;
}

.mobile-nav.is-active .mobile-nav-content {
  transform: translateX(0);
  background: #000000;
}

.close-menu {
  position: absolute;
  top: 25px;
  right: 25px;
  background: none;
  border: none;
  color: var(--text-color);
  font-size: 2.5rem;
  cursor: pointer;
  z-index: 9;
}

/* Mobil menüdeki linkler */
.mobile-nav-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mobile-nav-content li {
  margin-bottom: 25px;
}
.mobile-nav-content a {
  font-size: 1.2rem;
  font-weight: 500;
  text-transform: uppercase;
}

/* --- RESPONSIVE AYARLARI (MOBİL GÖRÜNÜM) --- */
@media (max-width: 992px) {
  .site-header {
    padding: 0 20px;
  }
  .desktop-nav {
    display: none; /* Desktop menüsünü gizle */
  }
  .hamburger-menu {
    display: block; /* Hamburger butonunu göster */
  }

  /* İkonları gizleyip sadece önemlileri bırakabiliriz */
  .header-right a:not(.special-icon) {
    display: none;
  }
  .header-right .special-icon {
    display: flex; /* 'S' ikonu mobilde de görünsün */
    margin-right: 20px;
  }
  .logo {
    font-size: 1.8rem;
  }
}

/* SLİDER */
.hs-source-items {
  display: none;
}

.hero-slider {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px;
  height: calc(100vh - 20px);
  width: calc(100vw - 34px);
  border-radius: 10px;
}

.hero-slider .hs-background-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slider .hs-bg-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.hero-slider .hs-bg-slide.active {
  opacity: 1;
}

.hero-slider .hs-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 27, 27, 0.762);
  z-index: 2;
  opacity: 55%;
}

.hero-slider .hs-content-wrapper {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  height: 100%;
  margin: 30px auto 0px;
  padding: 0 30px;
}

.hero-slider .hs-text-content-container {
  position: relative;
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}

.hero-slider .hs-text-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0.5s;
}

.hero-slider .hs-text-slide.active {
  position: relative;
  opacity: 1;
  visibility: visible;
}

.hero-slider .hs-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #1f2e35;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 500;
  width: fit-content;
  margin-bottom: 25px;
  font-size: 16px;
}

.hero-slider .hs-badge svg {
  stroke: #f36f45;
}

.hero-slider .hs-main-heading {
  font-size: 45px;
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  margin: 0;
}

.hero-slider .hs-main-heading span {
  display: block;
}

.hero-slider .hs-bottom-content {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 20px;
  opacity: 0;
}

.hero-slider .hs-bottom-content p {
  max-width: 80%;
}

.circle-container-two {
  position: relative;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background-color: var(--white-color);
}

.circle-container-two > svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-slider .hs-text-slide.active .hs-bottom-content {
  animation-name: fadeInAndUp;
  animation-duration: 0.7s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
  animation-delay: var(--delay);
}

.hero-slider .hs-description {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  max-width: 400px;
  margin: 0;
}

@keyframes fadeInAndUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-slider .animate-item {
  opacity: 0;
}

.hero-slider .hs-text-slide.active .animate-item {
  animation-name: fadeInAndUp;
  animation-duration: 0.7s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
  animation-delay: var(--delay);
}

.hero-slider .hs-image-content {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.hero-slider .hs-foreground-slider-wrapper {
  width: 100%;
  max-width: 582px;
  aspect-ratio: 6 / 4;
  border-radius: 40px;
  overflow: hidden;
  border-top: 5px solid rgba(255, 255, 255, 0.3);
  border-bottom: 5px solid rgba(255, 255, 255, 0.3);
  border-left: 5px solid rgba(255, 255, 255, 0.3);
  border-radius: 250px 0 0 250px;
  margin-right: -120px;
  margin-top: 50px;
}

.hero-slider .hs-foreground-slider {
  display: flex;
  height: 100%;
  transition: transform 0.7s cubic-bezier(0.77, 0, 0.175, 1);
}

.hero-slider .hs-fg-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
}

.hero-slider .hs-fg-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slider .hs-slider-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
  margin-right: 20px;
  font-weight: 700;
}

.hero-slider .hs-slider-nav span {
  color: rgba(255, 255, 255, 0.7);
}

.hero-slider .hs-nav-btn {
  background: none;
  border: none;
  color: #00aeff;
  font-size: 2rem;
  cursor: pointer;
  transition: transform 0.2s ease;
  padding: 0 10px;
}

.hero-slider .hs-nav-btn:hover {
  transform: scale(1.2);
}

.hero-slider .hs-explore-button {
  position: relative;
  width: 120px;
  height: 120px;
  flex-shrink: 0;
}

.hero-slider .hs-explore-text {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: rotate 20s linear infinite;
}

.hero-slider .hs-explore-text p {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  letter-spacing: 1px;
  margin: 0;
}

.hero-slider .hs-explore-arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background-color: #f36f45;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1024px) {
  .modal-icerik p{
    display: none;
  }

  .modal-icerik h2 {
    margin-bottom: 30px;
  }

  .modal-icerik .form-control {
    height: 50px;
  }
  .hero-slider .hs-content-wrapper {
    grid-template-columns: 1fr;
    padding: 50px 10px;
    text-align: center;
  }
  .hero-slider .hs-text-content-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
  }
  .hero-slider .hs-text-slide.active {
    align-items: center;
    position: relative;
  }
  .hero-slider .hs-main-heading {
    font-size: 3.5rem;
  }
  .hero-slider .hs-bottom-content {
    flex-direction: column;
    gap: 40px;
  }
  .hero-slider .hs-image-content {
    margin-top: 50px;
    align-items: center;
    grid-row: 2 / 3;
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-slider .hs-main-heading {
    font-size: 27px;
    line-height: 40px;
  }
  .hero-slider .hs-foreground-slider-wrapper {
    max-width: 90vw;
  }
  .hero-slider .hs-slider-nav {
    margin-right: 0;
  }
  .hero-slider .hs-text-content-container {
    min-height: 350px;
  }
}

/* hakkımızda*/

.abouts-section {
  position: relative;
  padding: 80px 0;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.abouts-container {
  display: flex;
  align-items: flex-start; /* Elemanları yukarıdan hizala */
  gap: 30px;
}

/* --- SOL İÇERİK SÜTUNU --- */
.abouts-left-content {
  flex: 3; /* Sol taraf daha geniş */
  display: flex;
  flex-direction: column;
}

/* --- ÜST ETİKET (TAG) --- */
.abouts-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #1d3d4b;
  color: white;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  align-self: flex-start; /* Sadece kendi genişliği kadar yer kaplasın */
}

.abouts-tag svg {
  stroke: white; /* İkon rengi */
}

/* --- BAŞLIK VE AÇIKLAMALAR --- */
.abouts-heading {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 20px 0;
}

.abouts-description {
  font-size: 16px;
  line-height: 1.6;
  color: #56646c;
  margin: 0 0 30px 0;
  max-width: 550px; /* Okunabilirliği artırmak için genişliği sınırla */
}

.abouts-sub-description {
  font-size: 16px;
  line-height: 1.6;
  color: #56646c;
  margin: 20px 0;
}

/* --- ALT FLEX CONTAINER (GEMİ RESMİ VE İSTATİSTİKLER) --- */
.abouts-bottom-flex {
  display: flex;
  gap: 20px;
  align-items: flex-start; /* Elemanları dikeyde yukarı hizala */
}

.abouts-ship-image-wrapper {
  flex: 1;
}

.abouts-ship-image {
  width: 100%;
  border-radius: 8px;
  display: block;
}

/* --- İSTATİSTİK KUTUSU VE BUTON ALANI --- */
.abouts-stats-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.abouts-stats-box {
  width: 250px; /* Sabit genişlik */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  overflow: hidden; /* Köşelerden taşmayı engelle */
}

.abouts-stat-item {
  padding: 20px;
  color: white;
  text-align: left;
  display: flex;
}

.abouts-stat-item svg {
  margin-right: 21px;
}

.abouts-stat-item.abouts-orange-bg {
  background-color: #00aeff;
}

.abouts-stat-item.abouts-dark-bg {
  background-color: #192a3d;
}

.abouts-stat-number {
  display: block;
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
}

.abouts-stat-label {
  font-size: 14px;
  opacity: 0.9;
}

/* --- EYLEM BUTONU (CTA) --- */
.abouts-cta-button {
  background-color: #00aeff;
  color: #fff;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: background-color 0.3s ease, transform 0.3s ease;
  align-self: flex-start;
}

.abouts-cta-button:hover {
  background-color: #e2eaf1;
  color: #0056b3;
  transform: translateY(-2px);
}

/* --- SAĞ RESİM SÜTUNU --- */
.abouts-right-image {
  flex: 2; /* Sağ taraf daha dar */
  align-self: center; /* Resmi dikeyde ortala */
}

.abouts-right-image img {
  width: 100%;
  height: auto;
  max-width: 450px; /* Resmin çok büyümesini engelle */
  display: block;
  margin-left: auto; /* Sağa yasla */
}

/* --- DEKORATİF ELEMANLAR --- */
.abouts-deco-circle {
  position: absolute;
  top: 5%;
  left: 2%;
  width: 20px;
  height: 20px;
  background-color: #f9612f;
  opacity: 0.5;
  border-radius: 50%;
  z-index: -1;
}

.abouts-deco-arrow {
  position: absolute;
  bottom: 5%;
  right: 3%;
  z-index: 1;
}

/* --- RESPONSIVE TASARIM (MOBİL UYUMLULUK) --- */
@media (max-width: 992px) {
  .abouts-container {
    flex-direction: column;
    align-items: center; /* Ortala */
  }

  .abouts-left-content,
  .abouts-right-image {
    flex: none;
    width: 100%;
    text-align: center; /* Mobil için metinleri ortala */
  }

  .abouts-tag,
  .abouts-cta-button {
    align-self: center; /* Buton ve etiketi ortala */
  }

  .abouts-description {
    max-width: 100%; /* Genişlik sınırını kaldır */
  }

  .abouts-bottom-flex {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .abouts-stats-wrapper {
    align-items: center; /* İstatistik kutusunu ve altındaki metni ortala */
    margin-top: 20px;
  }

  .abouts-right-image {
    margin-top: 40px;
    display: none;
  }

  .abouts-right-image img {
    margin: 0 auto; /* Resmi ortala */
  }

  .abouts-deco-arrow {
    display: none; /* Mobilde dekoratif oku gizle */
  }
}

@media (max-width: 480px) {
  .abouts-heading {
    font-size: 32px;
  }
}

/**/

/* İstediğiniz gibi tüm slider bu sınıfın içinde */
.urunler {
  padding: 80px 0;
  background: #fafafa;
}

/* Başlık ve Okların Olduğu Üst Kısım */
.slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.slider-header h2 {
  font-size: 36px;
  color: #1d2d3f;
  margin: 0;
  font-weight: 700;
}

/* Navigasyon Okları */
.slider-nav {
  display: flex;
  gap: 10px;
}

.slider-nav button {
  display: flex;
  width: 54px;
  height: 54px;
  background: #f1f4f8 0% 0% no-repeat padding-box;
  border-radius: 2px;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  margin-left: 10px;
  color: #00aeef;
  border: none;
  position: relative;
}

.slider-nav button:hover {
  background-color: #f0f0f0;
  border-color: #ccc;
}

.slider-nav button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background-color: #f5f5f5;
}

.slider-nav button svg {
  width: 18px;
  height: 18px;
  fill: #1d2d3f;
}

/* --- SAĞA TAŞAN SLIDER ALANI --- */

/* Slider'ın Görünen Penceresi */
.slider-viewport {
  overflow: hidden; /* Dışarı taşan kısmı gizler */
  width: 100%;
}

/* Tüm Kartları Taşıyan İç Konteyner */
.slider-track {
  display: flex;
  padding-left: calc(
    (0vw - var(--container-max-width)) / 2 + var(--container-padding)
  );
  padding-right: var(--container-padding);
  gap: 30px;
  box-sizing: content-box; /* Padding'in genişliğe eklenmesini sağlar */
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.slider-item {
  flex: 0 0
    calc((var(--container-max-width) - var(--container-padding) * 2 - 30px) / 2);
  width: calc(
    (var(--container-max-width) - var(--container-padding) * 2 - 30px) / 2
  );
  cursor: pointer;
  background-color: #ffffff;
  position: relative;
  margin-bottom: 80px;
}

/* Resim Alanı ve Hover Efekti */
.card-image-wrapper {
  position: relative;
  overflow: hidden;
  height: 420px;
  background-color: #e9ecef;
}

.card-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease-out; /* Yakınlaşma efekti */
}

.slider-item:hover .card-image-wrapper img {
  transform: scale(1.05);
}

.card-category {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: #00aeff;
  color: white;
  padding: 5px 15px;
  font-size: 12px;
  font-weight: bold;
  border-radius: 4px;
}

/* Kart Yazı Alanı ve Alt Çizgi Efekti */
.card-content {
  position: absolute;
  bottom: -60px;
  right: 0;
  background-color: #fff;
  width: 80%;
  text-align: left;
  font: normal normal 600 24px / 40px Montserrat;
  letter-spacing: -0.72px;
  color: #112337;
  padding: 40px 100px 40px 76px;
  margin: 0;
  min-height: 100px;
  padding-right: 20px;
  display: flex;
  align-items: center;
}

.card-content svg {
  margin-right: 25px;
  width: 40px;
  height: 40px;
}
.card-content h3 {
  font-size: 23px;
  color: #1d2d3f;
  margin: 0;
  font-weight: 500;
  line-height: 1;
  padding-bottom: 0px;
  transition: transform 0.4s ease-out; /* Yakınlaşma efekti */
}

.slider-item:hover .card-content h3 {
  font-weight: 600;
  transition: transform 0.4s ease-out; /* Yakınlaşma efekti */
}

.card-content::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: #00aeff;
  transition: width 0.4s ease;
}

.slider-item:hover .card-content::after {
  width: 100%;
}

/* Sabit Telefon Butonu */
.fab-phone {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #0e3a6a;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  z-index: 1000;
}

.fab-phone svg {
  width: 28px;
  height: 28px;
  fill: white;
}

/* Mobil ve Küçük Ekran Ayarları */
@media (max-width: 1240px) {
  /* 1200px + padding */
  .slider-track {
    /* Konteyner olmadığında soldan boşluk ver */
    padding-left: var(--container-padding);
  }
}

@media (max-width: 768px) {
  .slider-item {
    flex-basis: 80%; /* Mobil'de tek kart göster */
  }
}

/* CSS Değişkenleri - Bakımı kolaylaştırmak için */
:root {
  --container-max-width: 1320px;
  --container-padding: 20px; /* Konteyner ve slider hizalaması için kritik */
}

/* Ana İçerik Konteyneri (Sayfayı ortalar) */
.urunler .container {
  margin: 0 auto;
  padding: 0 var(--container-padding);
  box-sizing: border-box;
}

/**/

/* --- Ana Bölüm Konteyneri --- */
.partners-section {
  width: 100%;
  padding: 70px 0px;
  box-sizing: border-box;
  overflow: hidden;
  background: #fff;
}

/* --- Her Bir Firma Bloğu --- */
.partner-block {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 80px;
}

/* --- Görsel ve İçerik Alanları --- */
.partner-image {
  height: 30vw;
  max-width: 40vw;
}

.partner-image,
.partner-content {
  flex: 1;
  position: relative;
  min-width: 0; /* Flexbox'ın taşmasını önler */
}

.partner-content {
  max-width: 30vw;
  margin-right: 10vw;
  margin-left: 10vw;
  margin-right: 0;
}

.partner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0px;
}

.partner-image img.logo1 {
  width: 160px;
  height: 160px;
  position: absolute;
  left: 25px;
  bottom: 25px;
  background: #fff;
  border-radius: 50%;
  padding: 5px;
  object-fit: contain;
}

.partner-image img.logo1 {
  width: 160px;
  height: 160px;
  position: absolute;
  right: 25px;
  bottom: 25px;
  background: #fff;
  border-radius: 50%;
  padding: 5px;
  object-fit: contain;
  left: auto;
}

.reverse .partner-image img.logo1 {
  left: 25px;
  bottom: 25px;
  right: auto;
}

/* --- İçerik Stilleri --- */
.partner-title {
  letter-spacing: -1.02px;
  color: #112337;
  margin: 0 0 75px 0;
  margin-top: 0;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 700;
}

.partner-description {
  color: #56646c;
  font-size: 16px;
  margin-bottom: 40px;
}

.partner-description strong {
  color: #0a2540; /* Vurgulanan metin rengi */
}

/* --- Buton Stilleri (CTA) --- */
.partner-cta {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  background-color: #f0f4f8;
  color: #007bff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 5px;
  transition: all 0.3s ease;
  font-size: 14px;
}

.partner-cta .arrow {
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.partner-cta:hover {
  background-color: #e2eaf1;
  color: #0056b3;
}

.partner-cta:hover .arrow {
  transform: translateX(5px);
}

/* --- Ters Sıralama için Yardımcı Sınıf --- */
.partner-block.reverse {
  flex-direction: row-reverse;
}

.partner-block.reverse .partner-content {
  margin-right: 10vw;
  margin-left: 0;
}

/* --- Mobil Uyum (Responsive) --- */
@media (max-width: 768px) {
  .partner-block,
  .partner-block.reverse {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 60px;
  }

  .partner-title {
    font-size: 2rem; /* Mobil için başlık boyutu */
  }

  .partner-description {
    font-size: 1rem; /* Mobil için metin boyutu */
  }
}

.stats-section {
  background-color: #192a3d; /* Orijinal resimdeki koyu mavi arka plan */
  padding: 120px 40px 95px;
  color: #aab7c4; /* Genel metin rengi */
  text-align: center;
}

.stats-container {
  display: flex;
  justify-content: space-around; /* Öğeleri eşit aralıklarla dağıt */
  align-items: center;
  flex-wrap: wrap; /* Küçük ekranlarda alt satıra geçmesini sağlar */
  gap: 40px; /* Öğeler arasına boşluk */
  max-width: 1200px;
  margin: 0 auto; /* Ortalamak için */
}

.stat-item {
  flex: 1; /* Esnek büyüme sağlar */
  min-width: 250px; /* Minimum genişlik */
}

.stat-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px; /* İkon ve sayı arasına boşluk */
}

.stat-header small {
  font-size: 30px;
  font-weight: 300;
}

/* --- SVG İKON STİLLERİ --- */
.stat-icon svg {
  width: 55px;
  height: 55px;
  stroke: #00aeff; /* Canlı mavi renk */
  stroke-width: 1.5;
  fill: none;
}

/* --- SAYI STİLLERİ --- */
.stat-number {
  font-size: 4.5rem; /* 72px */
  font-weight: 700; /* Kalın font ağırlığı */
  color: #ffffff; /* Beyaz renk */
  line-height: 1;
}

/* --- AÇIKLAMA METNİ STİLLERİ --- */
.stat-label {
  font-size: 1.1rem; /* 17.6px */
  font-weight: 300; /* İnce font ağırlığı */
  margin-top: 15px;
  letter-spacing: 0.5px;
}

/* --- MOBİL UYUMLULUK (Responsive Tasarım) --- */
@media (max-width: 768px) {
  .stats-container {
    flex-direction: column; /* Öğeleri alt alta sırala */
    gap: 50px; /* Mobil dikey boşluk */
  }
  .stat-number {
    font-size: 3.5rem; /* 56px */
  }
  .stat-icon svg {
    width: 45px;
    height: 45px;
  }
}

.hizli-menu-konteyner {
  width: 100%;
  margin: -79px auto 0px;
  position: relative;
  z-index: 99;
}
.hizli-menu-konteyner .container {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
}

/* --- Tek Bir Kart Stili --- */
.hizli-menu-kart {
  background-color: #ffffff;
  border-radius: 0px;
  padding: 2.5rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
  display: flex;
  align-items: start;
  justify-content: space-between;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex: 1;
  min-width: 320px;
  border-right: 1px solid #eef0f1;
  position: relative;
  overflow: hidden;
}

.hizli-menu-kart.kart1 {
  border-radius: 5px 0px 0px 5px;
}

.hizli-menu-kart.kart2 {
  border-radius: 0px 5px 5px 0px;
}

.hizli-menu-kart:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

/* --- Kart İçeriği (Metin ve Logo Alanı) --- */
.hizli-menu-kart-icerik {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hizli-menu-kart .hizli-menu-kart-icon {
  margin-right: 25px;
  margin-top: 5px;
}

.hizli-menu-kart .hizli-menu-kart-icon .svgIcon {
  fill: #00aeff;
  height: 40px;
  width: 40px;
}

.hizli-menu-kart .hizli-menu-kart-icon path {
  fill: #00aeff;
}
.hizli-menu-kart .hizli-menu-kart-bg {
  position: absolute;
  right: -20px;
  bottom: -30px;
  opacity: 19%;
  transform: rotate(326deg);
}

.hizli-menu-kart .hizli-menu-kart-bg .svgIcon {
  fill: #dedede;
  height: 130px;
  width: 130px;
}

.hizli-menu-kart .hizli-menu-kart-bg path {
  fill: #dedede;
}

.hizli-menu-kart h2 {
  margin: 0;
  font-size: 1.5rem;
  color: #2c3e50;
  font-weight: 600;
}

.hizli-menu-kart p {
  margin: 0;
  color: #7f8c8d;
  line-height: 1.3;
  font-size: 13px;
}

.hizli-menu-kart-logo {
  margin-top: 1.5rem;
  max-height: 40px;
  width: auto;
}

/* --- Kartın Sağındaki Ok İkonu --- */
.hizli-menu-kart .hizli-menu-kart-ok {
  color: #3498db;
  margin-left: 2rem;
  opacity: 0;
  transition: transform 0.4s ease-in-out;
}

.hizli-menu-kart:hover .hizli-menu-kart-ok {
  opacity: 1;
}

/* --- Mobil ve Tabletler İçin Ekran Küçüldüğünde --- */
@media (max-width: 992px) {
  .hizli-menu-konteyner {
    flex-direction: column;
  }
  .hizli-menu-kart {
    width: 100%;
  }
}

/* --- ANA YAPI --- */
.neden-biz-work-process-section {
  width: 100%;
  padding: 80px 0px;
  overflow: hidden; /* Taşmaları engelle */
}

.neden-biz-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  gap: 60px;
  align-items: flex-start; /* Öğeleri yukarıdan hizala */
}

/* --- SOL SÜTUN: BAŞLIKLAR VE GÖRSEL --- */
.neden-biz-left-column {
  flex: 1; /* Esnek genişlik */
  max-width: 500px;
}

.neden-biz-tag {
  background-color: #192a3d; /* Turuncuya yakın kırmızı */
  color: white;
  padding: 5px 15px;
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
  border-radius: 50px;
}

.neden-biz-sub-heading {
  color: #555;
  font-weight: 600;
  margin: 20px 0 10px;
}

.neden-biz-main-title {
  font-size: 39px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

.neden-biz-description {
  font-size: 16px;
  color: #56646c;
  line-height: 1.6;
  margin-top: 20px;
}

.neden-biz-image-quote-wrapper {
  position: relative;
  margin-top: 40px;
}

.neden-biz-main-image {
  width: 100%;
  border-radius: 10px;
  display: block;
}

.neden-biz-quote-box {
  position: absolute;
  bottom: -40px;
  right: -40px;
  background-color: #192a3d; /* Koyu Mavi */
  color: white;
  padding: 30px;
  border-radius: 10px;
  max-width: 280px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.neden-biz-quote-text {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  font-style: italic;
}

.neden-biz-quote-author {
  display: block;
  margin-top: 10px;
  color: #ccc;
  font-size: 14px;
}

/* --- SAĞ SÜTUN: ZAMAN ÇİZELGESİ (TIMELINE) --- */
.neden-biz-right-column {
  flex: 1;
  padding-top: 50px; /* Üstten boşluk */
}

.neden-biz-timeline {
  position: relative;
  padding-left: 50px;
}

/* Zaman Çizelgesinin Dikey Çizgileri */
.neden-biz-timeline-line {
  position: absolute;
  left: 69px;
  top: 20px;
  width: 2px;
  height: calc(100% - 40px);
  background-color: #e0e0e0; /* Gri çizgi */
  z-index: 1;
}

.neden-biz-progress-line {
  background-color: #00aeff; /* Turuncu ilerleme çizgisi */
  height: 0; /* Başlangıçta yüksekliği 0 */
  transition: height 0.4s ease; /* Yumuşak geçiş */
  z-index: 2;
}

.neden-biz-timeline-item {
  display: flex;
  align-items: flex-start;
  position: relative;
  padding-bottom: 60px; /* Öğeler arası boşluk */
  cursor: pointer;
}

/* Son öğenin altındaki boşluğu kaldır */
.neden-biz-timeline-item:last-child {
  padding-bottom: 0;
}

.neden-biz-timeline-step {
  box-shadow: 0px 0px 30px 0px rgba(3, 35, 48, 0.05);
  background-color: #fff;
  height: 80px;
  width: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: -21px; /* Çizginin üzerine ortalamak için (genişliğin yarısı) */
  top: 0;
  z-index: 3;
  transition: border-color 0.3s ease;
}

.neden-biz-step-number {
  font-size: 31px;
  font-weight: 300;
  color: #bdbdbd;
  transition: color 0.3s ease;
}

/* Aktif (hover) durumundaki stiller */
.neden-biz-timeline-item.neden-biz-active .neden-biz-timeline-step {
  border-color: #00aeff;
}

.neden-biz-timeline-item.neden-biz-active .neden-biz-step-number {
  color: #00aeff;
}

.neden-biz-timeline-content {
  padding-left: 90px;
}

.neden-biz-timeline-title {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 5px 0;
}

.neden-biz-timeline-description {
  color: #56646c;
  font-size: 15px;
  margin-bottom: 20px;
}

/* --- FAREYİ TAKİP EDEN GÖRSEL --- */
.neden-biz-hover-image-container {
  position: fixed; /* Ekrana göre sabit pozisyon */
  width: 250px;
  height: 180px;
  border-radius: 10px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  z-index: 999;
  pointer-events: none; /* Üzerine gelindiğinde fare olaylarını engelle */
  opacity: 0; /* Başlangıçta gizli */
  transform: scale(0.8) rotate(5deg);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.neden-biz-hover-image-container.neden-biz-visible {
  opacity: 1;
  transform: scale(1) rotate(5deg);
}

.neden-biz-hover-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- RESPONSIVE TASARIM --- */
@media (max-width: 992px) {
  .neden-biz-container {
    flex-direction: column;
  }
  .neden-biz-left-column,
  .neden-biz-right-column {
    max-width: 100%;
  }
  .neden-biz-right-column {
    padding-top: 80px; /* Üstteki resimle boşluk bırakmak için */
    display: none;
  }
  .neden-biz-quote-box {
    position: relative;
    bottom: 0;
    right: 0;
    margin-top: 20px;
    max-width: 100%;
  }
}

/* --- GENEL AYARLAR ve DEĞİŞKENLER --- */
:root {
  --primary-green: #00aeff;
  --dark-bg: #192a3d;
  --dark-grey: #192a3d;
  --light-grey: #a9b3c1;
  --white-color: #ffffff;
}

/* --- ANA FOOTER YAPISI --- */
.site-footer {
  background-color: var(--dark-bg);
  color: var(--light-grey);
  padding: 120px 5% 30px; /* Üstte yeşil bar için boşluk */
  position: relative;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill='%232a2d32' fill-opacity='0.4'%3E%3Cpath d='M73 50 L78.5 44.5 L73 39 L73 28 L62 28 L56.5 22.5 L51 28 L40 28 L40 17 L29 17 L29 6 L18 6 L18 0 L0 0 L0 100 L18 100 L18 94 L29 94 L29 83 L40 83 L40 72 L51 72 L56.5 77.5 L62 72 L73 72 L73 61 L78.5 55.5 L73 50 Z M29 61 L40 61 L40 50 L45.5 44.5 L40 39 L29 39 L29 61 Z M51 61 L51 50 L62 50 L67.5 55.5 L62 61 L51 61 Z'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 5px;
  margin-top: 80px;
}

/* --- YEŞİL İLETİŞİM ALANI --- */
.footer-contact-bar {
  position: absolute;
  top: -60px; /* Footer'ın üstüne taşır */
  left: 5%;
  right: 5%;
  background-color: var(--primary-green);
  background-image: url("data:image/svg+xml,%3Csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='p' width='100' height='100' patternUnits='userSpaceOnUse' patternTransform='rotate(45)'%3E%3Cpath id='a' data-color='outline' fill='none' stroke='%23FFFFFF' stroke-width='1.5' d='M0 50v50h50v-50zM50 0v50h50v-50z'%3E%3C/path%3E%3C/pattern%3E%3C/defs%3E%3Crect fill-opacity='0.08' fill='url(%23p)' width='100%25' height='100%25'%3E%3C/rect%3E%3C/svg%3E");
  border-radius: 15px;
  padding: 30px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--white-color);
}

.icon-wrapper {
  background-color: var(--white-color);
  color: var(--primary-green);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
}

.contact-info span {
  display: block;
  font-size: 14px;
  font-weight: 500;
  opacity: 0.9;
}

.contact-info p {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

/* --- ANA FOOTER ALANI (4 SÜTUN) --- */
.footer-main {
  padding-top: 60px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #3a3d42;
}

.footer-main ul {
  padding-left: 13px;
}

.footer-column h4 {
  color: var(--white-color);
  font-size: 20px;
  margin-bottom: 25px;
  font-weight: 600;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 32px;
  font-weight: 700;
  color: var(--white-color);
  margin-bottom: 20px;
}
.footer-logo i {
  color: var(--primary-green);
}
.footer-description {
  line-height: 1.7;
}

.social-icons {
  margin-top: 25px;
  display: flex;
  gap: 10px;
}

.social-icons li {
  list-style: none;
}

.social-icons a {
  width: 40px;
  height: 40px;
  background-color: var(--dark-grey);
  color: var(--white-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s, color 0.3s;
}

.social-icons a:hover {
  background-color: var(--primary-green);
  color: var(--white-color);
}

.footer-column.links ul li {
  margin-bottom: 15px;
}
.footer-column.links a {
  transition: transform 0.3s ease, color 0.3s ease, background-color 0.3s ease;
}
.footer-column.links a:hover {
  color: var(--primary-green);
  transform: translateX(5px); /* sola 5px kaydır */
}

.subscribe-form {
  display: flex;
  position: relative;
  margin-bottom: 20px;
}

.subscribe-form input {
  width: 100%;
  padding: 15px 50px 15px 20px;
  border: none;
  border-radius: 8px;
  background-color: var(--dark-grey);
  color: var(--white-color);
  font-family: var(--font-family);
  outline: none;
}
.subscribe-form input::placeholder {
  color: var(--light-grey);
}

.subscribe-form button {
  position: absolute;
  right: 5px;
  top: 5px;
  bottom: 5px;
  width: 45px;
  border: none;
  background-color: var(--primary-green);
  color: var(--white-color);
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s ease;
}
.subscribe-form button:hover {
  background-color: #17a062;
}

.terms-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}
.terms-checkbox input {
  accent-color: var(--primary-green);
}

/* --- ALT COPYRIGHT ALANI --- */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  font-size: 15px;
}
.footer-bottom a {
  color: var(--primary-green);
  font-weight: 500;
}
.footer-bottom a:hover {
  text-decoration: underline;
}

.footer-legal-links a {
  color: var(--light-grey);
  margin-left: 25px;
}
.footer-legal-links a:hover {
  color: var(--primary-green);
  text-decoration: none;
}

.footer-legal-links img.hasem {
  width: auto;
  margin-right: 50px;
  height: 25px;
  object-fit: contain;
}

/* --- YUKARI ÇIK BUTONU --- */
.scroll-to-top {
  position: absolute;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: transparent;
  border: 2px solid var(--primary-green);
  border-radius: 50%;
  color: var(--primary-green);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  transition: all 0.3s ease;
}

.scroll-to-top:hover {
  background-color: var(--primary-green);
  color: var(--white-color);
  transform: translateY(-5px);
}

/* --- RESPONSIVE TASARIM (MOBİL UYUMLULUK) --- */
@media (max-width: 1200px) {
  .footer-main {
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  }
}

@media (max-width: 992px) {
  .footer-main {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-contact-bar {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    position: static;
    margin-bottom: 40px;
  }
  .site-footer {
    padding: 40px 5%;
    margin: 0px 0 30px 0;
  }
}

@media (max-width: 768px) {
  .footer-main {
    grid-template-columns: 1fr;
    text-align: center;
    display: none;
  }
  .footer-column.about,
  .social-icons,
  .subscribe-form,
  .terms-checkbox,
  .footer-bottom {
    justify-content: center;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 0;
    padding: 0;
  }
  .scroll-to-top {
    bottom: 20px;
    right: 20px;
  }
}

/**/

:root {
  --acik-yesil-bg: #00aeff;
  --koyu-yazi: #2c3e50;
  --beyaz: #ffffff;
  --golge-hafif: 0 5px 15px rgba(0, 0, 0, 0.08);
  --golge-belirgin: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* --- SAĞDAKİ SABİT BUTONLAR --- */
.estetik-iletisim-widget {
  position: fixed;
  bottom: 20px;
  right: 0px;
  z-index: 998;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-end;
}

.widget-item {
  display: flex;
  align-items: center;
  background-color: #f0f4f8;
  color: #192a3d;
  padding: 17px 20px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  border-radius: 40px 0px 0px 40px;
  box-shadow: var(--golge-hafif);
  opacity: 0;
  transform: translateX(30px);
  animation: slideInFade 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.widget-item:hover {
  transform: translateX(-15px) scale(1.05);
  box-shadow: var(--golge-belirgin);
  background-color: #00aeff;
  color: #fff;
  border-color: #00aeff !important;
}

.widget-item i {
  font-size: 20px;
  margin-right: 12px;
  transition: transform 0.3s ease;
}

.widget-item:hover i {
  transform: scale(1.2) rotate(-10deg);
}

.widget-item:nth-child(1) {
  animation-delay: 0.2s;
  background-color: #00aeff;
  color: #fff;
  border-color: #00aeff !important;
}
.widget-item:nth-child(2) {
  animation-delay: 0.3s;
}
.widget-item:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes slideInFade {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* --- ORTADA AÇILAN MODAL PENCERE --- */
.modal-iletisim-formu {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 700px;
  max-width: 95%;
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -50%) scale(0.95);
  transition: opacity 0.4s ease,
    transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), visibility 0.4s;
}

.modal-iletisim-formu.aktif {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.modal-kapat-buton {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 35px;
  height: 35px;
  background-color: #f1f1f1;
  border: none;
  border-radius: 50%;
  color: #888;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.modal-kapat-buton:hover {
  background-color: #e0e0e0;
  color: #333;
  transform: rotate(90deg);
}

.modal-icerik {
  padding: 40px;
  text-align: center;
}
.modal-icerik h2 {
  font-size: 28px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 10px;
}
.modal-icerik p {
  font-size: 16px;
  color: #7f8c8d;
  margin-bottom: 30px;
  line-height: 1.6;
}
.modal-icerik .form-grup {
  margin-bottom: 20px;
  text-align: left;
}

.modal-icerik .form-grup input,
.modal-icerik .form-grup textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #dfe6e9;
  border-radius: 8px;
  font-size: 15px;
  transition: all 0.3s ease;
  background-color: #fafafa;
}

.modal-icerik .form-grup input:focus,
.modal-icerik .form-grup textarea:focus {
  outline: none;
  border-color: var(--acik-yesil-bg);
  box-shadow: 0 0 0 4px rgba(210, 247, 193, 0.7);
  background-color: #fff;
}

.modal-icerik .gonder-butonu {
  width: 100%;
  padding: 15px;
  background-color: var(--koyu-yazi, #2c3e50);
  color: var(--beyaz, #ffffff);
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal-icerik .gonder-butonu:hover {
  background-color: #1e2b38;
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* --- ARKA PLAN KARARTMA (OVERLAY) --- */
.form-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
  backdrop-filter: blur(5px);
}

.form-overlay.aktif {
  opacity: 1;
  visibility: visible;
}

/* --- SİZİN FORMUNUZ İÇİN ÖZEL STİLLER (HTML DEĞİŞMEDEN) --- */

/* Modal içindeki formun genel düzenini sağlıyoruz */
.modal-icerik form {
  text-align: left;
}

/* Form içindeki satır (row) yapısını Flexbox ile modern hale getiriyoruz */
.modal-icerik .row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}

/* Form içindeki sütun (col-*) yapılarına boşluk veriyoruz */
.modal-icerik .row [class*="col-"] {
  padding-left: 10px;
  padding-right: 10px;
  box-sizing: border-box; /* Önemli: padding'in genişliği etkilememesi için */
}

/* Sütun genişliklerini tanımlıyoruz (Bootstrap gibi) */
.modal-icerik .col-md-5 {
  width: 41.66%;
}
.modal-icerik .col-md-6 {
  width: 50%;
}
.modal-icerik .col-md-7 {
  width: 58.33%;
}
.modal-icerik .col-md-12 {
  width: 100%;
}

/* Form eleman gruplarına (form-group) alt boşluk veriyoruz */
.modal-icerik .form-group {
  margin-bottom: 20px;
}

/* Etiketlerin (label) stilini modernleştiriyoruz */
.modal-icerik .basliklabel {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #555;
  font-size: 14px;
}
.modal-icerik .basliklabel span {
  color: #e74c3c; /* Zorunlu alan yıldızının rengi */
  margin-right: 3px;
}

/* Tüm input ve textarea'ların (form-control) stilini baştan yazıyoruz */
.modal-icerik .form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #dfe6e9;
  border-radius: 8px;
  font-size: 15px;
  font-family: "Nunito", sans-serif;
  transition: all 0.3s ease;
  background-color: #fafafa;
  box-sizing: border-box; /* Önemli */
}

/* Input ve textarea'lara odaklanıldığında (focus) efekt veriyoruz */
.modal-icerik .form-control:focus {
  outline: none;
  border-color: var(--acik-yesil-bg, #d2f7c1);
  box-shadow: 0 0 0 4px rgba(210, 247, 193, 0.7);
  background-color: #fff;
}

/* Güvenlik kodu alanını özel olarak düzenliyoruz */
.modal-icerik .guvenlik_input {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end; /* Elemanları alta hizala */
  position: relative;
}
.modal-icerik .guvenlik_input .basliklabel {
  width: 100%; /* Etiket üstte tam genişlik kaplasın */
}
.modal-icerik .guvenlik_input .form-control {
  flex: 1; /* Input kalan boşluğu doldursun */
}
.modal-icerik .guvenlik_resim {
  margin-left: 10px;
}
.modal-icerik .guvenlik_resim img {
  border-radius: 6px;
  display: block;
  height: 47px;
  position: absolute;
  right: 0px;
  height: 22px;
  bottom: 14px;
}

/* Gönder butonunu modern hale getiriyoruz */
/* HTML'deki inline stili ezmek için !important kullanıyoruz */
.modal-icerik #submit_1.btn {
  width: 100%;
  padding: 12px;
  background: var(--koyu-yazi, #2c3e50) !important;
  color: var(--beyaz, #ffffff) !important;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 30px; /* Label ile aynı hizaya gelmesi için */
}

.modal-icerik #submit_1.btn:hover {
  background-color: #1e2b38 !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Form içindeki gereksiz boşlukları ve elemanları gizliyoruz */
.modal-icerik .form_aciklama,
.modal-icerik span.help-block[id*="uyariid_"] {
  display: none;
}

/* --- MOBİL UYUMLULUK (Responsive) --- */
@media (max-width: 768px) {
  /* Küçük ekranlarda tüm sütunlar tam genişlik kaplasın */
  .modal-icerik .col-sm-5,
  .modal-icerik .col-sm-6,
  .modal-icerik .col-sm-7,
  .modal-icerik .col-sm-12 {
    width: 100%;
  }

  .modal-icerik #submit_1.btn {
    margin-top: 10px; /* Mobilde butonun üst boşluğunu azalt */
  }

  .modal-icerik {
    width: 100%; /* Mobil için modal genişliğini ayarla */
  }
}


@media(max-width:1024px){
  .site-header {
    background: #192a3d;
    top: 0px;
    width: 100%;
    display: inline-block;
  }

  .site-header.hidden {
    background: #192a3d;
    top: 0px;
  }

  .header-center {
    position: relative;
    left: 0;
    top: 0;
    transform: translate(0%, 0%);
  }

  .header-left{
    display: none;
  }

  .hizli-menu-kart .hizli-menu-kart-icon{
    display: none;
  }

  .abouts-stats-box{
    display: none;
  }

  .hizli-menu-kart .hizli-menu-kart-ok{
    display: none;
  }
  
  .hizli-menu-konteyner {
    width: 100%;
    margin: 30px auto 0px;
  }


  .hero-slider {
    margin: 0;
    height: 60vh;
    width: 100%;
    border-radius: 0;
  }

  .slider-header h2 {
    font-size: 30px;
  }
  
  .slider-nav{
    display: none;
  }

  .partner-image {
      height: 60vw;
      max-width: 100vw;
  }

  .partners-section {
      width: 100%;
      padding: 40px 20px;
  }
  
  .partner-content {
    max-width: 100%;
    margin-right: 10vw;
    margin-left: 0px;
    margin-right: 0;
  }

  .urunler {
    padding: 20px 0;
  }

  .slider-item{
    width: 370px;
  }

}



/**/

.page-urunler-listele-resimler {
    width: 100%;
    margin-bottom: 20px;
    display: block;
    transition: all 0.3s ease;
}

.page-urunler-listele-resimler .img-thumbnail {
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.4s ease, transform 0.3s ease;
    position: relative;
}

.page-urunler-listele-resimler:hover .img-thumbnail {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(-10px);
}

.page-urunler-listele-resimler .image {
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    transition: all 0.3s ease;
    padding: .25rem;
    background-color: #fff;
    border: 1px solid #dee2e6;
    display: flex;
    align-items: center;
    border-radius: 5px;
    transition: transform 0.6s 
cubic-bezier(0.19, 1, 0.22, 1);
    height: 220px;
}

.page-urunler-listele-resimler .image img {
    max-width: 100%;
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.page-urunler-listele-resimler:hover .image img {
    transform: scale(1.15) rotate(2deg);
}

.page-urunler-listele-resimler .image .zoom {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    background: rgba(0, 0, 0, 0.4);
}

.page-urunler-listele-resimler:hover .image .zoom {
    opacity: 1;
}

.page-urunler-listele-resimler .image .zoom i {
    font-size: 30px;
    color: #fff;
    background: rgb(0 0 0 / 85%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.page-urunler-listele-resimler .image .zoom i:hover {
    transform: scale(1.1);
}

.page-urunler-listele-resimler .images-list-text {
    width: 100%;
    height: 60px;
    text-align: center;
    padding: 10px 0;
    color: #555;
    line-height: 1.5;
    font-weight: bold;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: #f8f9fa;
    transition: color 0.3s ease, background 0.3s ease;
    border-top: 1px solid #e0e0e0;
    border-radius: 0 0 15px 15px;
}

.page-urunler-listele-resimler:hover .images-list-text {
    color: #007bff;
    background: #e9ecef;
}


/**/

@media(max-width:1024px){
  .estetik-iletisim-widget {
    bottom: 60px;
  }
}