:root {
  --renk1: #5a5d65;
  --renk2: #3cb7a8;
  --renk3: #000000;
  --renk4: #fff;
  --renk5: #f9f6f1;
  --font1: "SF Pro Display", Helvetica, Arial, sans-serif;
  --font2: "Palace Script MT";
  --font3: "Montserrat", Helvetica, Arial, sans-serif;
}

.font4 {
  font-family: "Playfair Display", serif;
}

a {
  text-decoration: none;
}

body {
  font-family: var(--font1);
  background-color: #fff;
  margin: 0;
  line-height: 1.3;
  padding: 0;
  font-size: 15px;
}

body.menu-open {
  overflow: hidden;
}

body.no-scroll {
  overflow: hidden;
}

/* --- BAŞLANGIÇ: HEADER VE MEGA MENÜ STİLLERİ --- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  color: #fff;
  background: var(--renk1);
}

.site-header::before {
  width: 100%;
  height: 6px;
  background: var(--renk2);
  content: "";
  position: relative;
  display: block;
}

.site-header .header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  padding: 12px 0px;
  height: 80px;
}
.site-header .header-bar li {
  display: block;
  padding: 0.65rem 0rem;
  color: #fff;
  font-size: 15px;
  text-decoration: none;
  font-weight: 700;
  position: relative;
}

.site-header .header-bar li a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0.2rem;
  background: transparent;
  display: block;
  bottom: 0rem;
  transition: transform 0.4s;
  -webkit-transition: transform 0.4s;
  -moz-transition: transform 0.4s;
  -ms-transition: transform 0.4s;
  -o-transition: transform 0.4s;
  opacity: 0;
}

.site-header .header-bar li a:hover::after {
  width: 100%;
  background: #fff;
  left: 0%;
  opacity: 1;
}

/* Overlay aktifken header'ın rengini siyaha çevirir */
.site-header.overlay-active .header-bar .logo,
.site-header.overlay-active .header-bar .nav-button,
.site-header.overlay-active .header-bar .nav-link {
  color: #000;
}
.site-header.overlay-active .header-bar .logo-q::before {
  border-color: #000;
}

.site-header .logo {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
}
.site-header .logo .logo-q {
  position: relative;
  display: inline-block;
}
.site-header .logo .logo-q::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1.25em;
  height: 1.25em;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  box-sizing: border-box;
}

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

.site-header .main-nav {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-left: auto;
  margin-right: 35px;
}
.site-header .nav-button,
.site-header .nav-link {
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  padding: 0;
}
.site-header .nav-button svg,
.site-header .nav-link svg {
  width: 15px;
  height: 15px;
  fill: #fff;
}

.site-header .nav-button span {
  font-size: 23px;
}

/* MEGA MENÜ ANA KONTEYNERİ */
.site-header .fullscreen-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.site-header .fullscreen-overlay.active {
  opacity: 1;
  visibility: visible;
}

.site-header .mega-menu-content {
  display: grid;
  grid-template-columns: 45% 55%; /* Sol resim, sağ menü */
  height: 100%;
}

/* Sol Taraf: Değişen Resimler */
.site-header .menu-image-panel {
  position: relative;
  overflow: hidden;
}
.site-header .menu-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}
.site-header .menu-image.active {
  opacity: 1;
}

.site-header .menu-image:first-child {
  opacity: 1;
}

.site-header .menu-columns a:hover {
  color: #000;
}

/* Sağ Taraf: Menü Linkleri */
.site-header .menu-links-panel {
  padding: 30px 50px;
  display: flex;
  flex-direction: column;
  color: #000;
}

.site-header .menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #555;
  padding-bottom: 20px;
}
.site-header .menu-header a {
  color: #000;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.site-header .close-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 24px;
  padding: 0;
}

.site-header .menu-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  flex-grow: 1;
  padding-top: 40px;
}

.site-header .menu-columns a {
  text-decoration: none;
  color: #666;
  transition: color 0.3s ease;
}
.site-header .menu-columns a:hover {
  color: #000;
}
.site-header .menu-columns ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-header .menu-columns li {
  margin-bottom: 15px;
}

/* Sütun 1: Ana Kategoriler */
.site-header .main-categories > li > a {
  font-size: 42px;
  color: #888;
  font-weight: 400;
  display: flex;
  align-items: center;
}
.site-header .main-categories > li > a.active,
.site-header .main-categories > li > a:hover {
  color: #000;
}
.site-header .main-categories .arrow {
  font-size: 24px;
  margin-left: 15px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.site-header .main-categories > li > a.active .arrow,
.site-header .main-categories > li > a:hover .arrow {
  opacity: 1;
}

/* Sütun 2: Alt Kategoriler */
.site-header .sub-categories a {
  font-size: 18px;
}
.site-header .sub-categories .category-title {
  font-size: 18px;
  font-weight: 500;
  color: #000;
}

/* Sütun 3: İkincil Linkler */
.site-header .tertiary-links {
  font-size: 14px;
}
.site-header .tertiary-links .category-title {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #000;
  font-weight: 500;
}
.site-header .tertiary-links ul {
  margin-top: 20px;
}

.site-header .menu-footer {
  display: flex;
  gap: 30px;
  padding-top: 20px;
  font-size: 13px;
}
.site-header .menu-footer a {
  color: #000;
  text-decoration: none;
}

/* MEGA MENU CONTAINER */
.site-header .fullscreen-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.site-header .fullscreen-overlay.active {
  opacity: 1;
  visibility: visible;
}

/**/
/* slider */
.slider-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16/8;
  background-color: #333;
  overflow: hidden;
}

.slider-container .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  display: flex;
  align-items: end;
}

.slider-container .slide::before {
  content: "";
  position: absolute;
  width: 100%;
  z-index: 9;
  height: 100%;
  background-image: radial-gradient(
    at top right,
    rgba(124, 128, 137, 0) 0%,
    #18181a 96%
  );
}

.slider-container .slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.slider-container .slide.active {
  opacity: 1;
}

.slider-container .slide.active img {
  z-index: 1;
}

.slider-container .slide .textic {
  position: relative;
  z-index: 9;
  color: #fff;
  margin-bottom: 120px;
  text-align: left;
}

.ms-auto {
  margin-left: auto;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.slider-container .slide .textic .ttext1 {
  display: block;
  line-height: 1.3;
  letter-spacing: 0px;
  font-weight: 700;
  font-size: 55px;
  margin-top: 0px;
  margin-bottom: 0px;
  text-transform: uppercase;
  display: block;
}

.slider-container .slide .textic .ttext2 {
  display: block;
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.8px;
  margin-bottom: 50px;
  max-width: 640px;
}

.slider-container .slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  border: none;
  padding: 5px 10px;
  display: flex;
  align-items: center;
  font-weight: 700;
  cursor: pointer;
  border-radius: 5px;
  z-index: 10;
  transition: background-color 0.3s ease;
  height: 42px;
  width: 42px;
  background: transparent;
}

.slider-container .slider-btn svg {
  fill: #fff;
  width: 65px;
  height: 65px;
}

.slider-container .prev-btn {
  left: 15px;
}

.slider-container .next-btn {
  right: 15px;
}

@media (max-width: 1024px) {
  .slider-container .slide .textic {
    display: none;
  }
}

/**/

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

/**/

.header-title {
  margin-bottom: 70px;
}

.header-title h1,
.header-title h2 {
  font-size: 48px;
  font-weight: 500;
  color: #000;
  margin-top: 0px;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

.header-title .subheading {
  font-size: 16px;
  font-weight: 600;
  color: #222;
  margin-bottom: 30px;
}

.header-title .description {
  max-width: 750px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}

/* Ana Bölüm */
.production-section {
  padding: 80px 0px;
  text-align: center;
}

.section-title {
  font-size: 48px;
  /* font-family: 'Montserrat', sans-serif; */
  font-weight: 400;
  color: #3c3c5a;
  margin-bottom: 70px;
}

/* 3'lü Grid Konteyneri */
.content-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 3 eşit sütun oluşturur */
  gap: 28px; /* Sütunlar arası boşluk */
  margin: 0 auto;
  text-align: left;
}

/* Bilgi Kartları */
.info-card {
  background-color: #f9f6f1;
  /* display: flex; */
  flex-direction: column; /* İçeriği dikey dizer */
}

.info-card.iki .social-icons a{
  background: white;
}

.info-card.iki .social-icons a svg path, 
.info-card.iki .social-icons a svg{
    width: 25px;
    height: 25px;
    fill: var(--renk2) !important;
    transition: fill 0.3s ease;
}

/* Kart Resimleri */
.info-card img {
  width: auto;
  display: flex;
  height: 60px;
  object-fit: contain;
  margin-top: 30px;
  margin-left: 30px;
}

/* Kart İçerik Alanı */
.card-content {
  padding: 20px 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1; /* Esneyerek boş alanı doldurur */
}

.card-title {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--renk3);
  margin: 0 0 20px 0;
}

.card-description {
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: auto;
  margin-top: 0px;
}

.card-link {
  display: inline-block;
  margin-top: 30px;
  color: #3c3c5a;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  transition: transform 0.3s ease;
}

.card-link:hover {
  transform: translateX(5px);
}

/* Orta kartın düzenini değiştirmek için (Yazı üste, resim alta) */
.info-card.text-first {
  flex-direction: column-reverse; /* Sıralamayı ters çevirir */
}

/* Mobil ve Tablet için Responsiv Ayarlar */
@media (max-width: 992px) {
  .content-grid {
    grid-template-columns: 1fr; /* Sütunları alt alta dizer */
  }
  .production-section {
    padding: 60px 20px;
  }
  .section-title {
    font-size: 36px;
  }
}

/**/

.image-strip-container {
  display: flex;
  width: 100%;
  height: 65vh;
  max-height: 650px;
  margin-bottom: 70px;
}

.image-panel {
  background-size: cover !important;
  background-position: center !important;
  cursor: pointer;
  flex: 1;
  will-change: flex;
  transition: flex 1s cubic-bezier(0.29, 0, 0.2, 1);
  -webkit-transition: flex 1s cubic-bezier(0.29, 0, 0.2, 1);
  -moz-transition: flex 1s cubic-bezier(0.29, 0, 0.2, 1);
}

.image-panel span {
  color: #fff;
  font-size: 28px;
}

.image-strip-container:hover .image-panel {
  flex: 1;
}
.image-strip-container .image-panel:hover {
  flex: 5;
}

/* Galeri Stilleri */
.image-strip-container {
  display: flex;
  width: 100%;
  height: 65vh;
  max-height: 650px;
}

.image-panel {
  background-size: cover !important;
  background-position: center !important;
  cursor: pointer;
  position: relative; /* İçindeki span'ı konumlandırmak için */
  overflow: hidden; /* Dışarı taşan span'ı gizler */

  /* Tarayıcıya animasyon için ipucu verir */
  will-change: flex;

  /* Yumuşak geçiş efekti */
  transition: flex 1s cubic-bezier(0.29, 0, 0.2, 1);
}

/* --- YENİ MANTIK: JS ile Kontrol Edilen Class'lar --- */

/* Genişletilmiş panel için stil */
.image-panel.panel-expanded {
  flex: 5;
}

/* Daraltılmış panel için stil */
.image-panel.panel-contracted {
  flex: 1;
}

/* Panel içindeki yazı stili */
.image-panel span {
  position: absolute;
  bottom: 30px;
  left: 30px;
  color: #fff;
  font-size: 28px;
  font-weight: 500;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);

  /* Yazının görünürlük animasyonu */
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease 0.4s, transform 0.6s ease 0.4s;
}

/* Genişleyen panelin içindeki yazıyı görünür yap */
.image-panel.panel-expanded span {
  opacity: 1;
  transform: translateY(0);
}

.site-footer {
  line-height: 1.4;
  background-color: var(--renk5);
  color: var(--footer-text-color);
  padding-top: 70px;
  border-top: 1px solid var(--footer-border-color);
  font-size: 15px;
}

.site-footer .container {
  margin: 0 auto;
}

/* --- SÃ¼tun YapÄ±sÄ± --- */
.footer-main {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding-bottom: 50px;
}

.footer-col {
  flex: 1;
  min-width: 220px;
}

/* --- SÃ¼tun Ä°Ã§erikleri --- */
.footer-logo {
  display: inline-block;
  font-size: 28px;
  font-weight: 700;
  color: var(--footer-heading-color);
  text-decoration: none;
  margin-bottom: 10px;
  font-family: serif;
}

.footer-tagline {
  font-size: 14px;
  margin-bottom: 25px;
}

.footer-col h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--footer-heading-color);
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  margin-top: 0px;
}

.location-block {
  margin-bottom: 25px;
}
.location-block:last-child {
  margin-bottom: 0;
}
.location-block p {
  margin: 0;
  font-size: 14px;
}

.footer-col-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col-menu ul li {
  margin-bottom: 12px;
}
.footer-col-menu ul a {
  color: var(--footer-text-color);
  text-decoration: none;
  transition: color 0.3s ease, padding-left 0.3s ease;
}
.footer-col-menu ul a:hover {
  color: var(--footer-link-hover-color);
  padding-left: 5px;
}

/* ========================================== */
/*     GÃœNCELLENMÄ°Å SOSYAL MEDYA Ä°KONLARI       */
/* ========================================== */
.social-icons {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 15px;
}

.social-icons a {
   /* Boyutu biraz bÃ¼yÃ¼ttÃ¼m */
   text-decoration: none;
   transition: all 0.3s ease;
   height: 51px;
   width: 51px;
   background: var(--renk2);
   border-radius: 10px;
   display: flex;
   align-items: center;
   justify-content: center;
   color: #fff;
   font-size: 18px;
   position: relative;
   z-index: 9;
   margin-bottom: 25px;
}

.social-icons a svg path,
.social-icons a svg {
  width: 25px;
  height: 25px;
  fill: white;
  transition: fill 0.3s ease;
}

/* Hover Efekti */
.social-icons a:hover {
  background-color: var(--renk1);
  border-color: var(--footer-link-hover-color);
  transform: translateY(-3px);
}

/* Hover durumunda SVG'nin rengini deÄŸiÅŸtir */
.social-icons a:hover svg {
  fill: #3cb7a8; /* Arka plan renklenince ikon beyaz olur */
}

/* --- Footer Alt KÄ±sÄ±m (Copyright) --- */
.footer-bottom {
  border-top: 1px solid var(--footer-border-color);
  padding: 25px 0;
  text-align: center;
}
.footer-bottom p {
  margin: 0;
  font-size: 14px;
  color: #888;
}

.footer-bottom a {
  margin-left: 15px;
  color: var(--footer-text-color);
  border-left: 1px solid #ccc;
  padding-left: 15px;
}

.hakkimizda2 {
  width: 100%;
  height: auto;
  position: relative;
  padding: 70px 0px;
}

.hakkimizda2 img.resim1 {
  width: 100%;
  height: 323px;
  object-fit: cover;
  border-radius: 15px;
}

.hakkimizda2 img.resim2 {
  width: 100%;
  height: 281px;
  object-fit: cover;
  border-radius: 15px;
  margin-top: 35px;
}

.hakkimizda2 .text {
  width: 100%;
  height: auto;
  position: relative;
}

.hakkimizda2 .text small {
  width: 100%;
  height: auto;
  position: relative;
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 25px;
}

.hakkimizda2 .text h2 {
  width: 100%;
  height: auto;
  position: relative;
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 25px;
  margin-top: 0px;
}

.hakkimizda2 .text p {
  font-size: 15px;
  line-height: 1.3;
  color: #555;
  margin: 0 0 40px 0;
  text-align: justify;
}

.hakkimizda2 .text small::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--renk2);
  margin-right: 15px;
}

.hakkimizda2 .videoo {
  width: 100%;
  height: auto;
  position: relative;
}

.hakkimizda2 .videoo .play {
  width: 97px;
  height: 97px;
  border-radius: 0px 50px 0px 0px;
  margin-top: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  margin-right: 0px;
  padding-top: 15px;
  padding-bottom: 0px;
  padding-left: 0px;
  padding-right: 15px;
  background: #ffffff;
  position: absolute;
  bottom: 0px;
  left: 0px;
}

.hakkimizda2 .videoo .play span {
  width: 82px;
  height: 82px;
  background: var(--renk2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.hakkimizda2 .videoo .play:hover span {
  background: var(--renk3);
}

.hakkimizda2 .videoo .play svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

.btn-genel:hover svg {
  fill: var(--renk2);
}

.hakkimizda2 .hakkimizda-sayac {
  background: var(--renk1);
  padding: 2em;
  border-radius: 15px 15px 15px 15px;
  display: flex;
  color: #fff;
  justify-content: space-between;
  margin-top: 30px;
}

.hakkimizda2 .hakkimizda-sayac li {
  width: auto;
  text-align: center;
  padding-right: 15px;
  margin-right: 15px;
  list-style: none;
  border-right: 1px solid #ffffff1f;
}

.hakkimizda2 .hakkimizda-sayac li:last-child {
  padding-right: 0px;
  border-right: 0px;
  margin-right: 0px;
}

.hakkimizda2 .hakkimizda-sayac li span {
  display: block;
  font-size: 42px;
  font-weight: 700;
  display: flex;
  justify-content: center;
}

.hakkimizda2 .hakkimizda-sayac li small {
  display: block;
  font-size: 14px;
  margin-top: 15px;
  font-weight: 700;
  text-align: center;
}

.btn-genel {
  position: relative;
  display: inline-block;
  overflow: hidden;
  background-color: transparent;
  border: 2px solid #1d1d1b;
  border-radius: 25px;
  color: #1d1d1b;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
  height: 43px;
  padding: 0px 15px;
  font-weight: 600;
}

.btn-genel i {
  margin-right: 15px;
}

.btn-genel .text1,
.btn-genel .text2 {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease-in-out;
}

.btn-genel .text1 {
  position: relative;
}

.btn-genel .text2 {
  transform: translateY(103%);
  background: var(--renk2);
}

.btn-genel:hover .text1 {
  transform: translateY(-100%);
}

.btn-genel:hover .text2 {
  transform: translateY(0);
}

.btn-genel:hover {
  border-color: var(--renk2);
}

/* buton 2*/
.btn-genel.btn-renk {
  background-color: var(--renk2);
  border-color: var(--renk2);
  color: #fff;
}

.btn-genel.btn-renk .text2 {
  background: var(--renk2);
  color: #fff;
}

.btn-genel.btn-renk:hover {
  background-color: #fff;
  border-color: var(--renk2);
  color: #000;
}

.btn-genel.btn-renk .text2 {
  background: #fff;
  color: #000;
}

.btn-genel.btn-beyaz {
  background-color: #fff;
  border-color: #fff;
}

.btn-genel.btn-beyaz .text2 {
  background: #fff;
}

.btn-genel.btn-border-beyaz {
  border-color: #fff;
  color: #fff;
}

.btn-genel.btn-border-beyaz .text2 {
  background: #fff;
}

.btn-genel.btn-border-beyaz svg {
  fill: #fff;
}

.btn-genel.btn-renk svg {
  fill: #fff;
}

.btn-genel.btn-renk:hover svg {
  fill: var(--renk2);
}

.btn-genel svg {
  width: 17px;
  height: 17px;
  margin-right: 10px;
  fill: var(--renk2);
}

/* --- Mobil Uyum (DeÄŸiÅŸiklik Yok) --- */
@media (max-width: 992px) {
  .footer-col {
    flex-basis: calc(50% - 20px);
  }
}

@media (max-width: 768px) {
  .footer-main {
    flex-direction: column;
    gap: 35px;
    display: none;
  }
  .site-footer {
    padding-top: 0;
    text-align: center;
  }
  .social-icons {
    justify-content: center;
  }
  .footer-col-menu ul a:hover {
    padding-left: 0;
  }
}

/**/

.site-baslik1 {
  width: 100%;
  height: auto;
  color: #1d1d1b;
  position: relative;
  z-index: 9;
}

.site-baslik1 small::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--renk2);
  margin-right: 15px;
}

.site-baslik1 small {
  font-size: 18px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.site-baslik1 h3,
.site-baslik1 h1 {
  font-size: 40px;
  font-weight: 300;
  font-style: normal;
  line-height: 1;
  margin-top: 0px;
  margin-bottom: 0px;
}

.site-baslik1 p {
  font-size: 17px;
  font-weight: 400;
  margin-top: 20px;
  line-height: 1.2em;
  opacity: 70%;
}

.site-baslik1:after {
  content: "";
  width: 25px;
  height: 3px;
  background: #c01718;
  position: relative;
  display: none;
}

.text-white {
  color: #fff;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.hizmetler-slider {
  width: 100%;
  height: auto;
  position: relative;
  padding: 100px 0px;
}

.hizmetler-slider .container {
  background: #fff;
  border-radius: 30px 30px 0px 0px;
  padding: 2em 2em 0px;
}

.hizmetler-slider .container {
  position: relative;
  z-index: 9;
}

.hizmetler-slider-bg {
  width: 100%;
  height: 700px;
  position: absolute;
  background-image: url(../images/bg.webp);
  background-color: var(--renk1);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 50px;
  top: 0px;
}

.urunler-listele3 {
  display: block;
  position: relative;
  color: #000;
  height: auto;
  border-radius: 15px;
  overflow: hidden;
}

.urunler-listele3 .ok {
  width: 101px;
  height: 101px;
  background: #fff;
  border-radius: 50px 0px 0px 0px;
  padding-left: 15px;
  padding-top: 15px;
  position: absolute;
  bottom: 0px;
  right: 0px;
}

.urunler-listele3 .ok svg {
  width: 80px;
  height: 80px;
  background: var(--renk2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  fill: #fff;
  font-size: 33px;
  justify-content: center;
  transition: transform 0.5s;
  transform: rotate(-45deg);
  padding: 20px;
}

.urunler-listele3:hover .ok svg {
  transition: transform 0.5s;
  transform: rotate(0deg);
}

.urunler-listele3:hover {
  color: #000;
}

.urunler-listele3 .resimmbg {
  height: 387px;
  overflow: hidden;
}

.urunler-listele3 .resimmbg .resimm {
  display: block;
  height: 100%;
  background-size: cover !important;
  -webkit-transition: all 600ms ease-in-out;
  -moz-transition: all 600ms ease-in-out;
  -o-transition: all 600ms ease-in-out;
  transition: all 600ms ease-in-out;
}

.urunler-listele3 .resimmbg .resimm img {
  width: 100%;
  height: 100%;
}

.urunler-listele3:hover .resimmbg .resimm {
  transform: scale(1.2);
}

.urunler-listele3 .text {
  width: 100%;
  padding: 22px 30px 30px;
  background: var(--renk5);
  text-align: left;
}

.urunler-listele3 .text span {
  display: block;
  font-size: 27px;
  font-weight: 700;
  margin-bottom: 15px;
  transition: all 350ms ease-in-out 0s;
  color: var(--renk3);
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 15px;
}

.urunler-listele3 .text small {
  display: -webkit-box; /* Flex veya block yerine gerekli */
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4; /* 3 satır sonra kes */
  overflow: hidden; /* Taşan kısmı gizle */
  text-overflow: ellipsis; /* ... ekle */
  font-size: 17px;
  width: 68%;
  font-weight: 500;
  opacity: 0.5; /* %50 opacity için 0.5 */
}

.urunler-listele3 .text .star {
  display: flex;
  align-items: center;
  color: var(--renk2);
  font-size: 17px;
  margin-top: 15px;
}

.urunler-listele3 .text .star svg {
  margin-right: 5px;
  fill: var(--renk2);
  width: 17px;
  height: 17px;
}

.urunler-listele3 .item-readmore {
  opacity: 1;
  transition: all 350ms ease-in-out 0s;
  margin-top: 20px;
  display: inline-block !important;
  font-size: 0.75rem;
  color: #000;
  font-weight: 700;
  position: relative;
  border-bottom: 1px solid #000;
  display: none;
}

.urunler-listele3:hover .item-readmore {
  opacity: 1;
  transition: all 350ms ease-in-out 0s;
}

.urunler-listele3 .overflow {
  display: none;
}

/* Ana sarmalayıcı */
.product-slider-wrapper {
  position: relative;
  width: 100%;
  margin: 0 auto;
  overflow: hidden; /* En önemli kural: track'in taşan kısımlarını gizler */
}

/* Kartları içeren ve hareket eden kısım */
.slider-track {
  display: flex;
  gap: 15px; /* Kartlar arası boşluk, JS'deki ile aynı olmalı */
  transition: transform 0.5s ease-in-out; /* Yumuşak geçiş efekti */
}

/* Her bir kart */
.product-card {
  /* 3'lü görünüm için her kartın genişliğini ayarlıyoruz */
  /* calc ile boşlukları hesaptan düşüyoruz */
  flex: 0 0 calc((100% / 3) - (15px * 2 / 3));
  box-sizing: border-box;
}

/* Navigasyon Okları */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid #ddd;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
}

.slider-arrow:hover {
  background-color: white;
}

.slider-arrow.prev {
  left: 10px;
}

.slider-arrow.next {
  right: 10px;
}

.slider-arrow:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.slider-arrow svg {
  fill: #333;
}

/* Noktalar */
.slider-dots {
  text-align: center;
  padding: 15px 0;
}

.dot {
  display: inline-block;
  width: 15px;
  height: 4px;
  margin: 0 5px;
  background-color: #ccc;
  border-radius: 0;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
}

.dot.active {
  width: 30px;
  background-color: var(--renk2);
}

/* Mobil Cihazlar için Responsive Ayarlar */
@media (max-width: 992px) {
  .product-card {
    /* Tablette 2'li görünüm */
    flex-basis: calc((100% / 2) - (15px * 1 / 2));
  }
}

@media (max-width: 768px) {
  .product-card {
    /* Mobilde tekli görünüm */
    flex-basis: 100%;
  }
}

.container {
  max-width: 1200px !important;
}

/*neden-biz*/

.neden-biz {
  width: 100%;
  height: auto;
  position: relative;
  padding-bottom: 0px;
}

.neden-biz a.Nedenbiz_liste {
  color: #000;
  display: flex;
  margin-bottom: 45px;
}

.neden-biz a.Nedenbiz_liste .icon {
  height: 51px;
  width: 51px;
  background: var(--renk2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  position: relative;
  z-index: 9;
  margin-bottom: 25px;
}

.neden-biz a.Nedenbiz_liste .icon svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

.neden-biz a.Nedenbiz_liste .textic {
  width: calc(100% - 51px);
  padding-left: 15px;
}

.neden-biz a.Nedenbiz_liste h3 {
  width: 100%;
  height: auto;
  font-size: 18px;
  margin-bottom: 12px;
  font-weight: 700;
  color: #283618;
  margin-top: 0px;
}

.neden-biz a.Nedenbiz_liste p {
  font-size: 15px;
  line-height: 1.4;
  font-weight: 400;
  margin-top: 11px;
  margin-bottom: 0px;
  opacity: 54%;
}

.neden-biz .nedenbiz-img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  border-radius: 16px;
}

.neden-biz .nedenbizbilgi {
  width: 100%;
  height: auto;
  background: var(--renk1);
  padding: 25px;
  border-radius: 16px;
  margin-top: 11px;
}

.neden-biz .nedenbizbilgi h3 {
  width: 100%;
  font-size: 25px;
  color: #fff;
  margin-bottom: 25px;
  margin-top: 0px;
}

.mobilbuttonlar {
  display: none;
}

.slider-container .slide::before{
  display: none;
}

@media (max-width: 1200px) {
  
  .site-header .header-bar li a::after{
    display: none;
  }
  
  .logolar{
    display: none;
  }

  .header-actions {
    display: flex;
    align-items: center;
  }

  /* Mobil Menü Açma Butonu (Hamburger SVG) */
  .mobile-menu-toggle {
    display: none; /* Masaüstünde gizli */
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    margin-left: 15px;
    z-index: 1001;
    color: #fff; /* SVG rengini belirler */
  }

  /* Mobil Menü Kapalıyken Arkaplan Overlay'i */
  .menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
  }

  /* Menü Açıkken Overlay'in Görünümü */
  .menu-overlay.is-open {
    opacity: 1;
    visibility: visible;
  }

  /* Mobil menü butonunu göster */
  .mobile-menu-toggle {
    display: block;
  }

  /* İsteğe bağlı: Masaüstü butonunu mobilde gizle */
  .header-bar .btn-genel {
    display: none;
  }

  /* Ana Navigasyon: Mobil Menü Paneli */
  .main-nav {
    margin-right: 0px !important;
    position: fixed;
    top: 0;
    right: 0;
    width: 300px; /* Menü genişliği */
    max-width: 85%;
    height: 100%;
    background-color: #ffffff;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 99998;
    display: flex;
    flex-direction: column;
    margin-right: 0px;
    /* Başlangıçta ekranın dışında */
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  /* Menü Açıkken (.is-open sınıfı ile) */
  .main-nav.is-open {
    transform: translateX(0);
  }

  /* Menünün içindeki Başlık ve Kapatma Butonu Alanı */
  .mobile-menu-header {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #e0e0e0;
    flex-shrink: 0; /* Küçülmesini engelle */
  }

  .mobile-menu-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
  }

  .mobile-menu-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    color: #555; /* SVG rengi */
  }

  /* MENÜ LİNKLERİ STİLİ (ALT ALTA) */
  /* Bu kısım, sizin Twig fonksiyonunuzun ürettiği ul>li yapısına göre çalışır */
  .main-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    overflow-y: auto; /* Çok fazla menü varsa kaydırma çubuğu çıkar */
    flex-grow: 1;
  }

  .main-nav ul li a {
    display: block;
    padding: 16px 20px;
    text-decoration: none;
    color: #444;
    font-size: 1rem;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s ease, color 0.2s ease;
  }

  .main-nav ul li a:hover {
    background-color: #f7f7f7;
    color: #000;
  }

  /* Sayfanın kaymasını engelle */
  body.no-scroll {
    overflow: hidden;
  }

  .site-header .nav-button,
  .site-header .nav-link {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #444;
    font-size: 1rem;
    padding: 0;
  }

  .slider-container {
    margin-top: 80px;
  }

  .hakkimizda2 {
    padding: 30px 0px;
  }

  .hakkimizda2 .text {
    margin-top: 45px;
  }

  .hizmetler-slider {
    padding: 50px 0px;
  }

  .text-first img {
    order: 1 !important;
  }

  .image-strip-container {
    display: block;
    width: 100%;
    height: auto;
    max-height: none;
  }

  .image-panel {
    width: 100%;
    height: 250px;
    margin-bottom: 25px;
  }

  .image-panel span {
    opacity: 1;
  }

  .hakkimizda2 img.resim1{
    display: none;
  }

  .btn {
      border-radius: 0;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 10px 20px;
      width: 100%
  }

  .btn svg {
      width: 24px;
      height: 24px;
      fill: currentColor
  }

  .mobilbuttonlar {
      position: fixed;
      width: 100%;
      bottom: 0;
      z-index: 999;
      display: flex;
  }

  .btn1 {
      background: #5f8f8f;
      border-color: #5f8f8f;
      color: #fff
  }

  .btn2 {
      background: #497676;
      border-color: #497676;
      color: #fff
  }

  .btn3 {
      background: #375f5f;
      border-color: #375f5f;
      color: #fff
  }

  .footer-bottom{
    margin-bottom: 35px
  }
}