body {
  margin: 0;
  font-family: 'Arial', sans-serif;
}

/* === Üst Bilgi Çubuğu (Top Bar) === */
.top-bar {
  background-color: #b71c1c; /* koyu kırmızı */
  color: #ffffff;
  font-size: 14px;
  display: flex;
  justify-content: center;
  gap: 5%;
  padding: 10px 20px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.top-bar i {
  margin-right: 8px;
  color: #dee29d; /* açık turuncu (soft ikon rengi) */
}

/* === Ana Başlık ve Menü (Main Header) === */
.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 8%;
  background-color: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-area img {
  height: 55px;
  width: auto;
}

.nav-menu ul {
  display: flex;
  gap: 25px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  text-decoration: none;
  color: #b71c1c; /* menü yazısı - koyu kırmızı */
  font-size: 15px;
  font-weight: 530;
  position: relative;
  transition: color 0.3s;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #ff5722; /* turuncuya yakın canlı kırmızı alt çizgi */
  transition: width 0.3s;
}

.nav-menu a:hover {
  color: #ff5722;
}

.nav-menu a:hover::after {
  width: 100%;
}


/* Slider ana kapsayıcı */
.hero-slider {
  width: 100%;
  height: 100vh;
  position: relative;
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
}

/* Swiper container full size */
.swiper {
  width: 100%;
  height: 100%;
}

/* Slide arka plan */
.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s ease, filter 0.7s ease;
  filter: brightness(0.75);
  cursor: grab;
}

/* Aktif slide */
.swiper-slide-active {
  filter: brightness(1);
  transform: scale(1.05);
  cursor: default;
  box-shadow: 0 25px 50px rgba(0, 168, 107, 0.4);
  z-index: 10;
}

.slide-content {
  position: absolute;
  top: 30%;
  left: 30%;
  transform: translate(-50%, -50%);
  padding: 10px 30px;
  border-radius: 20px;
  text-align: center;
  max-width: 700px;
  color: #fff;
  transition: all 0.4s ease;
  animation: fadeInUp 1s ease forwards;
  opacity: 0;
}

.slide-content-gunisi {
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 10px 40px;
  border-radius: 20px;
  text-align: center;
  min-width: 800px;
  color: #fff;
  transition: all 0.4s ease;
  animation: fadeInUp 1s ease forwards;
  opacity: 0;
}

.swiper-slide-active .slide-content {
  opacity: 1;
}

/* Başlık */
.slide-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
  letter-spacing: 1.2px;
  font-family: 'Montserrat', sans-serif;
}

/* Açıklama metni */
.slide-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 25px;
  font-weight: 400;
  color: #f0f0f0;
}

.slide-content-gunisi h2 {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 20px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
  letter-spacing: 1.2px;
  font-family: 'Montserrat', sans-serif;
  color: yellow;

}

/* Açıklama metni */
.slide-content-gunisi p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 25px;
  font-weight: 400;
  color: #f0f0f0;
}

/* Buton */
.cta-button {
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(135deg, #d00000, #a80000);
  border-radius: 50px;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(168, 0, 0, 0.6);
  transition: transform 0.3s ease, background 0.4s ease;
}

.cta-button:hover {
  background: linear-gradient(135deg, #a80000, #7a0000);
  transform: scale(1.08);
}

/* Fade-in animasyonu */
@keyframes fadeInUp {
  from {
    transform: translate(-50%, -40%);
    opacity: 0;
  }
  to {
    transform: translate(-50%, -50%);
    opacity: 1;
  }
}


/* === SWIPER PAGINATION ALANI === */
.swiper-pagination {
  position: absolute !important;
  top: 50% !important;
  left: 30px !important;
  transform: translateY(-50%) !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 80px !important;
  z-index: 30 !important;
  user-select: none;
  width: auto !important;
  box-sizing: content-box;
}

/* Sol kenardaki siyah arka plan çizgisi */
.swiper-pagination::before {
  content: "";
  position: absolute;
  top: -200px;
  left: -30px;
  width: 80px;
  height: 750px;
  background: rgba(255, 0, 0, 0.2); /* Kırmızı ton - şeffaf */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px); /* Safari desteği */
  border-radius: 10px;
  border: 1px solid rgba(255, 0, 0, 0.3);
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
}


/* Noktalar */
.swiper-pagination-bullet {
  position: relative;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 0, 0, 0.7); /* Kırmızı */
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
  box-shadow: 0 4px 10px rgba(255, 0, 0, 0.3);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Aktif nokta */
.swiper-pagination-bullet-active {
  background-color: #ff1a1a;
  box-shadow: 0 0 12px rgba(255, 0, 0, 0.8);
  transform: scale(1.1);
}

/* Noktalar arası çizgi */
.swiper-pagination-bullet:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 30px;
  background-color: rgba(255, 0, 0, 0.5);
  border-radius: 2px;
  transition: background-color 0.3s;
}

/* Sayılar noktaların üstünde */
.swiper-pagination-bullet::before {
  content: attr(data-bullet-label);
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
  pointer-events: none;
}

/* === Ürün Kategorileri Bölümü === */

/* Ürün Kategorileri - Çapraz Kart Yapısı */

.product-categories {
  padding: 50px 20px;
  max-width: 1100px;
  margin: 0 auto;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
}

.product-categories h2 {
  font-size: 32px;
  font-weight: 700;
  color: #e65100;
  text-align: center;
  margin-bottom: 40px;
}

.category-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.category-card {
  display: flex;
  align-items: center;
  background-color: #fff5f0;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(230, 81, 0, 0.15);
  padding: 20px;
  gap: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(230, 81, 0, 0.3);
}

/* Görsel ve metin alanları */
.category-card img {
  width: 50%;
  border-radius: 30px;
  object-fit: contain;
  max-height: 300px;
}

/* Metin içeriği */
.category-card > div {
  width: 55%;
}

.category-card h3 {
  font-size: 24px;
  color: #d84315;
  margin-bottom: 15px;
}

.category-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #5d4037;
  margin-bottom: 20px;
}

.category-card a {
  color: #ff5722;
  text-decoration: none;
  font-weight: 600;
  border: 2px solid #ff5722;
  padding: 8px 18px;
  border-radius: 25px;
  transition: background-color 0.3s, color 0.3s;
}

.category-card a:hover {
  background-color: #ff5722;
  color: #fff;
}

/* Çapraz düzenleme */
/* Tek sayılı kartlar: görsel sağda, metin solda */
.category-card:nth-child(odd) {
  flex-direction: row-reverse;
  text-align: left;
}

/* Çift sayılı kartlar: görsel solda, metin sağda */
.category-card:nth-child(even) {
  flex-direction: row;
  text-align: left;
}

/* Responsive - küçük ekranlarda dikey hizalama */
@media (max-width: 768px) {
  .category-card {
    flex-direction: column !important;
    text-align: center;
  }

  .category-card img,
  .category-card > div {
    width: 100%;
  }

  .category-card img {
    max-height: 200px;
    margin-bottom: 20px;
  }
}

/* Baymak Bölümü */
.baymak {
  padding: 50px 20px;
  background-color: #209479;
  text-align: center;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.baymak img {
  width: 180px;
  margin-bottom: 10px;
}

.baymak p {
  max-width: 900px;
  margin: 0 auto 40px;
  font-size: 18px;
  color: white;
  line-height: 1.6;
}

/* Slider alanı */
.baymak-slider-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  overflow: visible; /* Burayı visible yaptık ki oklar görünür olsun */
}

.baymak-slider {
  display: flex;
  transition: transform 0.5s ease;
  gap: 24px; /* Aralığı artırdık */
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px;
}

.baymak-slider::-webkit-scrollbar {
  display: none;
}
.baymak-slider {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Kart yapısı */
.baymak-card {
  background-color: #ffffff;
  border-radius: 16px;
  flex: 0 0 calc((100% - 60px) / 3); /* 3 kart ve 2 boşluk için tam hesap */
  transition: transform 0.3s ease;
  overflow: visible;
  padding: 20px 0px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

/* Yuvarlak çerçeve */
.baymak-card-image {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 20px;
  background-color: white;
  position: relative;
  z-index: 1;
}

/* Gölge efekti görselin altında olacak şekilde */
.baymak-card-image::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 20px;
  background: rgba(216, 67, 21, 0.15);
  border-radius: 50%;
  filter: blur(6px);
  z-index: -1;
}

/* Görsel */
.baymak-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Başlık */
.baymak-card h3 {
  font-size: 18px;
  color: #d84315;
  margin: 0;
  text-align: center;
}

/* Oklar */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #c2f9ea;
  border: none;
  color: #1B6453;
  font-size: 30px;
  padding: 10px 12px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s;
}

.slider-arrow.left {
  left: -80px; /* Slider wrapper kenarının biraz dışına, görünür kalacak şekilde */
}

.slider-arrow.right {
  right: -80px; /* Slider wrapper kenarının biraz dışına, görünür kalacak şekilde */
}

.slider-arrow:hover {
  background-color: 	#1B6453;
  color: #c2f9ea;
}

@media (max-width: 768px) {
  .baymak {
    padding: 40px 10px;
  }

  .baymak p {
    font-size: 16px;
    margin-bottom: 30px;
    padding: 0 10px;
  }

  .baymak-slider-wrapper {
    overflow-x: auto;
    padding: 0 10px;
  }

  .baymak-slider {
    gap: 10px;
    padding: 0 5px;
  }

  .baymak-card {
    flex: 0 0 80%; 
    padding: 15px 0 20px;
  }

  .baymak-card-image {
    width: 200px;
    height: 200px;
    margin-bottom: 10px;
  }

  .baymak-card h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
  }

  /* Oklar mobilde gizlensin */
  .slider-arrow {
    display: none;
  }
}


.site-footer {
  background-color: #1a1919;
  color: #ffffff;
  padding: 40px 20px 20px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  gap: 30px;
}

.footer-section {
  flex: 1 1 250px;
}

.footer-section h4 {
  font-size: 18px;
  color: #d03d23;
  margin-bottom: 15px;
  text-align: center;
}

.footer-section p,
.footer-section a {
  font-size: 14px;
  color: #ffffff;
  text-decoration: none;
  line-height: 1.6;
  text-align: center;
}

.footer-section a:hover {
  text-decoration: underline;
  color: #c95440;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.footer-links li {
  margin-bottom: 8px;
}

.social-icons {
  display: flex;
  justify-content: center; 
  gap: 30px;
  margin-top: 20px;
}

.social-icons img {
  width: 36px;
  height: 36px;
  transition: transform 0.2s ease;
}

.social-icons img:hover {
  transform: scale(1.15);
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #555;
  padding-top: 15px;
  margin-top: 30px;
  font-size: 14px;
  color: #ccc;
}

@media (max-width: 768px) {
  .site-footer {
    padding: 20px 15px;
    font-size: 16px;
    background-color: #1a1919;
  }

  .footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
  }

  .footer-section {
    margin-bottom: 10px;
  }

  .footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #ff4a3d;
  }

  .footer-section p,
  .footer-section a {
    font-size: 16px;
    line-height: 1.6;
    color: #ccc;
  }

  .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .footer-links li {
    margin-bottom: 6px;
  }

  .social-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
  }

  .social-icons img {
    width: 36px;
    height: 36px;
    border-radius: 30%;
    margin-bottom: -40px;
  }

  .footer-bottom {
    font-size: 12px;
    color: #aaa;
    border-top: 1px solid #444;
    padding-top: 10px;
  }
}

/* ------------------------ */

body {
  animation: fadeIn 1s ease-in;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.main-header.scrolled {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  background-color: #ffffffee;
  backdrop-filter: blur(4px);
}

/* ------------------------ */

/* Hakkımızda Sayfası */
.about-section {
  padding: 80px 20px;
  background-color: #f8f9fa;
}

.about-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 50px;
}

.about-text {
  flex: 1 1 500px;
  max-width: 600px;
}

.about-text h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #2c3e50;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 15px;
}

.about-image {
  flex: 1 1 400px;
  text-align: center;
}

.about-image img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Aktif menü linki */
.nav-links .active {
  color: #e67e22;
  font-weight: bold;
}

.category-card a {
  display: inline-block;
  margin-top: 10px;
  font-weight: bold;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.4s ease;
}

.category-card a:hover {
  color: #fff;
  transform: scale(1.05);
}


/* Dropdown kapsayıcı */
.nav-menu .dropdown {
  position: relative;
}

/* Dropdown menü */
.nav-menu .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ffffff;
  min-width: 140px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  border-radius: 2px;
  padding: 6px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}

/* Menü içindeki elemanlar */
.nav-menu .dropdown-menu li {
  list-style: none;
}

/* Bağlantılar */
.nav-menu .dropdown-menu li a {
  display: block;
  padding: 12px 18px;
  color: #333;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: background-color 0.3s ease, color 0.3s ease;
  border-radius: 4px;
}

/* Hover efekti */
.nav-menu .dropdown-menu li a:hover {
  background-color: #f0f0f0;
  color: #c95440;
}

/* Hover ile açılma animasyonu */
.nav-menu .dropdown:hover .dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Günısı */

/* Hero bölüm arka planı */
.hero-section {
  position: relative;
  width: 100%;
  height: 120px; /* İstersen bu yüksekliği artırabilirsin */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-section img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; 
  z-index: 0;
}

.hero-section h1 {
  position: relative;
  z-index: 1;
  color: white;
  font-size: 46px;
  font-weight: bold;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
  padding: 0 20px;
}

/* Ürün kartları bölümü */
.products-section {
  padding: 40px 20px;
  background-color: #f9f9f9;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 30px auto;
}

.product-card {
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  padding: 30px;
}

.product-card:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.product-card img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  max-height: 320px;
}

.product-name {
  display: inline-block;
  margin-top: 30px;
  margin-bottom: 5px;
  font-size: 17px;
  color: #e24e04;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.3s ease-in-out;
  padding: 0px 10px;
}

.product-name:hover {
  transform: scale(1.04);
}


.kesif-section {
  background-color: #f7f7f7;
  padding: 60px 20px;
  text-align: center;
}

.kesif-container {
  max-width: 600px;
  margin: auto;
  background-color: #fff;
  padding: 20px 40px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.kesif-container h2 {
  font-size: 32px;
  margin-bottom: 10px;
  color: #d1342c;
}

.kesif-container p {
  font-size: 16px;
  margin-bottom: 6px;
  color: #444;
}

.kesif-container .phone-number {
  font-size: 20px;
  font-weight: bold;
  color: #d1342c;
  margin-bottom: 20px;
}

.kesif-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.kesif-form input,
.kesif-form textarea {
  padding: 12px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  width: 100%;
  box-sizing: border-box;
}

.kesif-form textarea {
  resize: vertical;
  height: 70px;
}

.kesif-form button {
  padding: 12px;
  font-size: 16px;
  background-color: #d1342c;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.kesif-form button:hover {
  background-color: #a01009;
}

.kesif-form-button {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  font-size: 16px;
  background-color: #ff4137;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.kesif-form-button:hover {
  background-color: #a01009;
}

.site-footer {
  background-color: #333;
  color: #fff;
  padding: 25px 10px;
  text-align: center;
  font-size: 15px;
}

.footer-container {
  max-width: 1000px;
  margin: 0 auto;
}

.footer-links {
  margin-top: 10px;
}

.footer-links a {
  color: #ccc;
  margin: 0 10px;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #fff;
}


/* İletişim Başlık */
.contact-header {
  background: linear-gradient(135deg, #881f1f, #007bff);
  color: white;
  text-align: center;
  padding: 30px 20px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.contact-header::after {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1), transparent 70%);
  z-index: 0;
  animation: glow 6s infinite linear;
}

@keyframes glow {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(50%);
  }
}

.contact-header h1 {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 1px;
  position: relative;
  z-index: 2;
  margin: 0;
}

/* İletişim Bölümü */
.contact-section {
  padding: 70px 20px;
  background: linear-gradient(to right, #f7f9fc, #ecf1f8);
}

.contact-container {
  max-width: 1300px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 80px;
  align-items: stretch;
}

/* İletişim Bilgileri */
.contact-info {
  flex: 1;
  min-width: 500px;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.75);
  border-radius: 10px;
  padding: 10px 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  color: #2a2a2a;
  transition: all 0.3s ease-in-out;
}

.contact-info:hover {
  transform: scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.contact-info {
  text-align: center;
}

.contact-info h2 {
  font-size: 2rem;
  color: #d02121;
  margin-bottom: 20px;
  border-bottom: 2px solid #d02121;
  display: inline-block;
  padding-bottom: 7px;
}

.contact-info p {
  font-size: 1.1rem;
  line-height: 1.5;
  margin: 12px 20px;
  text-align: left;
}

.contact-info a {
  color: #007bff;
  text-decoration: none;
  font-weight: 500;
}

.contact-info a:hover {
  text-decoration: underline;
}


/* ------------------- */

/* Hizmetlerimiz Başlık */
.services-header {
  background: linear-gradient(90deg, #e21310, #ff9800);
  color: white;
  text-align: center;
  padding: 5px 0;
  font-size: 2rem;
  font-weight: bold;
}

/* Kategori Butonları */
.services-slider {
  background: #fff;
  padding: 30px 20px;
  border-bottom: 1px solid #eee;
}

.category-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.category-container button {
  background-color: #b4100d;
  color: white;
  border: none;
  padding: 12px 28px;
  border-radius: 30px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s ease;
}

.category-container button:hover {
  background-color: #e21310;
  transform: scale(1.05);
}

/* İçerik Alanı */
.service-content {
  padding: 60px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #fefefe;
}

/* Her hizmet kutusu */
.service-box {
  display: none;
  background: #ffffff;
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  padding: 40px 60px;
  margin-bottom: 40px;
  width: 100%;
  max-width: 1200px;
  animation: fadeIn 0.5s ease;
}

.service-box h2 {
  font-size: 2rem;
  color: #b4100d;
  margin-bottom: 20px;
  text-align: center;
}

.service-box p {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 50px;
  text-align: center;
}

/* Slider */
.image-slider {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  border-radius: 10px;
}

.slider-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.slider-track img {
  flex-shrink: 0;
  width: 100%;
  height: 500px;
  object-fit: cover; 
  border-radius: 10px;
}

/* Geçiş efekti */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Responsive */
@media (max-width: 768px) {
  .nav-menu ul {
    flex-direction: column;
    gap: 10px;
  }

  .slider-track {
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .slider-track img {
    min-width: 260px;
    height: 160px;
    scroll-snap-align: center;
  }

  .category-container {
    flex-direction: column;
  }

  .main-header {
    flex-direction: column;
  }

  .logo-area img {
    height: 50px;
  }
}

/* ------  */
.product-detail {
  max-width: 1200px;
  margin: 50px auto 50px;
  padding: 0 20px;
}

.product-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 600;
  color: #ce0d0d;
  margin-bottom: 50px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.container {
  display: flex;
  gap: 100px;
  align-items: flex-start;
  flex-wrap: wrap;
}

/* Sol sütun: Görsel */
.product-images {
  flex: 1 1 400px; 
  max-width: 480px;
  margin-top: 30px;
}

.product-images img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  transition: transform 0.3s ease;
  cursor: zoom-in;
}

.product-images img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0,0,0,0.18);
}

/* Sağ sütun: Metin içerik */
.product-description {
  flex: 1 1 500px;
  color: #333;
}

.product-description h2 {
  color: #d82727;
  margin-bottom: 12px;
  font-weight: 700;
  margin-top: 30px;
  font-size: 1.8rem;
}

.product-description h3 {
  color: #d82727;
  margin-bottom: 12px;
  font-weight: 700;
  border-left: 5px solid #d10e0e;
  padding-left: 12px;
  margin-top: 30px;
}
.product-description p {
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 30px;
}

.product-description ul {
  list-style: disc inside;
  margin-left: 18px;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 25px;
  color: #555;
}


/* Responsive düzenleme */
@media (max-width: 900px) {
  .container {
    flex-direction: column;
    gap: 30px;
  }

  .product-images,
  .product-description {
    max-width: 100%;
    flex: none;
  }

  .product-title {
    font-size: 2.2rem;
    margin-bottom: 30px;
  }
}

.hidden {
  display: none;
}

.toggle-btn {
  width: 50px;
  height: 50px;
  background-color: #d60000; /* Canlı yeşil */
  color: white;
  border: none;
  border-radius: 50%; /* Daire formu */
  font-size: 1.4rem;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}

.toggle-btn:hover {
  background-color: #ff1f1f; /* Hover’da koyu yeşil */
}

.toggle-btn i {
  transition: transform 0.3s ease;
}

.button-container {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}

/* Mobil Uyumlu Stil Ayarları */
@media screen and (max-width: 768px) {
  /* Topbar mobilde görünmesin */
  .top-bar {
    display: none;
  }

  /* Header: Menü hamburger yapısı */
  .main-header {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px;
    flex-wrap: wrap;
  }

  .nav-menu {
    display: none;
    width: 100%;
    margin-top: 10px;
  }

  .nav-menu ul {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }

  .nav-menu.active {
    display: flex;
    flex-direction: column;
  }


  /* Logo sola hizalı kalsın */
  .logo-area img {
    width: 250px;
    margin-bottom: 10px;
  }

  /* Slider */
  .hero-slider .swiper-slide {
    background-size: cover;
    background-position: center;
    height: 100vh;
  }

  .slide-content {
    background-color: rgba(0, 0, 0, 0.4);
    padding: 20px;
    text-align: center;
    color: white;
    margin: auto 40px;
  }

  /* Ürün Kartları */
  .category-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
    gap: 30px;
  }

  .category-card {
    max-width: 100%;
    text-align: center;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    padding: 15px;
    border-radius: 8px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .category-card img {
    max-width: 100%;
    height: auto;
  }

  .category-card h3,
  .category-card p,
  .category-card a {
    text-align: center;
    margin: 12px auto;
  }

  .category-card a {
    display: block;
    margin: auto 36px;
    padding: 8px 16px;
    background-color: #ee0000;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    text-align: center;
  }

  /* Baymak */
  .baymak-slider-wrapper {
    overflow: hidden;
    position: relative;
    padding: 0 20px;
  }

  .baymak-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 15px;
  }

  .baymak-card {
    flex: 0 0 auto;
    width: 100%;
    scroll-snap-align: center;
    background: #fff;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
  }

  .slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 28px;
    background: rgba(0,0,0,0.5);
    color: #fff;
    padding: 5px 10px;
    border-radius: 50%;
    z-index: 10;
  }

  .slider-arrow.left {
    left: 0;
  }

  .slider-arrow.right {
    right: 0;
  }

  /* Footer */
  .footer-container {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 20px;
    gap: 10px;
    margin-bottom: -60px;
  }

  .footer-section {
    margin-bottom: -40px;
  }

  .footer-bottom p {
    text-align: center;
    font-size: 18px;
    padding: 10px 0;
  }
}


.slide-heading-link {
  text-decoration: none;
  color: inherit;
  display: inline-block;
}

.slide-heading-link:hover h2 {
  text-decoration: none;
  color: #ff5722; /* Hover efekti isteğe bağlı */
}


.hamburger256 {
    display: none; /* Varsayılan olarak gizli */
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    z-index: 1002;
    position: relative;
}

/* Desktop Navigasyon */
.nav-menu742 {
    display: flex; /* Varsayılan olarak göster */
}

@media (max-width: 768px) {
  .hero-section {
    height: 140px;
  }

  .hero-section h1 {
    font-size: 2.3rem;
  }
}

/* Responsive */
@media (max-width: 768px) {
    .hamburger256 {
        display: flex; /* Mobilde göster */
    }

    .nav-menu742 {
        display: none; /* Mobilde gizle */
    }
}

/* Önce her zaman gizle */
.nav-menu742 {
  display: none;
}

/* Sadece mobilde göster */
@media (max-width: 768px) {
  .nav-menu742 {
    display: flex; /* veya block, ihtiyaca göre */
    flex-direction: column; /* örneğin dikey menü için */
  }
  .nav-menu742 ul {
       display: none;
  }
}

@media (max-width: 768px) {
  .slide-content{
    top: 40% !important;
    left: 21% !important;
    transform: translate(-50%, -50%) !important;
    width: 50vw !important;
    max-width: 100% !important;
    min-width: unset !important;
    text-align: center;
    background-color: transparent !important;
  }
  
  .slide-content-gunisi {
    top: 20% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 100vw !important;
    max-width: 100% !important;
    min-width: unset !important;
    text-align: center;
  }

  /* SADECE başlık görünsün */
  .slide-content h2,
  .slide-content-gunisi h2 {
    font-size: 0.9rem !important;
    margin-bottom: 0;
    line-height: 1.1;
    color: #fff;
  }

  /* Paragraflar görünmesin */
  .slide-content p,
  .slide-content-gunisi p,
  .slide-content .cta-button,
  .slide-content-gunisi .cta-button {
    display: none !important;
  }

  /* Slider görseli kırpmasız yerleşsin */
  .swiper-slide {
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
  }

  /* Pagination noktaları görünmesin */
  .swiper-pagination {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .hero-slider {
    height: 190px !important;  /* veya 300px, görsele göre ayarlayabilirsin */
    overflow: hidden;
  }

  .swiper {
    height: 100% !important;
  }

  .swiper-slide {
    height: 100% !important;
  }
}

@media (max-width: 768px) {
  .slide-heading-link {
    display: block;
    text-decoration: none;
  }
}

@media (max-width: 768px) {
  .category-card {
    padding: 14px;
    border-radius: 10px;
    max-width: 95%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  }

  .category-card img {
    max-width: 100%;
    max-height: 180px;
    object-fit: contain;
    margin: 10px auto;
    border-radius: 10px;
  }

  .category-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }

  .category-card p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 28px;
  }

  .category-card a {
    font-size: 0.8rem;
    padding: 8px 12px;
    border-radius: 25px;
    margin-bottom: 12px;
  }
}

@media (max-width: 768px) {
  html, body {
    padding: 0 !important;
    margin: 0 !important;
    overflow-x: hidden !important;
    width: 100% !important;
  }

  .hero-slider,
  .swiper,
  .swiper-slide {
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .swiper-slide {
    background-clip: content-box !important;
    background-origin: border-box !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  * {
    box-sizing: border-box !important;
  }

  ::-webkit-scrollbar {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .contact-section {
    padding: 20px 10px;
    box-sizing: border-box;
  }

  .contact-container {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0 auto;
    box-sizing: border-box;
  }

  .map-container {
    width: 100%;
    height: 280px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  }

  .map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
  }

  .contact-info {
    width: 100%;
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  }

  .contact-info h2 {
    font-size: 1.5rem;
    color: #b71c1c;
    border-bottom: 2px solid #b71c1c;
    padding-bottom: 6px;
    margin-bottom: 16px;
    text-align: center;
  }

  .contact-info p {
    font-size: 1rem;
    color: #333;
    margin: 10px 0;
    line-height: 1.5;
  }

  .contact-info a {
    color: #007bff;
    text-decoration: none;
    word-break: break-word;
  }

  .contact-info a:hover {
    text-decoration: underline;
  }
  /* === FIX: Mobilde contact-info ve harita taşmasını engelle === */
.contact-container {
  flex-wrap: wrap;
  justify-content: space-between;
}

.contact-info {
  flex: 1 1 300px; /* Esnek olsun */
  min-width: unset;
  max-width: 100%;
  box-sizing: border-box;
}

.map-container {
  flex: 1 1 300px;
  min-width: unset;
  max-width: 100%;
  box-sizing: border-box;
}

}

