* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #0b0f14;
  color: #fff;
  overflow-x: hidden;
}


/* ==================== MOBİL DÜZELTİLMİŞ MİNİMALİST HEADER ==================== */
.main-header {
  width: 100%;
  background: rgba(11, 15, 20, 0.85);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 255, 255, 0.1);
}

.main-header.shrink {
  padding: 10px 0;
  background: rgba(11, 15, 20, 0.95);
  backdrop-filter: blur(15px);
}

/* ÜRÜNLER DROPDOWN – Profesyonel & Neon */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropbtn {
  cursor: pointer;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 920px;
  background: rgba(15, 20, 30, 0.98);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 20px;
  padding: 30px;
  margin-top: 15px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-10px);
  transition: all 0.4s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  z-index: 9999;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.dropdown-card {
  background: rgba(20, 25, 40, 0.7);
  border-radius: 16px;
  overflow: hidden;
  text-align: center;
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 255, 255, 0.1);
  padding: 15px;
}

.dropdown-card:hover {
  transform: translateY(-10px) scale(1.05);
  background: rgba(30, 35, 60, 0.9);
  box-shadow: 0 15px 40px rgba(0, 255, 255, 0.3);
  border-color: #00ffff;
}

.dropdown-card img {
  width: 100%;
  height: 100px;
  object-fit: contain;
  margin-bottom: 10px;
  border-radius: 10px;
}

.dropdown-card h4 {
  font-size: 14px;
  color: #fff;
  margin: 8px 0;
}

.dropdown-footer {
  text-align: center;
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 255, 255, 0.2);
}

.dropdown-footer a {
  color: #00ffff;
  font-weight: 600;
  text-decoration: none;
  font-size: 15px;
}

.dropdown-footer a:hover {
  text-decoration: underline;
}

/* Mobil – Tam ekran dropdown */
@media (max-width: 992px) {
  .dropdown-menu {
    width: 96vw;
    left: 2vw;
    transform: none;
    padding: 20px;
  }
  .dropdown-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}
/* Masaüstü: Logo ve menü ortada */
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.brand {
  font-size: clamp(30px, 4.5vw, 36px);
  font-weight: 800;
  letter-spacing: 4px;
  color: #fff;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.4);
  margin-bottom: 8px;
}

.brand span {font-family: "AngillaTattoo", sans-serif; color: #00ffff; }

.hamburger {
  display: none;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #00ffff;
  border-radius: 2px;
  transition: all 0.4s ease;
}

.menu {
  display: flex;
  gap: 36px;
  margin-top: 4px;
}

.menu a {
  color: #bbd;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1.2px;
  position: relative;
  transition: all 0.3s;
}

.menu a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: #00ffff;
  transition: width 0.4s ease;
  transform: translateX(-50%);
}

.menu a:hover {
  color: #ffffff;
  text-shadow: 0 0 6px rgba(0, 255, 255, 0.5);
}

.menu a:hover::after {
  width: 80%;
}

/* MOBİL – TAM DÜZELTME */
@media (max-width: 768px) {
  .main-header {
    padding: 12px 0;
  }

  /* Mobilde logo solda, hamburger sağda */
  .header-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .brand {
    margin-bottom: 0;
    font-size: clamp(26px, 5vw, 32px);
  }

  .hamburger {
    display: flex;
  }

  /* Menü overlay – tam ekran ve linkler TAM ORTADA */
  .menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(11, 15, 20, 0.98);
    display: flex;
    flex-direction: column;
    align-items: center;     /* Yatay ortala */
    justify-content: center; /* Dikey ortala */
    gap: 50px;
    transform: translateY(-100%);
    transition: transform 0.5s ease;
    z-index: 1000;
    padding: 0;
    margin: 0;
  }

  .menu.active {
    transform: translateY(0);
  }

  .menu a {
    font-size: 28px;
    color: #fff;
    text-align: center;
  }

  .menu a::after {
    height: 2px;
    left: 50%;
    transform: translateX(-50%);
  }

  /* Hamburger → X animasyonu mükemmel ortalanmış */
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
  }
}

/* SLIDER – aynı kalıyor */
.hero-slider {
  position: relative;
  width: 100%;
  height: clamp(400px, 70vh, 620px);
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}

.slide.active { opacity: 1; }

.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  padding: 0 20px;
  max-width: 900px;
}

.badge {
  background: #ffc107;
  color: #000;
  padding: 10px 24px;
  font-weight: bold;
  border-radius: 4px;
  margin-bottom: 20px;
  display: inline-block;
}

.slide-content h2 {
  font-size: clamp(22px, 4.5vw, 34px);
  line-height: 1.2;
}

.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  color: #fff;
  border: none;
  font-size: 32px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
}

.nav.prev { left: 20px; }
.nav.next { right: 20px; }

.nav:hover { background: #00ffff; color: #000; }

@media (max-width: 768px) {
  .nav { width: 50px; height: 50px; font-size: 26px; }
}

/* ==================== ÜRÜNLER SECTION ==================== */
.product-section {
  padding: 80px 40px;
  background: linear-gradient(180deg, #0b1220, #070c17);
  color: #fff;
}

.section-title {
  text-align: center;
  font-size: clamp(32px, 5vw, 44px);
  font-weight: 800;
  margin-bottom: 60px;
  letter-spacing: 1px;
  color: rgb(13, 166, 204);
}

.carousel-wrapper {
   position: relative; /* butonların referans alacağı container */
  display: flex;
  align-items: center;
  overflow: visible; /* butonların kırpılmasını engelle */
  padding: 10px 0;
}

.product-carousel {
 display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px;
  scrollbar-width: none;
  flex-wrap: nowrap; /* kartların tek satırda kalması için kritik */
}

.product-carousel::-webkit-scrollbar {
  display: none;
}

/* ÜRÜN KARTI */
.product-card {
  flex: 0 0 300px; /* 🔥 Kart sabit, alta düşmez */
  background: linear-gradient(180deg, #000000, #8112ff);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(4, 168, 218, 0.4);
  transition: transform .3s;
  position: relative;   /* 🔑 şart */
  overflow: hidden;     /* 🔑 şart */
   display: flex;
  flex-direction: column;
}
/* IŞIK ÇİZGİSİ */
.product-card::before {
  content: "";
  position: absolute;
  top: -120%;
  left: -40%;
  width: 200%;
  height: 120%;
  background: linear-gradient(
    120deg,
    transparent 40%,
    rgba(79,195,255,0.7),
    transparent 60%
  );
  opacity: 0;
  pointer-events: none;
}

.product-card:hover::before {
  animation: lightSweep 0.9s ease-in-out;
  opacity: 1;
}

@keyframes lightSweep {
  0% {
    top: -120%;
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  100% {
    top: 120%;
    opacity: 0;
  }
}

.product-card:hover {
  transform: translateY(-8px);
  
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  background: #fff;
  border-radius: 14px;
}

.product-card h3 {
  margin: 15px 0 8px;
}

.product-card p {
  font-size: 14px;
  opacity: .8;
  min-height: 60px;   /* 🔑 KRİTİK */
}

.product-carousel .product-card button {
  margin-top: auto;
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  background: linear-gradient(135deg, #2979ff, #ca340f);
  background-size: 200% 200%;
  transition: background-position 0.5s ease, transform 0.3s ease, box-shadow 0.3s ease;
    
    
}

.product-carousel .product-card button:hover {
  background-position: right center;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(114, 2, 158, 0.4);
}

.product-carousel .product-card button:active {
  transform: scale(0.97);
}
/* HOVER EFEKTİ */
.product-card button:hover {
  background-position: right center;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(114, 2, 158, 0.4);
}

/* AKTİF (TIKLAMA) */
.product-card button:active {
  transform: scale(0.97);
}
/* TAG */
/* TAG */
.product-carousel .tag {
  display: inline-flex;      /* önemli */
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 999px;
  margin-top: 10px;
  width: fit-content;
  max-width: 80%;
  white-space: nowrap;
  margin-bottom: 10px;
}
.tag.blue { background: #2979ff; }
.tag.green { background: #2ecc71; }
.tag.orange { background: #f39c12; }
.tag.red { background: #e74c3c; }
.tag.yellow { background: #f1c40f; }

.carousel-wrapper .carousel-btn {
  position: absolute;           /* container'a göre konumlanır */
  top: 50%;                     /* dikeyde ortala */
  transform: translateY(-50%);  /* tam ortalamak için */
  bottom: auto;
  margin: 0;
  background: rgba(255, 5, 5, 0.08);
  border: none;
  color: #fff;
  font-size: 28px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.4);
  transition: background .2s, transform .08s;
}

/* sol/sağ pozisyonu */
.carousel-wrapper .carousel-btn.left  { left: 10px;  }
.carousel-wrapper .carousel-btn.right { right: 10px; }

.carousel-wrapper .carousel-btn:hover {
  background: #2979ff;
  transform: translateY(-50%) scale(1.03);
}

/* Küçük ekranlarda butonları alt tarafa taşı (isteğe bağlı) */
@media (max-width: 768px) {
  .carousel-wrapper .carousel-btn {
    top: auto;
    bottom: 12px;
    transform: none;
    width: 46px;
    height: 46px;
  }
  .carousel-wrapper .carousel-btn.left  { left: 12px;  }
  .carousel-wrapper .carousel-btn.right { right: 12px; }
}




/* Product Modal */
.product-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.product-modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
}

.modal-content {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: 90%;
  max-width: 1000px;
  max-height: 90vh;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  transition: transform 0.4s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.product-modal.active .modal-content {
  transform: translate(-50%, -50%) scale(1);
}

.modal-close {
  position: absolute;
  top: 20px; right: 25px;
  width: 50px; height: 50px;
  background: rgba(0,0,0,0.6);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 28px;
  cursor: pointer;
  z-index: 10;
  transition: 0.3s;
}

.modal-close:hover {
  background: var(--primary-color, #6e00ff);
}

.modal-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  padding: 40px;
    flex: 1;                             /* ✅ EKLE */
  overflow-y: auto;                    /* ✅ EKLE */
  -webkit-overflow-scrolling: touch;   /* ✅ EKLE */
  
}

.productDetailSwiper {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.productDetailSwiper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #f8f8f8;
}

.modal-info h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #333;
}

.modal-info p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 25px;
}

.modal-features {
  list-style: none;
  padding: 0;
}

.modal-features li {
  padding: 8px 0;
  position: relative;
  padding-left: 25px;
  color: #555;
}

.modal-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #6e00ff;
  font-weight: bold;
}

/* Mobil için */
@media (max-width: 768px) {
  .modal-body {
    grid-template-columns: 1fr;
    padding: 20px;
  }
  .modal-content {
    
    max-height: 95vh;
  }
}




/* Premium Hakkımızda */
.premium-about {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background: linear-gradient(135deg, #0a0a1a 0%, #111122 100%);
}

.about-bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(110, 0, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
  animation: pulse 8s ease-in-out infinite;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.about-left {
  text-align: left;
}

.breathing-logo {
  width: 320px;
  height: 320px;
  margin-bottom: 20px;
  position: relative;
}

.logo-breathing {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(110, 0, 255, 0.6));
  animation: breathing 4s ease-in-out infinite;
}

.about-title {
  font-size: 3.5rem;
  margin-bottom: 30px;
  background: linear-gradient(90deg, #fff, #8a2be2, #00ffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 20px rgba(138, 43, 226, 0.5);
}

.about-desc {
  font-size: 1.3rem;
  line-height: 1.9;
  color: #ccc;
  margin-bottom: 25px;
  opacity: 0.95;
}

/* Özellik Kartları */
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.feature-card {
  background: rgba(20, 20, 40, 0.6);
  border: 1px solid rgba(110, 0, 255, 0.3);
  border-radius: 20px;
  padding: 35px 25px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.5s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.feature-card:hover {
  transform: translateY(-15px);
  border-color: #8a2be2;
  box-shadow: 0 25px 50px rgba(138, 43, 226, 0.4);
  background: rgba(30, 30, 60, 0.8);
}

.feature-icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: #8a2be2;
  filter: drop-shadow(0 0 15px rgba(138, 43, 226, 0.6));
  transition: all 0.4s;
}

.feature-card:hover .feature-icon {
  transform: scale(1.2);
  color: #00ffff;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #fff;
  background: linear-gradient(90deg, #8a2be2, #00ffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.feature-card p {
  font-size: 1.1rem;
  color: #bbb;
  line-height: 1.7;
}

/* Mobil için 1 sütun */
@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* Animasyonlar */
@keyframes breathing {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

@keyframes pulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 0.9; }
}

/* Mobil */
@media (max-width: 992px) {
  .about-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .breathing-logo {
    margin: 0 auto 40px;
  }
}

/* ===========================
   HEADER AUTO HIDE + BLUR
=========================== */
/* YENİ: HEADER SABİT + SADECE BLUR/KOYULUK EFEKTİ */
.main-header {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: rgba(11, 15, 20, 0.85); /* Sabit opaklık, değişmesin */
  backdrop-filter: blur(20px); /* Başlangıçta hafif blur */
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.5s ease; /* Geçiş yumuşak olsun */
  border-bottom: 1px solid rgba(0, 255, 255, 0.1);
  padding: 16px 0;
}

/* Scroll edince daha koyu + blur artsın */
.main-header.scrolled {
  backdrop-filter: blur(30px) !important; /* Çok bulanık, cam gibi efekt */
  -webkit-backdrop-filter: blur(30px) !important;
  background: rgba(59, 0, 56, 0.8); /* Hafif daha şeffaf bile yapabilirsin (isteğe bağlı) */
  padding: 14px 0; /* Biraz incelsin */
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6); /* Gölge artsın, derinlik versin */
}

/* İçerik header’ın altına kaymasın diye body’ye boşluk */
body {
  padding-top: 90px; /* Header yüksekliğine göre ayarla (mobilde daha az olabilir) */
}

@media (max-width: 768px) {
  body {
    padding-top: 80px;
  }
  .main-header.scrolled {
    padding: 10px 0;
  }
}
/*3D EFFECTS*/


.fm-depth {
  position: relative;
  transform: translateZ(0);
  transition:
    transform 0.35s cubic-bezier(.22,.61,.36,1),
    box-shadow 0.35s ease;
}

/* Normal durum */
.fm-depth {
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

/* Hover – öne çıkma */
.fm-depth:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow:
    0 25px 60px rgba(88, 3, 158, 0.55),
    0 0 0 1px rgba(129, 18, 255, 0.25);
}

/* Kullanım Alanları Bölümü */
.sectors-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #0a0a1a 0%, #111122 100%);
  position: relative;
}

.sectors-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(110, 0, 255, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 50px 30px;
  max-width: 1400px;
  margin: 60px auto 0;
  padding: 0 40px;
}

.sector-item {
  text-align: center;
  transition: all 0.5s ease;
}

.sector-item:hover {
  transform: translateY(-15px);
}

.sector-image {
  width: 180px;
  height: 180px;
  margin: 0 auto 25px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid rgba(110, 0, 255, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  transition: all 0.5s ease;
}

.sector-item:hover .sector-image {
  border-color: #8a2be2;
  box-shadow: 0 20px 50px rgba(138, 43, 226, 0.5);
  transform: scale(1.1);
}

.sector-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.sector-item:hover .sector-image img {
  transform: scale(1.15);
}

.sector-item h3 {
  font-size: 1.2rem;
  color: #fff;
  background: linear-gradient(90deg, #8a2be2, #00ffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}

/* Mobil optimizasyon */
@media (max-width: 768px) {
  .sectors-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .sector-image {
    width: 140px;
    height: 140px;
  }
}

@media (max-width: 480px) {
  .sectors-grid {
    grid-template-columns: 1fr;
  }
}

/* Floating Contact Buttons - Düzeltilmiş Versiyon */
.floating-contact {
  position: fixed;
  right: 30px;
  bottom: 5px;
  top: auto;
  transform: none;
  z-index: 9999;
}

.floating-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

.float-btn {
  width: 56px;
  height: 56px;
  background: rgba(20, 20, 40, 0.85);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  border: 2px solid rgba(110, 0, 255, 0.4);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
  opacity: 0;
  transform: translateX(100px);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.floating-buttons.active .float-btn {
  opacity: 1;
  transform: translateX(0);
}

.floating-buttons.active .float-btn:nth-child(1) { transition-delay: 0.1s; }
.floating-buttons.active .float-btn:nth-child(2) { transition-delay: 0.2s; }
.floating-buttons.active .float-btn:nth-child(3) { transition-delay: 0.3s; }
.floating-buttons.active .float-btn:nth-child(4) { transition-delay: 0.4s; }
.floating-buttons.active .float-btn:nth-child(5) { transition-delay: 0.5s; }

.float-btn:hover {
  transform: translateY(-10px) scale(1.15);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8);
}

.whatsapp:hover { border-color: #25D366; color: #25D366; }
.instagram:hover { border-color: #E4405F; color: #E4405F; }
.phone:hover { border-color: #00ffff; color: #00ffff; }
.mail:hover { border-color: #8a2be2; color: #8a2be2; }
.float-btn.facebook:hover {border-color: #1877f2 ;color: #1877f2 }
  

  /* Floating social icons – alt çizgi kaldırma */
.floating-buttons a,
.floating-buttons a:visited,
.floating-buttons a:hover,
.floating-buttons a:active {
  text-decoration: none !important;
  border-bottom: none !important;
}
  
  


.floating-toggle {
  width: 66px;
  height: 66px;
  background: linear-gradient(135deg, #8a2be2, #00ffff);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  cursor: pointer;
  box-shadow: 0 10px 35px rgba(138, 43, 226, 0.7);
  transition: all 0.4s ease;
}

.floating-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 45px rgba(138, 43, 226, 0.9);
}

.floating-toggle.active {
  transform: rotate(45deg);
}

/* Mobil */
@media (max-width: 992px) {
  .floating-contact {
    right: 20px;
    bottom: 30px;
    top: auto;
    transform: none;
  }
  .floating-buttons {
    margin-bottom: 15px;
  }
}

/* Mobilde Carousel → Dikey Liste Dönüşümü */
@media (max-width: 992px) {
  .mobile-stack {
    display: flex !important;
    flex-direction: column !important; /* Dikey dizilim */
    align-items: center;
    gap: 30px;
    overflow-x: visible !important; /* Yatay kaydırma kapanır */
    scroll-snap-type: none !important;
    padding: 20px;
  }

  .mobile-stack .product-card {
    min-width: unset !important;
    max-width: 320px !important; /* Mobilde maksimum genişlik */
    width: 100% !important; /* Tam genişlik alsın */
    margin: 0 auto; /* Ortala */
  }

  /* Ok butonlarını mobilde gizle (artık gerek yok) */
  .carousel-btn {
    display: none !important;
  }

  /* Bölüm başlığı biraz küçülsün */
  .section-title {
    font-size: 2.4rem;
  }
}

@media (max-width: 480px) {
  .mobile-stack .product-card {
    max-width: 280px !important;
    padding: 20px;
  }

  .mobile-stack .product-card img {
    width: 160px;
    height: 160px;
  }
}

/* İletişim Bölümü */
.contact-section {
  padding: 140px 0;
  background: linear-gradient(135deg, #0a0a1a 0%, #111122 100%);
  position: relative;
}

.contact-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(110, 0, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.contact-intro {
  text-align: center;
  font-size: 1.5rem;
  color: #ccc;
  margin: 30px auto 80px;
  max-width: 800px;
  line-height: 1.8;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px; /* Boşluk artır (önceki 80px’ti) */
  max-width: 1600px; /* Daha geniş ekranlarda ferah dursun (önceki 1400px) */
  margin: 0 auto;
  padding: 0 60px; /* Yan boşluklar artsın */
}
.contact-form-wrapper,
.contact-info-wrapper {
  width: 100%;
}
.contact-form-wrapper {
  background: rgba(20, 20, 40, 0.6);
  border-radius: 24px;
  padding: 60px; /* İç boşluk artır (önceki 50px) */
  max-width: 600px; /* Form biraz daha geniş */
  margin: 0 auto 0 0; /* Soldan yasla */
}

.contact-info-wrapper {
  max-width: 600px;
  margin: 0 0 0 auto; /* Sağdan yasla */
}

.contact-details {
  padding: 50px; /* İç boşluk artır */
}
.contact-form .form-group {
  margin-bottom: 25px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 18px 20px;
  border-radius: 12px;
  border: 1px solid rgba(110, 0, 255, 0.4);
  background: rgba(10, 10, 30, 0.6);
  color: #fff;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #8a2be2;
  box-shadow: 0 0 20px rgba(138, 43, 226, 0.4);
}

.contact-form textarea {
  resize: vertical;
}

.submit-btn {
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, #8a2be2, #00ffff);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1.3rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(138, 43, 226, 0.4);
}

.submit-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(138, 43, 226, 0.6);
}

.form-message {
  margin-top: 20px;
  text-align: center;
  font-size: 1.2rem;
  font-weight: bold;
  background-color: #00aaff;
}
/* Hakkımızda Dropdown – Header’da */
.hakkimizda-dropdown .dropdown-menu {
  width: 380px;
  padding: 30px;
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
}

.mv-inline-buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mv-btn-inline {
  padding: 16px 30px;
  font-size: 1.3rem;
  font-weight: 600;
  background: linear-gradient(135deg, #8a2be2, #00ffff);
  color: white;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(138, 43, 226, 0.4);
  transition: all 0.4s ease;
}

.mv-btn-inline:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 20px 50px rgba(138, 43, 226, 0.6);
}

/* Modal (Popup) */
.mv-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
}

.mv-modal.active {
 display: flex;
  align-items: flex-start;     /* Üstten hizala, ortalamayı kaldır */
  justify-content: center;
  padding-top: 60px;           /* Üstten 60px boşluk ver */
  padding-bottom: 60px;
}

.mv-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
}

.mv-modal-content {
  position: relative;
  background: rgba(20, 20, 40, 0.95);
  border: 2px solid rgba(0, 255, 255, 0.3);
  border-radius: 24px;
  width: 90%;
  max-width: 700px;
  max-height: 85vh;              /* Ekranın %85'ini geçmesin */
  padding: 60px 50px 50px;       /* Üstten daha fazla boşluk veriyoruz */
  margin: 40px auto;             /* Üstten otomatik boşluk */
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
  overflow-y: auto;              /* Taşarsa kaydırılabilir */
  transform: scale(0.95);
  transition: transform 0.4s ease;
}

.mv-modal.active .mv-modal-content {
  transform: scale(1);
}

.mv-close {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 40px;
  color: #00ffff;
  cursor: pointer;
  transition: 0.3s;
}

.mv-close:hover {
  color: #ff3b3b;
  transform: rotate(90deg);
}

.mv-modal-content h2 {
  font-size: 2.6rem;
  margin-bottom: 35px;           /* Başlık ile metin arası daha ferah */
  text-align: center;
  background: linear-gradient(90deg, #00ffff, #8a2be2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mv-modal-content p {
  font-size: 1.25rem;
  line-height: 1.9;
  color: #ddd;
  margin-bottom: 30px;
}

.mv-modal-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mv-modal-content li {
  font-size: 1.2rem;
  color: #eee;
  margin: 18px 0;
  padding-left: 35px;
  position: relative;
}

.mv-modal-content li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 2px;
  color: #00ffff;
  font-size: 1.4rem;
}

/* Mobilde daha fazla boşluk */
@media (max-width: 768px) {
  .mv-modal.active {
    padding: 20px;
  }
  
  .mv-modal-content {
    padding: 40px 30px;
    max-height: 90vh;
  }
}


/* ÜRÜN SELECT DROPDOWN – Neon Tema Uyumlu */
.form-group select {
  width: 100%;
  padding: 18px 20px;
  border-radius: 12px;
  border: 1px solid rgba(110, 0, 255, 0.4);
  background: rgba(10, 10, 30, 0.8) !important; /* Koyu arka plan */
  color: #ccc !important; /* Soluk yazı (placeholder gibi) */
  font-size: 1.1rem;
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2300ffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

/* Focus'ta neon glow */
.form-group select:focus {
  outline: none;
  border-color: #8a2be2;
  box-shadow: 0 0 20px rgba(138, 43, 226, 0.5);
  color: #fff !important;
  box-shadow: 0 0 25px rgba(138, 43, 226, 0.6);
}

/* Açılan seçenekler (dropdown listesi) */
.form-group select option {
  background: rgba(15, 15, 35, 0.98) !important; /* Koyu mor-siyah arka plan */
  color: #ddd !important;
  padding: 12px 20px;
  font-size: 1rem;
}

/* Hover'da seçenekler */
.form-group select option:hover {
  background: rgba(138, 43, 226, 0.6) !important; /* Mor neon hover */
  color: #00ffff !important;
}

/* Placeholder (ilk seçenek) daha soluk olsun */
.form-group select option[disabled] {
  color: #888 !important;
}

/* Sağ Taraf */
.contact-info-wrapper .contact-map {
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(110, 0, 255, 0.3);
}

.contact-details {
  background: rgba(20, 20, 40, 0.6);
  border-radius: 24px;
  padding: 40px;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(110, 0, 255, 0.3);
}

.detail-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  gap: 20px;
}

.detail-item i {
  font-size: 2rem;
  color: #8a2be2;
  margin-top: 5px;
}

.detail-item strong {
  color: #fff;
  display: block;
  margin-bottom: 8px;
}

.detail-item p,
.detail-item a {
  color: #ccc;
  margin: 0;
  text-decoration: none;
  transition: color 0.3s;
}

.detail-item a:hover {
  color: #00ffff;
}

/* Mobil */
@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .contact-form-wrapper,
  .contact-details {
    padding: 40px 30px;
  }

  .contact-intro {
    font-size: 1.3rem;
  }
}
/* İletişim Bölümü - Mobil Orantı Düzeltme */
@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr !important; /* Tek sütun */
    gap: 50px;
  }

  /* Form üstte tam genişlik */
  .contact-form-wrapper {
    padding: 40px 30px;
    margin: 0 auto;
    max-width: 500px;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 20px;
    font-size: 1.1rem;
  }

  .submit-btn {
    padding: 20px;
    font-size: 1.4rem;
  }

  /* Harita tam genişlik */
.contact-map {
  height: 150px; /* Masaüstünde küçült */
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(110, 0, 255, 0.3);
}

.contact-map iframe {
  width: 100%;
  height: 100%; /* Tam doldursun */
  border: none;
  border-radius: 20px;
}

  /* İletişim bilgileri ortalı kart */
  .contact-details {
    padding: 40px 30px;
    margin: 0 auto;
    max-width: 500px;
  }

  .detail-item {
    justify-content: center;
    text-align: center;
    flex-direction: column;
  }

  .detail-item i {
    margin-bottom: 15px;
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .contact-form-wrapper,
  .contact-details {
    padding: 30px 20px;
    border-radius: 20px;
  }

  .contact-map {
    height: 300px !important;
  }

  .contact-map iframe {
    height: 300px !important;
  }

  .contact-intro {
    padding: 0 20px;
    font-size: 1.2rem;
  }
}
/* Form Altındaki Logo */
.form-logo {
  text-align: center;
  margin-top: 110px; /* Butonla logo arası boşluk */
  padding: 20px 0;
}

.form-logo-img {
  width: 300px;
  height: 300px;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(110, 0, 255, 0.6));
  animation: breathing 4s ease-in-out infinite;
  opacity: 0.9;
  transition: all 0.4s ease;
}

.form-logo-img:hover {
  opacity: 1;
  filter: drop-shadow(0 0 30px rgba(138, 43, 226, 0.8));
}

/* Breathing animasyonu (zaten varsa tekrar yazma, yoksa ekle) */
@keyframes breathing {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

/* Mobilde logo biraz küçülsün */
@media (max-width: 768px) {
  .form-logo {
    margin-top: 40px;
  }

  .form-logo-img {
    width: 140px;
    height: 140px;
  }
}

@media (max-width: 480px) {
  .form-logo-img {
    width: 120px;
    height: 120px;
  }
}


/* ===============================
   MOBİL GTRANSLATE – HAMBURGER ÇAKIŞMA DÜZELTME
================================ */

@media (max-width: 768px) {
header {
  position: relative;
}
  .header-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
  .header-inner {
    position: relative;
  }

  .gtranslate_wrapper {
   position: static !important;
    transform: none !important;
    display: flex;
    gap: 6px;
    right: auto !important;
    left: 70% !important;
  }

  .gtranslate_wrapper img {
    width: 22px !important;
    height: auto !important;
    display: block !important;
  }

  .hamburger {
    position: absolute;
    right: 15px;
    top: 12px;
    z-index: 1001;
  }
}


 /*FOOTER*/
footer {
            background-color: #000;
            color: #fff;
            padding: 70px 40px 40px;
        }

        .footer-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 50px;
            align-items: start;
        }

        .footer-logo {
            font-size: 40px;
            font-weight: bold;
            color: #fff;
            margin-bottom: 40px;
            letter-spacing: 1px;
        }

        .column-title {
            color: #00ffff; /* Turkuaz */
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 30px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }

        .footer-links ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links ul li {
            margin-bottom: 18px;
        }

        .footer-links ul li a {
            color: #aaa;
            text-decoration: none;
            font-size: 16px;
            transition: color 0.3s;
            display: flex;
            align-items: center;
        }

        .footer-links ul li a i {
            color: #00ffff;
            margin-right: 12px;
            font-size: 14px;
        }

        .footer-links ul li a:hover {
            color: #00ffff;
        }

        .contact-info .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            color: #aaa;
            font-size: 16px;
        }

        .contact-info .contact-item i {
            color: #00ffff;
            margin-right: 12px;
            font-size: 18px;
            width: 22px;
        }

        .social-icons {
            margin-top: 50px;
            display: flex;
            gap: 18px;
        }

        .social-icons a {
            color: #00ffff;
            font-size: 26px;
            transition: all 0.3s;
        }

        .social-icons a:hover {
            color: #fff;
            transform: translateY(-5px);
        }

        .footer-divider {
            border-top: 1px solid #333;
            margin: 60px 0 30px;
        }

        .copyright {
            text-align: center;
            color: #888;
            font-size: 15px;
        }

        @media (max-width: 992px) {
            .footer-wrapper {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .footer-wrapper {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .social-icons {
                justify-content: center;
            }
            .contact-info .contact-item,
            .footer-links ul li a {
                justify-content: center;
            }
        }

/* Modal Mobil Düzenleme */
/* =========================
   MOBİL HEADER HİZALAMA FIX
   ========================= */
@media (max-width: 768px) {

  .main-header {
    position: relative;
    z-index: 1000;
  }

  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 12px 14px;
  }

  /* ☰ HAMBURGER — SOL */
  .hamburger {
    order: 1;
    position: relative;
    z-index: 20;
  }

  /* LOGO YAZISI — TAM ORTA */
  .brand {
    order: 2;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    white-space: nowrap;
    z-index: 10;
  }

  /* BAYRAKLAR — SAĞ */
  .gtranslate_wrapper {
    order: 3;
    position: relative;
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  /* GTranslate iç elemanlar taşmasın */
  .gtranslate_wrapper img,
  .gtranslate_wrapper a {
    display: inline-flex !important;
    align-items: center;
  }

/* =========================
   HAMBURGER → X ANİMASYONU
   ========================= */
/* HAMBURGER → X */
.hamburger {
  width: 30px;
  height: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  height: 3px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s ease;
}

/* MENÜ AÇIKKEN */
.hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

}
/* ================= MOBİL ÜRÜN KARTI İÇERİK FIX ================= */
@media (max-width: 992px) {

  .mobile-stack .product-card {
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
  }

  .mobile-stack .product-card * {
    overflow: visible !important;
  }

  .mobile-stack .product-card-content {
    height: auto !important;
    max-height: none !important;
  }

}

@media (max-width: 480px) {
  .mobile-stack .product-card {
    max-width: 280px !important;
    padding: 20px;
    height: auto !important;
  }

  .mobile-stack .product-card img {
    width: 160px;
    height: auto; /* 🔥 ORANI BOZMA */
    max-height: 160px;
    object-fit: contain;
  }
}

/* ÜRÜN SEO GÖRSEL ALAN */
.product-seo {
  max-width: 100%;
  margin: 0;
  position: relative;
  padding: 100px 20px 120px;
  background: linear-gradient(
    to bottom,
    rgba(5, 10, 15, 0.95),
    rgba(5, 10, 15, 0.9),
    rgba(5, 10, 15, 0.95)
  );
}
.product-seo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at top center,
    rgba(0, 255, 255, 0.08),
    transparent 60%
  );
  pointer-events: none;
}
.product-seo h2 {
  text-align: center;
  font-size: 30px;
  margin-bottom: 50px;
  letter-spacing: 0.5px;
}
.product-seo > h2,
.product-seo-grid {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* Grid yapı */
.product-seo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

/* Kart görünümü */
.seo-card {
  background: linear-gradient(
    160deg,
    rgba(10, 25, 35, 0.85),
    rgba(5, 10, 15, 0.9)
  );
  border: 1px solid rgba(0, 255, 255, 0.18);
  border-radius: 18px;
  padding: 28px 26px;
  transition: all 0.35s ease;
}


.seo-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 255, 255, 0.7);
  box-shadow: 0 10px 30px rgba(0, 255, 255, 0.15);
}

/* Başlık */
.seo-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #00cfd1; /* Ürünlerim Yelpazesi accent rengi */
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.3px;
}

/* İkon */
.seo-card h3::before {
  content: "⚙";
  font-size: 18px;
  color: #00ffff;
  flex-shrink: 0;
}

/* Metin */
.seo-card p {
  font-size: 15px;
  line-height: 1.7;
  opacity: 0.9;
}
