/* ── Değişkenler ve Genel Typography ── */
/* Proje genelinde kullanılacak renk, font ve boşluk ayarları */
/* En üstte, Google Fonts importu */
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&display=swap");
/* Font preload için */
@font-face {
  font-family: "SuisseIntl";
  src: url("/assets/fonts/suisse/fonnts.com-Suisse_Intl_Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Birincil ve ikincil font aileleri */
  --font-primary: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-secondary: "Montserrat", sans-serif; /* Başlık ve vurgu metinleri */
  --font-baslik: "Montserrat", sans-serif;

  /* Ana renk paleti */
  --color-base: rgb(112, 112, 112); /* body, footer metni vs. için */
  --color-muted: rgb(112, 112, 112); /* daha ikincil metinler için */
  --color-accent: rgb(112, 112, 112); /* Vurgu, başlık rengi */
  --color-accent-light: #000000; /* Açık vurgu rengi */
  --color-bg: #ffffff; /* Sayfa arka plan rengi */
  --color-section-bg: #ffffff; /* Bölüm arka plan rengi */
  --color-eksen-renk: #0091a2;
  /* Harf aralığı */
  --letter-spacing-wide: 1.5px;
  --font-weight-montserrat: 400;
  /* Transition */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Shadows */
  --shadow-light: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 4px 12px rgba(0, 0, 0, 0.15);
  --shadow-heavy: 0 8px 20px rgba(0, 0, 0, 0.2);

  /* Border radius */
  --radius-small: 4px;
  --radius-medium: 8px;
  --radius-large: 16px;
}

/* ── Temel sayfa ayarları ── */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Kaydırma çubuğunun sürekli görünmesini sağlar, layout kaymasını engeller */
html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-primary);
  background: var(--color-bg);
  color: var(--color-base);
  line-height: 1.6;
  background-color: #f6f6f6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── Performance optimizations ── */
img {
  max-width: 100%;
  height: auto;
}

video {
  max-width: 100%;
  height: auto;
}

/* ── Accessibility ── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Focus styles */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
  outline: 2px solid var(--color-eksen-renk);
  outline-offset: 2px;
}

/* ── Vurgu sınıfı (.highlight) ── */
/* Önemli metinleri öne çıkarmak için kullanılır */
.highlight {
  color: var(--color-accent); /* Vurgu rengi */
  font-family: var(--font-secondary); /* İkincil font */
  font-weight: var(--font-weight-montserrat); /* Kalınlık */
  letter-spacing: var(--letter-spacing-wide); /* Harf aralığı */
}

/* ── Videolu ve Görsel Ayarları ── */
.feature-video,
.feature-video1,
.features-left .feature-videos {
  width: 100%;
  max-width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-large);
  border: 2px solid var(--color-eksen-renk);
  box-sizing: border-box;
  transition: transform var(--transition-normal);
  display: block; /* Ekle */
}

.feature-video:hover,
.feature-video1:hover,
.features-left .feature-videos:hover {
  transform: scale(1.02);
}

.feature-video1 {
  height: 350px;
}

.features-section.reverse .features-left .feature-videos {
  width: 100%;
  max-width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 15px;
}

/* Slider altındaki bullet (nokta) göstergesi ayarları */
.swiper-pagination {
  bottom: 20px !important; /* Konumlandırma */
}
.swiper-pagination-bullet {
  background: #fff; /* Beyaz nokta rengi */
  opacity: 0.7; /* Yarı saydamlık */
  transition: opacity var(--transition-fast);
}
.swiper-pagination-bullet-active {
  opacity: 1; /* Aktif noktanın tam görünürlüğü */
}
.product-desc .product-tittle {
  margin-top: 100px;
}

/* ---------- ÖZELLİKLERİMİZ SECTION ---------- */
.features-section {
  padding: 60px 0;
}
.features-section .container {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;

  max-width: 100%;

  padding: 20px 60px;
  overflow: hidden; /* Ekle */
}
.features-left,
.features-right {
  flex: 1 1 45%;
  min-width: 400px;
  max-width: 100%; /* Ekle */
  overflow: hidden; /* Ekle */
}
/* 1) features-right kapsayıcısını sütun flex konteynırı yap */
#features-reverse .features-right {
  display: flex;
  flex-direction: column;
}

/* 2) Sadece butonu sağa yasla */
#features-reverse .features-right .btn-arrow {
  align-self: flex-end;
}

/* Sol sütun görseli */
.features-left img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-medium);
  transition: transform var(--transition-normal);
}

.features-left img:hover {
  transform: scale(1.02);
}
.feature-video,
.feature-video1,
.features-left .feature-videos {
  border: 2px solid var(--color-eksen-renk);
  box-sizing: border-box;
}
/* Sağ sütun içeriği */
.features-right h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-top: 0px;
  color: var(--color-eksen-renk);
  line-height: 1.2;
}
.features-right p {
  font-size: 1.05rem;
  color: var(--color-base);
  line-height: 1.6;
  margin-bottom: 25px;
}
.features-right .btn {
  display: inline-block;
  text-decoration: none;
}
.product-title1 {
  text-align: right;
  margin-top: 20px;
}
.product-desc1 {
  text-align: right;
  margin-top: 20px;
}
.btn-primary {
  margin-top: 0;
  text-align: right;
}
/* ── Button Styles ── */
.btn {
  display: inline-flex;
  align-items: center;
  padding: 0.75em 1.5em;
  border-radius: var(--radius-small);
  text-decoration: none;
  font-weight: var(--font-weight-montserrat);
  font-family: var(--font-primary);
  border: none;
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--color-eksen-renk);
  color: #fff;
  box-shadow: var(--shadow-light);
}

.btn-primary:hover {
  background: #007a8a;
  box-shadow: var(--shadow-medium);
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: translateY(0);
}
.btn {
  display: inline-flex;
  align-items: center;
  padding: 0.75em 1.5em;
  border-radius: 4px;
  text-decoration: none;
  font-weight: var(--font-weight-montserrat);
  transition: background 0.3s;
}

.btn-primary {
  background: var(--color-eksen-renk);
  color: #fff;
  padding: 0.75em 1.5em;
  transition: background 0.3s, box-shadow 0.3s;
}
.btn-primary:hover {
  background: #007a8a;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.btn-primary:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
}

.btn-arrow {
  position: relative;
}

/* arrow pseudo-element */
.btn-arrow::after {
  content: "→";
  display: inline-block;
  margin-left: 0.5em;
  transition: transform var(--transition-normal);
}

.btn-arrow:hover::after {
  transform: translateX(4px);
}

/* opsiyonel: aktif/odak stili */
.btn-arrow:focus {
  outline: 2px solid var(--primary-color-dark);
  outline-offset: 2px;
}

/* Küçük alt görsel */
.features-small-image {
  margin-top: 40px;
}
.features-small-image img {
  width: 100%;
  max-width: 280px;
  height: auto;
  display: block;
  border-radius: var(--radius-small);
  transition: transform var(--transition-normal);
}

.features-small-image img:hover {
  transform: scale(1.05);
}

/* Mobilde alt alta geçiş (768px altı için) */
@media (max-width: 768px) {
  .features-section .container {
    flex-direction: column;
    text-align: center;
  }
  .features-small-image {
    margin: 30px auto 0;
  }
}

/* ── Features Bölümü ── */
/* .container: genel içerik genişliği ve iç boşluk */
.container {
  max-width: 1400px;
  margin: 0 auto;

  padding: 20px 40px;
}
/* ---------- Sadece ters düzen için ekleyin ---------- */
.features-section.reverse .container {
  /* Aynı flex yapısını tersine çeviriyoruz */
  flex-direction: row-reverse;
}

/* Mobilde yine alt alta gelsin: */
@media (max-width: 768px) {
  .features-section.reverse .container {
    flex-direction: column;
    text-align: center;
  }
}

/* ── Products Slider ── */
/* Ürün kaydırıcısının üst-alt boşluk ve taşma kontrolü */
.swiper-products {
  padding: 40px 0;
  overflow: hidden;
}
.swiper-products .swiper-wrapper {
  display: flex;
}
.swiper-products .swiper-slide {
  width: 300px; /* Kaydırılacak öğe genişliği */
  flex-shrink: 0; /* Küçülmeyi engelle */
}

/* Ürün slider’ın pagination noktaları */
.swiper-pagination-products {
  text-align: center;
  margin-top: 20px;
}
.swiper-pagination-products-bullet {
  background: #777;
  opacity: 0.6;
  transition: all var(--transition-fast);
}
.swiper-pagination-products-bullet-active {
  background: var(--color-accent);
  opacity: 1;
}

/* ── Contact Section ── */
/* İletişim bölümünün arka plan, gölge ve kenar yuvarlama */
.contact-section {
  background: var(--color-section-bg);
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-light);
  margin: 40px;
  padding: 40px;
}
/* İç kapsayıcı flex düzeni */
.contact-section .container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  padding: 60px 20px;
  max-width: 900px;
  margin: 0 auto;
}
/* İletişim bilgisi ve form genişlik ayarı */
.contact-info,
.contact-section form {
  flex: 1 1 300px;
}
/* İletişim başlığı h3 stili */
.contact-info h3 {
  margin-bottom: 20px;
  color: var(--color-accent-light);
  font-family: var(--font-secondary);
  font-weight: var(--font-weight-montserrat);
}
/* İletişim bilgisi paragrafları stili */
.contact-info p {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  margin-bottom: 15px;
  color: var(--color-muted);
}
/* İkon renk ve boyutu */
.contact-info i {
  font-size: 1.2rem;
  color: var(--color-accent-light);
}

/* ── Form input ve textarea ── */
/* Input ve textarea kutularının ortak görünümü */
.input-group {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.input-group i {
  margin-right: 15px;
  font-size: 1.2rem;
  color: rgb(112, 112, 112);
}
.input-group input,
.input-group textarea {
  flex: 1;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: var(--radius-small);
  font-family: var(--font-primary);
  font-weight: var(--font-weight-montserrat);
  font-size: 0.9rem;
  transition: border-color var(--transition-fast);
}

.input-group input:focus,
.input-group textarea:focus {
  border-color: var(--color-eksen-renk);
}

/* ── Gönder butonu ── */
/* Gönder butonunun renk, font ve hover etkisi */
#contact button {
  padding: 15px;
  background: var(--color-accent-light);
  color: #fff;
  border: none;
  border-radius: var(--radius-small);
  font-family: var(--font-secondary);
  font-weight: var(--font-weight-montserrat);
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-wide);
  font-size: 1rem;
  cursor: pointer;
  transition: background var(--transition-normal);
}
#contact button:hover {
  background: #2d2d2d;
}

/* ========= KATEGORİLER BÖLÜMÜ ========= */
/* ── KATEGORİLER BÖLÜMÜ HOVER & EFECTS ── */
.collections-left {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 12px;
  transition: transform var(--transition-normal);
}

.collections-left:hover {
  transform: scale(1.02);
}

/* Overlay kutusu ve içindeki metin */
.collections-left-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.7);
  padding: 16px;
  border-radius: var(--radius-medium);
  color: #fff;
  backdrop-filter: blur(10px);
}
.overlay-title {
  margin: 0 0 8px;
  font-size: 1.5rem;
  font-weight: var(--font-weight-montserrat);
}
.overlay-desc {
  margin: 0;
  font-size: 1rem;
  line-height: 1.4;
}

/* Responsive: mobilde biraz sıkılaştır */
@media (max-width: 768px) {
  .collections-left-overlay {
    bottom: 10px;
    left: 10px;
    right: 10px;
    padding: 12px;
  }
  .overlay-title {
    font-size: 1.2rem;
  }
  .overlay-desc {
    font-size: 0.9rem;
  }
}
.collection-menu {
  display: flex;
  gap: 40px;
  padding: 40px;
  max-width: 100%;
  margin: 0 auto;
}

.collection-menu .card {
  position: relative;
  flex: 1;
  height: 400px;
  background: linear-gradient(145deg, #ffffff, #f0f0f0); /* Hafif gradient ile derinlik */
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-medium); /* Daha yumuşak ve hacimli */
  transition: all var(--transition-slow);
  transform-style: preserve-3d;
  will-change: transform;
  cursor: pointer;
}
.collection-menu .card:hover {
  transform: translateY(-10px) scale(1.02); /* Hafif yukarı zıplama ve büyüme */
  box-shadow: var(--shadow-heavy); /* Daha güçlü hover gölgesi */
}
.section-divider {
  display: block;
  width: 100%;
  height: 4rem;
  margin-top: -1px; /* boşluk kalmasın */
}

/* Kart içindeki görsel */
.collection-menu .card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter var(--transition-normal);
}

/* Hover'ta görsel koyulaşsın, başlık ve menü daha net görünsün */
.collection-menu .card:hover img {
  filter: brightness(0.3);
}

/* Başlık: her zaman ortada */
.collection-menu .card .card-title {
  position: absolute;
  top: 80%; /* daha ortalanmış konum */
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  color: #fff6f6;
  text-align: center;
  font-size: 1.8rem; /* daha büyük yazı */
  font-weight: var(--font-weight-montserrat); /* Montserrat Light görünümü */
  font-family: var(--font-primary);
  letter-spacing: 1.5px;
  z-index: 1;
  pointer-events: none;
  transition: opacity var(--transition-normal);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* Alternatif: hover'ta başlığı biraz soluklaştırmak isterseniz */
.collection-menu .card:hover .card-title {
  color: rgba(255, 255, 255, 0.7);
  opacity: 0;
}

/* Alt menü başlangıçta gizli */
.collection-menu .card .submenu {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start; /* center yerine flex-start */
  background: rgba(255, 255, 255, 0.95);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
  backdrop-filter: blur(10px);
  padding: 20px 10px; /* Padding ekle */
  overflow-y: auto; /* Scroll özelliği ekle */
}

/* Hover: alt menüyü göster */
.collection-menu .card:hover .submenu {
  opacity: 1;
  pointer-events: auto;
}

.collection-menu .card .submenu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
  width: 100%;
  max-height: 100%; /* Maksimum yükseklik */
  overflow-y: auto; /* Liste için scroll */
}

.collection-menu .card .submenu li {
  margin: 4px 0; /* Margin'i azalt */
  font-size: 1.1rem; /* Font boyutunu küçült */
  line-height: 1.3; /* Satır yüksekliğini azalt */
}

.collection-menu .card .submenu li a {
  text-decoration: none;
  color: #666;
  transition: color var(--transition-fast);
  padding: 6px 8px; /* Padding'i azalt */
  border-radius: var(--radius-small);
  display: block; /* Block yaparak tam genişlik kullan */
  text-align: center;
  font-size: 1.5rem; /* Daha küçük font */
}
.resim-cevre .rc-btn {
    display: inline-block;
    padding: 0.75em 1.5em;
    border: 2px solid var(--color-accent);
    border-radius: 2rem;
    color: var(--color-accent);
    font-weight: 500;
    text-decoration: none;
    transition: all var(--transition-normal);
}
.collection-menu .card .submenu li a:hover {
  color: var(--color-eksen-renk);
  background: rgba(0, 145, 162, 0.1);
}

/* Menü ok işareti - kaldır veya küçült */
.collection-menu .card .submenu .arrow {
  font-size: 1.5rem; /* Küçült */
  color: #000;
  margin-top: auto; /* En alta yerleştir */
}

/* Alternatif: İki sütunlu düzen için */
.collection-menu .card .submenu.two-column ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
  max-width: 100%;
}

.collection-menu .card .submenu.two-column li {
  font-size: 0.9rem;
}

/* Back to Top button */
#back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  padding: 10px 15px;
  border: none;
  border-radius: 50%;
  font-size: 18px;
  display: none;
  cursor: pointer;
  z-index: 1000;
  background: var(--color-accent);
  color: #fff;
  box-shadow: var(--shadow-medium);
  transition: all var(--transition-normal);
}

#back-to-top:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-heavy);
}

/* Abone olma kartı */
.subscribe-card {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #fff;
  border: 1px solid #ddd;
  box-shadow: var(--shadow-medium);
  border-radius: var(--radius-medium);
  z-index: 10000;
  animation: slideIn 0.4s ease-out;
}
.subscribe-card .card-content {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  font-size: 0.95rem;
  color: #333;
}
.subscribe-card .close-btn {
  background: transparent;
  border: none;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  color: #666;
  margin-left: auto;
  transition: color var(--transition-fast);
}

.subscribe-card .close-btn:hover {
  color: #333;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================
   ── RESPONSIVE STYLES ──
   ============================ */

/* Tablet için (max-width: 1024px) */
@media (max-width: 1024px) {
  /* Genel container padding azaltma */
  .container {
    padding: 15px;
  }

  /* Features bölümü: gap azalır, sütunlar tam genişliğe iner */
  .features-section .container,
  .features-section.reverse .container {
    gap: 20px;
  }
  .features-left,
  .features-right {
    flex: 1 1 100%;
    min-width: unset; /* Değiştir */
    max-width: 100%;
  }
  .feature-video,
  .features-left img,
  .features-left .feature-videos {
    height: auto;
    min-height: 250px; /* Ekle */
  }

  .features-section .container {
    padding: 15px 20px; /* Değiştir */
  }

  /* Ürün slider: kaydırılacak öğe genişliğini biraz küçült */
  .swiper-products .swiper-slide {
    width: 45vw;
  }

  /* İletişim bölümü: sütun yapısı alt alta dizilir */
  .contact-section {
    margin: 20px;
    padding: 30px 15px;
  }
  .contact-section .container {
    flex-direction: column;
    gap: 20px;
  }
  .contact-info,
  .contact-section form {
    flex: 1 1 100%;
  }

  /* Kategoriler bölümü: iki sütun düzeni */
  .collection-menu {
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
  }
  .collection-menu .card {
    flex: 1 1 calc(50% - 20px);
    height: 300px;
  }
  .collection-menu .card img {
    display: block; /* inline-block’tan block’a geçiş */
    width: 100%; /* kartı tam doldursun */
    height: 100%; /* kart yüksekliğine uyumlu */
    object-fit: cover; /* taşma/boşluk olmadan kırpma */
  }

  .angled-split-container {
    flex-direction: column;
    height: auto;
  }

  .split-part {
    height: 200px;
  }

  .split-part:not(:first-child)::after {
    width: 100%;
    height: 2px;
    transform: skewY(-5deg);
  }

  .features-section .container {
    padding: 15px 40px;
  }
}

/* Mobil için (max-width: 768px) */
@media (max-width: 768px) {
  /* Container padding daha da azalır */
  .container {
    padding: 10px 10px;
  }

  /* Features bölümü: üst ve alt boşluk küçülür, sütunlar alt alta dizilir */
  .features-section,
  .features-section.reverse {
    padding: 15px 0;
  }

  .features-section .container,
  .features-section.reverse .container {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .feature-video,
  .features-left img,
  .features-left .feature-videos {
    height: auto;
    min-height: 200px; /* Ekle */
  }

  /* Ürün slider: kaydırılacak öğe genişliği ekran genişliğine göre ayarlanır */
  .swiper-products .swiper-slide {
    width: 80vw;
  }

  /* İletişim bölümü: kenar boşluk ve iç boşluk küçülür, sütunlar alt alta dizilir */
  .contact-section {
    margin: 20px 10px;
    padding: 20px 10px;
  }

  .contact-section .container {
    flex-direction: column;
    gap: 15px;
  }

  .contact-info,
  .contact-section form {
    flex: 1 1 100%;
  }

  /* Kategoriler bölümü: tek sütun düzeni */
  .collection-menu {
    flex-direction: column;
    gap: 15px;
    padding: 15px;
  }

  .collection-menu .card {
    flex: 1 1 100%;
    height: auto;
  }

  /* Back to Top butonu daha küçük konumlandırılır */
  #back-to-top {
    bottom: 20px;
    right: 20px;
  }

  .features-section .container {
    padding: 15px 10px; /* Değiştir */
  }

  .features-left,
  .features-right {
    flex: 1 1 100%;
    min-width: unset;
    max-width: 100%;
  }
}
.custom-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;

  /* Ekle: yatay boşluk ve ortalama */
  padding: 0 20px; /* sağında-solunda 40px boşluk */
  margin: 60px auto; /* üst-alt 60px, yanlarda otomatik centering */

  /* İsteğe göre maksimum genişlik sınırı */
  max-width: 1600px;
  perspective: 1000px;
}

.custom-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 24px;
  overflow: hidden;
  min-height: 500px;

  /* Link stili temizliği */
  text-decoration: none;
  color: inherit;
  transform-style: preserve-3d;
  transition: all var(--transition-slow);
  position: relative;
}
.custom-card .card-content h2,
.custom-card .card-content p {
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
}
.custom-card:hover {
  transform: translateY(-10px) scale(0.95) translateZ(-20px);
  box-shadow: var(--shadow-heavy);
}
.custom-card--image {
  background-size: cover;
  background-position: center;
}

.custom-card--color {
  background-color: #8a8f68; /* isteğe göre değiştir */
}

.card-content {
  padding: 40px 30px 80px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.custom-card h2 {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 400;
  font-family: var(--font-secondary);
}

.custom-card p {
  font-size: 1rem;
  line-height: 1.6;
  max-width: 80%;
  margin: 20px auto;
  font-weight: 500;
}

.card-arrow {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 56px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-normal);
}
.card-arrow::after {
  content: "→";
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
}

.custom-card:hover .card-arrow {
  transform: translateX(-50%) scale(1.1);
  background: rgba(255, 255, 255, 0.1);
}

/* ── Resim Çevre Bölümü ── */
.resim-cevre {
  position: relative;
  padding: 50px 20px;
  text-align: center;
  overflow: hidden;
  background-color: #f6f6f6;
}

/* Ortadaki metin & buton */
.resim-cevre .rc-content h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.2;
  max-width: 800px;
  margin: 0 auto 20px;
  color: #007a8a;
}
.resim-cevre .rc-content h1 span {
  display: block;

  color: var(--color-accent);
}
.resim-cevre .rc-content p {
  max-width: 600px;
  margin: 0 auto 30px;
  font-size: 1rem;
  color: var(--color-muted);
  line-height: 1.6;
}
.resim-cevre .rc-btn {
  display: inline-block;
  padding: 0.75em 1.5em;
  border: 2px solid var(--color-accent);
  border-radius: 2rem;
  color: var(--color-accent);
  font-weight: 500;
  text-decoration: none;
  transition: all var(--transition-normal);
}
.resim-cevre .rc-btn:hover {
  background: var(--color-accent);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

/* Görsellerin ortak stili */
.resim-cevre .rc-img {
  position: absolute;
  overflow: hidden;
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-light);
  transition: transform var(--transition-normal);
}
.resim-cevre .rc-img img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Konumlandırma ve boyutlar */
.resim-cevre .rc-img--top-left {
  top: 10%;
  left: 5%;
  width: 180px;
}
.resim-cevre .rc-img--top-right {
  top: 8%;
  right: 8%;
  width: 200px;
}
.resim-cevre .rc-img--bottom-left {
  bottom: 12%;
  left: 8%;
  width: 300px;
}
.resim-cevre .rc-img--bottom-right {
  bottom: 10%;
  right: 5%;
  width: 250px;
}

/* Responsive ayar */
@media (max-width: 992px) {
  .resim-cevre .rc-img {
    display: none;
  }
  .resim-cevre {
    padding: 80px 10px;
  }
  .resim-cevre .rc-content h1 {
    font-size: 2rem;
  }
}

.unique-angled-split {
  width: 100%;
  max-width: 1500px;
  margin: 2rem auto;
  padding: 0 0px;
}

.angled-header {
  text-align: center;
  margin-bottom: 2rem;
}

.angled-header h2 {
  font-size: 2.5rem;
  color: var(--color-base);
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
}

.angled-header h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #3498db, #9b59b6);
}

.angled-header .subtitle {
  color: #777;
  font-size: 1.1rem;
}

.angled-split-container {
  display: flex;
  height: 50vh;
  max-height: 500px;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: var(--shadow-heavy);
}

.split-part {
  flex: 1;
  position: relative;
  background-size: cover;
  background-position: center;
  transition: all var(--transition-slow);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-decoration: none;
  overflow: hidden;
  color: white;
  padding: 30px;
}

.split-part::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
  transition: opacity var(--transition-normal);
}

.split-part:hover {
  flex: 1.2;
}

.split-part:hover::before {
  opacity: 0.8;
}

.split-part:not(:first-child)::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  transform: skewX(-15deg);
  z-index: 2;
}

.content-wrapper {
  position: relative;
  z-index: 3;
  transform: translateY(20px);
  transition: transform var(--transition-normal);
  width: 100%;
  text-align: center;
}

.split-part:hover .content-wrapper {
  transform: translateY(0);
}

.split-part span {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  transition: all var(--transition-normal);
}

.split-part:hover span {
  font-size: 2.8rem;
}

.split-part .description {
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--transition-normal);
  font-size: 1rem;
  margin: 0;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.split-part:hover .description {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}

.cad-part {
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("assets/images/cad.webp");
}

.step-part {
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("assets/images/step.webp");
}

.max-part {
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("assets/images/max.webp");
}

/* ============================
   ── RESPONSIVE STYLES ──
   ============================ */

/* Tablet için (max-width: 1024px) */
@media (max-width: 1024px) {
  .container {
    padding: 15px;
  }

  .features-section .container,
  .features-section.reverse .container {
    gap: 20px;
  }

  .features-left,
  .features-right {
    flex: 1 1 100%;
  }

  .feature-video,
  .features-left img,
  .features-left .feature-videos {
    height: auto;
  }

  .swiper-products .swiper-slide {
    width: 45vw;
  }

  .contact-section {
    margin: 20px;
    padding: 30px 15px;
  }

  .contact-section .container {
    flex-direction: column;
    gap: 20px;
  }

  .contact-info,
  .contact-section form {
    flex: 1 1 100%;
  }

  .collection-menu {
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
  }

  .collection-menu .card {
    flex: 1 1 calc(50% - 20px);
    height: 300px;
  }

  .collection-menu .card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .angled-split-container {
    flex-direction: column;
    height: auto;
  }

  .split-part {
    height: 200px;
  }

  .split-part:not(:first-child)::after {
    width: 100%;
    height: 2px;
    transform: skewY(-5deg);
  }
}

/* Mobil için (max-width: 768px) */
@media (max-width: 768px) {
  /* Container padding daha da azalır */
  .container {
    padding: 10px;
  }

  /* Features bölümü: üst ve alt boşluk küçülür, sütunlar alt alta dizilir */
  .features-section,
  .features-section.reverse {
    padding: 15px 0;
  }

  .features-section .container,
  .features-section.reverse .container {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .feature-video,
  .features-left img,
  .features-left .feature-videos {
    height: auto;
  }

  /* Ürün slider: kaydırılacak öğe genişliği ekran genişliğine göre ayarlanır */
  .swiper-products .swiper-slide {
    width: 80vw;
  }

  /* İletişim bölümü: kenar boşluk ve iç boşluk küçülür, sütunlar alt alta dizilir */
  .contact-section {
    margin: 20px 10px;
    padding: 20px 10px;
  }

  .contact-section .container {
    flex-direction: column;
    gap: 15px;
  }

  .contact-info,
  .contact-section form {
    flex: 1 1 100%;
  }

  /* Kategoriler bölümü: tek sütun düzeni */
  .collection-menu {
    flex-direction: column;
    gap: 15px;
    padding: 15px;
  }

  .collection-menu .card {
    flex: 1 1 100%;
    height: auto;
  }

  .custom-cards {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 10px;
    margin: 40px auto;
  }

  .resim-cevre {
    padding: 80px 10px;
  }

  .resim-cevre .rc-content h1 {
    font-size: 2rem;
  }

  .resim-cevre .rc-img {
    display: none;
  }

  #back-to-top {
    bottom: 20px;
    right: 20px;
    padding: 8px 12px;
    font-size: 16px;
  }

  .subscribe-card {
    top: 10px;
    right: 10px;
    left: 10px;
    width: auto;
  }
}

/* Mobil için submenu ayarları */
@media (max-width: 768px) {
  .collection-menu .card .submenu {
    padding: 15px 8px;
  }

  .collection-menu .card .submenu li {
    margin: 3px 0;
    font-size: 1rem;
  }

  .collection-menu .card .submenu li a {
    font-size: 0.9rem;
    padding: 4px 6px;
  }
}

/* Extra small devices */
@media (max-width: 480px) {
  .features-right h2 {
    font-size: 1.8rem;
  }

  .custom-card h2 {
    font-size: 1.5rem;
  }

  .collection-menu .card .card-title {
    font-size: 1.4rem;
  }

  .angled-header h2 {
    font-size: 2rem;
  }

  .split-part span {
    font-size: 2rem;
  }

  .split-part:hover span {
    font-size: 2.2rem;
  }

  .feature-video,
  .feature-video1,
  .features-left .feature-videos {
    height: auto;
    min-height: 180px;

    border-radius: var(--radius-medium); /* Daha küçük border radius */
  }

  .features-section .container {
    padding: 10px 5px;
  }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .collection-menu .card img,
  .custom-card--image {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .collection-menu .card:hover {
    transform: none;
  }

  .custom-card:hover {
    transform: none;
  }
}

/* Print styles */
@media print {
  .main-nav,
  .main-footer,
  #back-to-top,
  .subscribe-card {
    display: none !important;
  }

  .container {
    max-width: none;
    padding: 0;
  }

  .features-section {
    page-break-inside: avoid;
  }
}
.center-text {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100%; /* Kartın ortasında durması için */
}