@font-face {
  font-family: "Nexa-Heavy";
  src: url("../fonts/Nexa-Heavy.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: "Nexa-ExtraLight";
  src: url("../fonts/Nexa-ExtraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-family: "Nexa-Regular";
  src: url("../fonts/Nexa-Regular.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Nexa-Light";
  src: url("../fonts/Nexa Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Nexa-Bold";
  src: url("../fonts/Nexa Bold.otf") format("opentype");
  font-weight: bold;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

body {
  font-family: "Nexa-Regular", sans-serif;
}

.top-navbar {
  background-color: #000;
  height: 50px;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 50px;
  transition: all 0.3s ease;
  transform: translateY(0);
}

.language-selector {
  color: white;
}

.language-selector select {
  background: transparent;
  color: white;
  border: none;
  outline: none;
}

.language-selector select option {
  background: #000;
}

.main-navbar {
  position: fixed;
  width: 100%;
  top: 50px;
  z-index: 1000;
  padding: 20px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: transparent;
  transition: all 0.3s ease;
  transform: translateY(0);
}

.main-navbar.scrolled {
  background-color: #000;
  padding: 10px 50px;
}

.logo img {
  height: 50px;
}

.nav-links {
  flex: 0 1 auto;
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-right: 15px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-family: "Nexa-Bold", sans-serif;
  font-size: 14px;
  padding: 8px 16px;
  transition: all 0.3s ease;
  position: relative;
  letter-spacing: 0.5px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: #ff0000;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 70%;
}

.nav-links a.active {
  color: #ff0000;
}

.nav-links a.active::after {
  width: 70%;
  background-color: #ff0000;
}

.nav-links a:hover {
  color: #ff0000;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  color: white;
  font-size: 20px;
}

.slider {
  position: relative;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  margin: 0;
  padding: 0;
  left: 0;
  top: 0;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  opacity: 0;
  transition: opacity 1.2s ease;
  will-change: opacity;
  overflow: hidden;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

.slide img {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
}

.corner-images {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 2;
}

.corner-left {
  position: absolute;
  left: 0;
  top: 0;
  width: 450px;
  height: auto;
}

.corner-right {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 450px;
  height: auto;
}

/* Mobil menü için temel stiller */
.menu-toggle {
  margin-top: 10px;
  display: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  z-index: 1001;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.95);
  padding: 80px 0 20px 0;
  z-index: 2000;
  transition: right 0.3s ease-in-out;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.3);
}

.close-menu {
  position: absolute;
  top: 20px;
  right: 20px;
  color: white;
  font-size: 24px;
  cursor: pointer;
  z-index: 2001;
}

.close-menu:hover {
  opacity: 0.8;
}

.mobile-nav.active {
  display: block;
  right: 0;
}

.mobile-nav a {
  display: block;
  color: white;
  text-decoration: none;
  padding: 15px 25px;
  text-align: left;
  font-weight: bold;
  font-size: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav a:last-child {
  border-bottom: none;
}

/* Karartma efekti için overlay */
.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1999;
}

.overlay.active {
  display: block;
}

/* Responsive Tasarım */
@media screen and (max-width: 1400px) {
  .slider,
  .slide,
  .slide img {
    width: 100vw;
    height: 100vh;
  }
  .corner-left,
  .corner-right {
    width: 350px;
  }
  .nav-links {
    gap: 20px;
  }
  .main-navbar {
    padding: 15px 40px;
  }
}

@media screen and (max-width: 1024px) {
  .slider,
  .slide,
  .slide img {
    width: 100vw;
    height: 100vh;
  }
  .corner-left,
  .corner-right {
    width: 300px;
  }
  .nav-links {
    gap: 15px;
  }
  .nav-links a {
    font-size: 14px;
  }
  .logo img {
    height: 40px;
  }
  .main-navbar {
    padding: 10px 20px;
  }
}

@media screen and (max-width: 768px) {
  .corner-left,
  .corner-right {
    width: 250px;
  }
  .slider {
    height: 80vh;
    margin-top: 0;
  }
  .nav-links {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .logo img {
    height: 35px;
  }
  .top-navbar {
    height: 40px;
    padding: 0 15px;
  }
  .main-navbar {
    top: 40px;
    padding: 10px 15px;
  }

  .mobile-nav {
    width: 85%;
  }
  .mobile-nav a {
    padding: 12px 20px;
    font-size: 14px;
  }
}

@media screen and (max-width: 480px) {
  .corner-left,
  .corner-right {
    width: 200px;
  }
  .slider {
    height: 70vh;
    margin-top: 0;
  }
  .logo img {
    height: 25px;
  }
  .top-navbar {
    height: 35px;
    padding: 0 10px;
  }
  .main-navbar {
    top: 35px;
    padding: 5px 10px;
  }
  .social-icons a {
    font-size: 14px;
  }
  .language-selector select {
    font-size: 14px;
  }
  .mobile-nav {
    width: 85%;
  }
  .mobile-nav a {
    padding: 12px 20px;
    font-size: 14px;
  }
}
/* Ana container stilleri */
.hakkimizda-container {
  padding: 100px 50px;
  background-color: #ffffff;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}

.hakkimizda-content {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  gap: 80px;
  align-items: center;
  padding: 0 20px;
}

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

.hakkimizda-text h1 {
  font-family: "Nexa-Heavy", sans-serif;
  font-size: 54px;
  color: #000000;
  margin-bottom: 25px;
  font-weight: 100;
  letter-spacing: -0.5px;
}

.hakkimizda-text h2 {
  font-family: "Nexa-Bold", sans-serif;
  font-size: 28px;
  color: #ff0000;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 25px;
  letter-spacing: 0.5px;
}

.hakkimizda-text h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  max-width: 550px;
  height: 2px;
  background-color: #ff0000;
}

.hakkimizda-text p {
  font-family: "Nexa-Light", sans-serif;
  font-size: 17px;
  line-height: 1.8;
  color: #333333;
  /* margin-bottom: 40px; */
  letter-spacing: 0.2px;
}

.features-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
  font-family: "Nexa-Light", sans-serif;
  font-size: 16px;
  color: #333333;
  line-height: 1.6;
  letter-spacing: 0.2px;
}

.features-list li .check-icon {
  color: #ff0000;
  font-weight: bold;
  font-size: 18px;
  margin-top: 2px;
}

.hakkimizda-image {
  flex: 1;
  max-width: 500px;
  width: 100%;
}

.product-display {
  width: 100%;
  height: 100%;
}

.product-display img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

@media (max-width: 1024px) {
  .hakkimizda-container {
    padding: 80px 20px;
  }

  .hakkimizda-content {
    gap: 40px;
    padding: 0;
  }

  .hakkimizda-text {
    max-width: 100%;
  }

  .hakkimizda-image {
    max-width: 450px;
  }
}

@media (max-width: 768px) {
  .hakkimizda-container {
    padding: 60px 15px;
  }

  .hakkimizda-content {
    flex-direction: column-reverse;
    text-align: center;
    gap: 30px;
  }

  .hakkimizda-image {
    max-width: 100%;
    width: 100%;
  }

  .product-display img {
    max-width: 100%;
    margin: 0 auto;
  }
}

.nav-hidden {
  transform: translateY(-170%);
}

.sss-section {
  background-image: url("../images/faq.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 0;
  color: white;
  position: relative;
  margin-bottom: 0;
  padding-bottom: 80px;
}

.sss-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
}

.sss-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.sss-header {
  text-align: center;
  margin-bottom: 60px;
}

.sss-subtitle {
  font-family: "Nexa-ExtraLight", sans-serif;
  font-size: 14px;
  color: #ff0000;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.sss-subtitle::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: #ff0000;
}

.sss-title {
  font-family: "Nexa-Heavy", sans-serif;
  font-size: 42px;
  color: white;
  margin-top: 20px;
}

.sss-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.sss-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.sss-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
}

.sss-question {
  font-family: "Nexa-Bold", sans-serif;
  padding: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
}

.sss-question .arrow {
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
  background: #ff0000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  padding: 0;
  margin-left: 15px;
}

.sss-question .arrow i {
  font-size: 12px;
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.sss-answer {
  font-family: "Nexa-Light", sans-serif;
  padding: 0 25px;
  height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.6;
}

.sss-item.active {
  background: rgba(255, 255, 255, 0.08);
}

.sss-item.active .sss-question {
  color: #ff0000;
}

.sss-item.active .arrow {
  background: white;
}

.sss-item.active .arrow i {
  color: #ff0000;
  transform: rotate(180deg);
}

.sss-item.active .sss-answer {
  height: auto;
  opacity: 1;
  padding: 0 25px 25px 25px;
}

@media (max-width: 992px) {
  .sss-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .sss-section {
    padding: 60px 0;
  }

  .sss-title {
    font-size: 32px;
  }

  .sss-question {
    font-size: 15px;
    padding: 20px;
  }

  .sss-answer {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .sss-section {
    padding: 40px 0;
  }

  .sss-title {
    font-size: 26px;
  }

  .sss-subtitle {
    font-size: 12px;
  }
}

.dokumanlar-container {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #1a1a1a;
}

.dokumanlar-title {
  text-align: center;
  font-size: 42px;
  margin-bottom: 60px;
  color: white;
  font-family: "Nexa-Heavy", sans-serif;
}

.dokumanlar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  justify-items: center;
}

.dokuman-card {
  width: 100%;
  max-width: 280px;
  position: relative;
  cursor: pointer;
  transition: all 0.4s ease;
}

.dokuman-cover {
  position: relative;
  width: 100%;
}

.dokuman-image {
  width: 100%;
  height: 380px;
  background-size: cover;
  background-position: center;
  border-radius: 15px;
  transition: transform 0.4s ease;
}

.dokuman-content {
  margin-top: 15px;
  text-align: center;
}

.dokuman-content h2 {
  font-size: 18px;
  margin-bottom: 8px;
  color: white;
  font-family: "Nexa-Bold", sans-serif;
}

.dokuman-content p {
  font-size: 14px;
  color: #ff0000;
  font-family: "Nexa-Light", sans-serif;
  opacity: 0.9;
}

/* Hover Efektleri */
.dokuman-card:hover .dokuman-image {
  transform: translateY(-5px);
}

/* Kapak görselleri */
.dokuman-card[data-type="garanti"] .dokuman-image {
  background-image: url("../images/sunum1.png");
}

.dokuman-card[data-type="kullanim"] .dokuman-image {
  background-image: url("../images/sunum2.png");
}

.dokuman-card[data-type="yemek"] .dokuman-image {
  background-image: url("../images/sunum3.png");
}

/* Responsive */
@media (max-width: 1200px) {
  .dokumanlar-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
}

@media (max-width: 992px) {
  .dokumanlar-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .dokumanlar-container {
    padding: 40px 15px;
  }

  .dokumanlar-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .dokumanlar-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .dokuman-card {
    max-width: 100%;
  }
}

.dokumanlar-section {
  background-color: #1a1a1a;
  width: 100%;
  padding: 80px 0;
  margin-top: 0;
  padding-top: 80px;
}

.dokumanlar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.dokumanlar-title {
  text-align: center;
  font-size: 42px;
  margin-bottom: 60px;
  color: white;
  font-family: "Nexa-Heavy", sans-serif;
}

/* Yeni Navbar Tasarımı */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.4s ease;
  padding: 15px 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0) 100%
  );
}

.navbar.scrolled {
  background: #000;
  padding: 10px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.navbar-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  width: 100%;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 80px;
  flex: 0 0 auto;
}

.nav-links {
  display: flex;
  justify-content: flex-start;
  gap: 15px;
  flex: 0 1 auto;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-left: 20px;
}

.logo img {
  height: 45px;
  transition: all 0.3s ease;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-family: "Nexa-Bold", sans-serif;
  font-size: 14px;
  padding: 8px 16px;
  transition: all 0.3s ease;
  position: relative;
  letter-spacing: 0.5px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: #ff0000;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 70%;
}

.nav-links a.active {
  color: #ff0000;
}

.nav-links a.active::after {
  width: 70%;
  background-color: #ff0000;
}

.nav-links a:hover {
  color: #ff0000;
}

.language-selector {
  position: relative;
  padding-right: 20px;
}

.language-selector::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.2);
}

.language-selector select {
  background: transparent;
  color: white;
  border: none;
  outline: none;
  font-family: "Nexa-Bold", sans-serif;
  font-size: 14px;
  cursor: pointer;
  padding: 5px 15px;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.language-selector select:hover {
  background: rgba(255, 255, 255, 0.1);
}

.navbar .social-icons {
  display: flex;
  gap: 12px;
}

.navbar .social-icons a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  background: rgba(0, 0, 0, 0.5);
  text-decoration: none;
}

.navbar .social-icons a:hover {
  color: #fff;
  background: rgba(0, 0, 0, 0.8);
  transform: translateY(-2px);
}

@media (max-width: 1400px) {
  .nav-left {
    gap: 60px;
  }
  .nav-links {
    gap: 10px;
  }
  .nav-right {
    margin-left: 15px;
  }
  .navbar .social-icons {
    display: none;
  }
}

@media (max-width: 1200px) {
  .nav-left {
    gap: 40px;
  }
  .nav-links {
    gap: 8px;
  }
  .nav-right {
    margin-left: 12px;
  }
}

@media (max-width: 1024px) {
  .nav-left {
    gap: 30px;
  }
  .nav-links {
    gap: 5px;
  }
  .nav-right {
    margin-left: 10px;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .language-selector::after,
  .navbar .social-icons {
    display: none;
  }

  .nav-left {
    gap: 20px;
  }

  .nav-right {
    gap: 5px;
  }

  .menu-toggle {
    display: flex;
  }

  .logo img {
    height: 35px;
  }

  .navbar {
    padding: 10px 0;
  }

  .navbar-inner {
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  .logo img {
    height: 30px;
  }

  .navbar {
    padding: 8px 0;
  }

  .navbar-inner {
    padding: 0 10px;
  }

  .menu-toggle {
    width: 35px;
    height: 35px;
    font-size: 20px;
  }
}





.urunler-section {
  padding: 50px 0;
  background-color: #1a1a1a;
  overflow: hidden;
  position: relative;
}

.scroll-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 0, 0, 0.8);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.scroll-button:hover {
  background: rgba(255, 0, 0, 1);
}

.scroll-left {
  left: 20px;
}

.scroll-right {
  right: 20px;
}

.urunler-grid {
  display: flex;
  gap: 20px;
  padding: 0 70px;
  max-width: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  cursor: grab;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.urunler-grid:active {
  cursor: grabbing;
}

.urunler-title {
  text-align: center;
  color: white;
  font-size: 48px;
  font-weight: 300;
  margin-bottom: 40px;
  font-family: "Nexa-Heavy", sans-serif;
}

.urun-card {
  flex: 0 0 300px;
  border: 2px solid #ff0000;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease;
  background-color: #000;
  aspect-ratio: 1;
  scroll-snap-align: start;
}

.urun-card:hover {
  transform: scale(1.05);
}

.urun-card a {
  display: block;
  width: 100%;
  height: 100%;
}

.urun-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .scroll-button {
    display: none;
  }

  .urunler-grid {
    padding: 0 20px;
  }

  .urunler-title {
    font-size: 36px;
    margin-bottom: 30px;
  }
}

@media (max-width: 480px) {
  .urunler-grid {
    padding: 0 15px;
  }

  .urunler-title {
    font-size: 28px;
    margin-bottom: 20px;
  }
}

.blog-section {
  background-color: #ffffff;
  background-image: linear-gradient(135deg, #f8f8f8 25%, transparent 25%),
    linear-gradient(225deg, #f8f8f8 25%, transparent 25%),
    linear-gradient(45deg, #f8f8f8 25%, transparent 25%),
    linear-gradient(315deg, #f8f8f8 25%, transparent 25%);
  background-position: 20px 0, 20px 0, 0 0, 0 0;
  background-size: 40px 40px;
  background-repeat: repeat;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.blog-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.8) 0%,
    rgba(255, 255, 255, 0) 20%,
    rgba(255, 255, 255, 0) 80%,
    rgba(255, 255, 255, 0.8) 100%
  );
  pointer-events: none;
}

.blog-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.blog-title {
  text-align: center;
  color: #1a1a1a;
  font-size: 48px;
  font-weight: 300;
  margin-bottom: 60px;
  font-family: "Nexa-Heavy", sans-serif;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 0 auto;
}

.blog-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.4s ease;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.blog-card:hover {
  transform: translateY(-10px);
  border-color: #ff0000;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.1);
}

.blog-content {
  padding: 25px;
}

.blog-date {
  color: #ff0000;
  font-size: 14px;
  font-family: "Nexa-Light", sans-serif;
  margin-bottom: 10px;
}

.blog-title-card {
  color: #1a1a1a;
  font-size: 20px;
  font-family: "Nexa-Bold", sans-serif;
  margin-bottom: 15px;
  line-height: 1.4;
}

.blog-excerpt {
  color: rgba(0, 0, 0, 0.7);
  font-size: 15px;
  font-family: "Nexa-Light", sans-serif;
  line-height: 1.6;
  margin-bottom: 20px;
}

.blog-link {
  display: inline-flex;
  align-items: center;
  color: #ff0000;
  text-decoration: none;
  font-family: "Nexa-Bold", sans-serif;
  font-size: 14px;
  transition: all 0.3s ease;
  position: relative;
  padding: 5px 0;
}

.blog-link i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-link {
  color: #ff0000;
}

.blog-link:hover {
  color: #cc0000;
}

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

.blog-category {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 0, 0, 0.9);
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-family: "Nexa-Bold", sans-serif;
  z-index: 1;
}

@media screen and (max-width: 1200px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .blog-title {
    font-size: 36px;
    margin-bottom: 40px;
  }

  .blog-section {
    padding: 60px 0;
  }
}

/* Özel Scroll Çubuğu Tasarımı */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #1a1a1a;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(45deg, #ff0000, #cc0000);
  border-radius: 4px;
  border: 2px solid #1a1a1a;
  transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(45deg, #cc0000, #ff0000);
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

::-webkit-scrollbar-corner {
  background: #1a1a1a;
}

/* Firefox için scroll tasarımı */
* {
  scrollbar-width: thin;
  scrollbar-color: #ff0000 #1a1a1a;
}

/* Microsoft Edge için scroll tasarımı */
@supports (-ms-overflow-style: none) {
  html {
    scrollbar-face-color: #ff0000;
    scrollbar-track-color: #1a1a1a;
    scrollbar-arrow-color: #ff0000;
    scrollbar-shadow-color: #cc0000;
  }
}

/* Page Loader Styles */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
  transition: all 0.5s ease;
}

.page-loader.loaded {
  opacity: 0;
  visibility: hidden;
}

.loader {
  width: 60px;
  height: 60px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  border-top: 3px solid #ff0000;
  animation: spin 1s linear infinite;
  position: relative;
}

.loader::after {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top: 3px solid #fff;
  animation: spin 0.5s linear infinite reverse;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Yukarı Çık Tuşu */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 999;
  border: 2px solid #ff0000;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: #ff0000;
  transform: translateY(-5px);
}

.back-to-top i {
  font-size: 20px;
  color: #fff;
}

/* Slider Dots */
.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.slider-dot {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.slider-dot:hover,
.slider-dot.active {
  background: #ff0000;
  transform: scale(1.2);
}

.slider-dot:hover .preview {
  opacity: 1;
  visibility: visible;
  bottom: 25px;
}

.preview {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 80px;
  background: #fff;
  border-radius: 5px;
  padding: 3px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 3px;
}

.preview::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #fff;
}

.blog-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 0, 0, 0.85);
  display: none;
  z-index: 2;
}

.blog-overlay-content {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  opacity: 0;
}

.blog-overlay-content i {
  color: white;
  font-size: 24px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border: 2px solid white;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.blog-overlay-content i:hover {
  background: white;
  color: #ff0000;
}

.blog-card.clicked {
  animation: cardClick 0.3s ease;
}

@keyframes cardClick {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}

.blog-image {
  position: relative;
  overflow: hidden;
}

.blog-title-card {
  transition: all 0.3s ease;
}

.blog-link {
  position: relative;
  overflow: hidden;
}

.blog-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #ff0000;
  transition: width 0.3s ease;
}

.blog-link:hover::after {
  width: 100%;
}

.blog-category {
  transition: all 0.3s ease;
}

.nav-links .dropdown {
  position: relative;
}

.nav-links .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.95);
  min-width: 200px;
  padding: 15px 0;
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 9999;
  margin-top: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.nav-links .dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.nav-links .dropdown-menu::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid rgba(0, 0, 0, 0.95);
}

.nav-links .dropdown-menu a {
  display: block;
  padding: 8px 20px;
  color: #fff;
  text-align: center;
  font-size: 14px;
  transition: all 0.3s ease;
}

.nav-links .dropdown-menu a:hover {
  color: #ff0000;
  background: rgba(255, 255, 255, 0.05);
}

.nav-links .dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 16px;
  transition: all 0.3s ease;
}

.nav-links .dropdown > a i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.nav-links .dropdown:hover > a i {
  transform: rotate(180deg);
}

/* Mobil menü için MIITI stili */
.mobile-nav .dropdown-menu {
  display: none;
  background: rgba(255, 255, 255, 0.05);
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.mobile-nav .dropdown-menu.active {
  display: block;
  max-height: 300px;
  padding: 10px 0;
}

.mobile-nav .dropdown-menu a {
  padding: 12px 40px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-nav .dropdown-menu a:last-child {
  border-bottom: none;
}

.mobile-nav .dropdown > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 25px;
}

.mobile-nav .dropdown > a i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.mobile-nav .dropdown.active > a i {
  transform: rotate(180deg);
}

/* Kayan Yazı Stili */
.marquee-section {
  background: linear-gradient(90deg, #1a1a1a, #2a2a2a);
  position: relative;
  overflow: hidden;
  padding: 35px 0;
}

.marquee-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #1a1a1a 0%, #ff0000 50%, #1a1a1a 100%);
}

.marquee-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #1a1a1a 0%, #ff0000 50%, #1a1a1a 100%);
}

.marquee-container {
  display: flex;
  width: fit-content;
  animation: marquee 45s linear infinite;
  white-space: nowrap;
}

.marquee-text {
  display: flex;
  align-items: center;
  padding: 0 50px;
  font-family: "Nexa-Bold", sans-serif;
  font-size: 20px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.marquee-text i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0 30px;
  background: rgba(255, 0, 0, 0.1);
  border: 2px solid rgba(255, 0, 0, 0.3);
  border-radius: 50%;
  color: #ff0000;
  font-size: 16px;
  position: relative;
  transition: all 0.5s ease;
}

.marquee-text i::after {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border: 2px solid transparent;
  border-radius: 50%;
  animation: borderRotate 4s linear infinite;
}

@keyframes borderRotate {
  0% {
    transform: rotate(0deg);
    border-top-color: rgba(255, 0, 0, 0.5);
  }
  25% {
    border-right-color: rgba(255, 0, 0, 0.5);
  }
  50% {
    transform: rotate(180deg);
    border-bottom-color: rgba(255, 0, 0, 0.5);
  }
  75% {
    border-left-color: rgba(255, 0, 0, 0.5);
  }
  100% {
    transform: rotate(360deg);
    border-top-color: rgba(255, 0, 0, 0.5);
  }
}

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

.marquee-text span {
  position: relative;
  display: inline-block;
  padding: 0 15px;
  transition: all 0.3s ease;
}

.marquee-text span::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ff0000, transparent);
  transform: scaleX(0);
  transition: transform 0.5s ease;
}

.marquee-text:hover span::before {
  transform: scaleX(1);
}

@media screen and (max-width: 768px) {
  .marquee-section {
    padding: 30px 0;
  }

  .marquee-text {
    font-size: 18px;
    padding: 0 30px;
  }

  .marquee-text i {
    width: 35px;
    height: 35px;
    margin: 0 25px;
    font-size: 14px;
  }
}

@media screen and (max-width: 480px) {
  .marquee-section {
    padding: 25px 0;
  }

  .marquee-text {
    font-size: 16px;
    padding: 0 20px;
  }

  .marquee-text i {
    width: 30px;
    height: 30px;
    margin: 0 20px;
    font-size: 12px;
  }
}

/* Blog Styles */
.miiti-blog-header {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    url("../images/banner-bg.jpg");
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  text-align: center;
  color: #fff;
}

.miiti-blog-header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.miiti-blog-title {
  font-family: "Nexa-Heavy", sans-serif;
  font-size: 48px;
  margin-bottom: 20px;
  font-weight: 100;
  letter-spacing: -0.5px;
}

.miiti-blog-subtitle {
  font-family: "Nexa-Light", sans-serif;
  font-size: 20px;
  opacity: 0.9;
  letter-spacing: 0.5px;
}

.miiti-blog-content {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.miiti-blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.miiti-blog-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.miiti-blog-card:hover {
  transform: translateY(-10px);
  border-color: #ff0000;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.miiti-blog-card-image {
  height: 250px;
  overflow: hidden;
  position: relative;
}

.miiti-blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.miiti-blog-card:hover .miiti-blog-card-image img {
  transform: scale(1.1);
}

.miiti-blog-card-content {
  padding: 25px;
}

.miiti-blog-card-meta {
  margin-bottom: 15px;
}

.miiti-blog-date {
  color: #ff0000;
  font-size: 14px;
  font-family: "Nexa-Light", sans-serif;
}

.miiti-blog-card-title {
  color: #1a1a1a;
  font-size: 22px;
  font-family: "Nexa-Bold", sans-serif;
  margin-bottom: 15px;
  line-height: 1.4;
}

.miiti-blog-card-excerpt {
  color: rgba(0, 0, 0, 0.7);
  font-size: 15px;
  font-family: "Nexa-Light", sans-serif;
  line-height: 1.6;
  margin-bottom: 20px;
}

.miiti-blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ff0000;
  text-decoration: none;
  font-family: "Nexa-Bold", sans-serif;
  font-size: 14px;
  transition: all 0.3s ease;
  position: relative;
  padding: 5px 0;
}

.miiti-blog-read-more i {
  transition: transform 0.3s ease;
}

.miiti-blog-read-more:hover {
  color: #cc0000;
}

.miiti-blog-read-more:hover i {
  transform: translateX(5px);
}

.miiti-blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 50px;
}

.miiti-pagination-numbers {
  display: flex;
  gap: 10px;
}

.miiti-pagination-numbers a,
.miiti-pagination-prev,
.miiti-pagination-next {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: "Nexa-Bold", sans-serif;
}

.miiti-pagination-active {
  background: #ff0000;
  color: #fff !important;
  border-color: #ff0000;
}

.miiti-pagination-numbers a:hover,
.miiti-pagination-prev:hover,
.miiti-pagination-next:hover {
  background: #ff0000;
  color: #fff;
  border-color: #ff0000;
}

/* Responsive Tasarım */
@media (max-width: 1200px) {
  .miiti-blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .miiti-blog-header {
    padding: 60px 0;
  }

  .miiti-blog-title {
    font-size: 36px;
  }

  .miiti-blog-subtitle {
    font-size: 18px;
  }

  .miiti-blog-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto 50px;
  }
}

@media (max-width: 480px) {
  .miiti-blog-header {
    padding: 40px 0;
  }

  .miiti-blog-title {
    font-size: 28px;
  }

  .miiti-blog-subtitle {
    font-size: 16px;
  }

  .miiti-blog-card-title {
    font-size: 20px;
  }
}

/* Blog Detail Styles */
.miiti-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.miiti-blog-detail-header {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    url("../images/banner-bg.jpg");
  padding: 60px 0;
  text-align: center;
}

.miiti-blog-category {
  display: inline-block;
  background-color: #007bff;
  color: white;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 20px;
}

.miiti-blog-detail-title {
  font-size: 2.5rem;
  color: #e0e0e0;
  margin-bottom: 20px;
  line-height: 1.3;
}

.miiti-blog-meta {
  color: #fafafa;
  font-size: 15px;
}

.miiti-blog-meta span {
  margin: 0 15px;
}

.miiti-blog-meta i {
  margin-right: 5px;
}

.miiti-blog-detail-image {
  margin: 40px 0;
}

.miiti-blog-detail-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.miiti-blog-detail-content {
  padding: 40px 0 80px;
}

.miiti-blog-detail-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.miiti-blog-detail-text {
  font-size: 18px;
  line-height: 1.8;
  color: #444;
}

.miiti-blog-detail-text h2 {
  font-size: 28px;
  margin: 40px 0 20px;
  color: #333;
}

.miiti-blog-detail-text h3 {
  font-size: 24px;
  margin: 30px 0 15px;
  color: #333;
}

.miiti-blog-detail-text p {
  margin-bottom: 20px;
}

.miiti-blog-detail-text blockquote {
  border-left: 4px solid #007bff;
  padding: 20px;
  background-color: #f8f9fa;
  margin: 30px 0;
  font-style: italic;
  font-size: 20px;
}

.miiti-blog-share {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid #eee;
  text-align: center;
}

.miiti-share-buttons {
  margin-top: 15px;
}

.miiti-share-buttons a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  margin: 0 5px;
  color: white;
  transition: transform 0.3s ease;
}

.miiti-share-buttons a:hover {
  transform: translateY(-3px);
}

.share-facebook {
  background-color: #3b5998;
}

.share-twitter {
  background-color: #1da1f2;
}

.share-linkedin {
  background-color: #0077b5;
}

.miiti-related-posts {
  margin-top: 80px;
}

.miiti-related-posts h3 {
  text-align: center;
  margin-bottom: 40px;
}

.miiti-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.miiti-related-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.miiti-related-card:hover {
  transform: translateY(-5px);
}

.miiti-related-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.miiti-related-card h4 {
  padding: 20px;
  margin: 0;
  font-size: 18px;
}

.miiti-related-link {
  display: block;
  padding: 15px 20px;
  text-align: right;
  color: #007bff;
  text-decoration: none;
  border-top: 1px solid #eee;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .miiti-blog-detail-title {
    font-size: 2rem;
  }

  .miiti-blog-meta span {
    display: block;
    margin: 10px 0;
  }

  .miiti-blog-detail-text {
    font-size: 16px;
  }

  .miiti-blog-detail-text blockquote {
    font-size: 18px;
  }
}

/* Galeri Stilleri */
.page-heading {
  background-color: #2a2a2a;
  padding: 50px 0;
  margin-bottom: 50px;
  text-align: center;
}

.page-heading h1 {
  font-size: 36px;
  color: #ffffff;
  margin: 0;
}

.gallery-container {
  padding: 50px;
  background-color: #2a2a2a;
  background-image: linear-gradient(
      30deg,
      #333333 12%,
      transparent 12.5%,
      transparent 87%,
      #333333 87.5%,
      #333333
    ),
    linear-gradient(
      150deg,
      #333333 12%,
      transparent 12.5%,
      transparent 87%,
      #333333 87.5%,
      #333333
    ),
    linear-gradient(
      30deg,
      #333333 12%,
      transparent 12.5%,
      transparent 87%,
      #333333 87.5%,
      #333333
    ),
    linear-gradient(
      150deg,
      #333333 12%,
      transparent 12.5%,
      transparent 87%,
      #333333 87.5%,
      #333333
    ),
    linear-gradient(
      60deg,
      #33333377 25%,
      transparent 25.5%,
      transparent 75%,
      #33333377 75%,
      #33333377
    ),
    linear-gradient(
      60deg,
      #33333377 25%,
      transparent 25.5%,
      transparent 75%,
      #33333377 75%,
      #33333377
    );
  background-position: 0 0, 0 0, 40px 70px, 40px 70px, 0 0, 40px 70px;
  background-size: 80px 140px;
}

.gallery-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.gallery-item:hover {
  transform: translateY(-5px);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-overlay i {
  color: white;
  font-size: 24px;
  transform: scale(0);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-overlay i {
  transform: scale(1);
}

/* Lightbox Stilleri */
.lightbox-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 40px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.lightbox-close:hover {
  transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 30px;
  cursor: pointer;
  padding: 15px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  transition: all 0.3s ease;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-prev {
  left: 30px;
}

.lightbox-next {
  right: 30px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 0, 0, 0.8);
  transform: translateY(-50%) scale(1.1);
}

@media (max-width: 768px) {
  .lightbox-prev,
  .lightbox-next {
    width: 40px;
    height: 40px;
    font-size: 24px;
  }

  .lightbox-close {
    font-size: 30px;
    top: 15px;
    right: 20px;
  }
}

/* Responsive Tasarım */
@media (max-width: 1200px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item img {
    height: 300px;
  }
}

/* Video Galerisi Stilleri */
.video-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}

.video-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  cursor: pointer;
}

.video-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.video-thumbnail {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.video-item:hover .video-thumbnail img {
  transform: scale(1.05);
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-overlay i {
  color: white;
  font-size: 48px;
  transform: scale(0.8);
  transition: all 0.3s ease;
}

.video-item:hover .video-overlay {
  opacity: 1;
}

.video-item:hover .video-overlay i {
  transform: scale(1);
}

.video-info {
  padding: 20px;
}

.video-info h3 {
  color: white;
  font-size: 18px;
  margin-bottom: 10px;
  font-family: "Nexa-Bold", sans-serif;
}

.video-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.6;
  font-family: "Nexa-Light", sans-serif;
}

/* Video Modal Stilleri */
.video-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 1000px;
  background: #000;
  border-radius: 10px;
  overflow: hidden;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: white;
  font-size: 32px;
  cursor: pointer;
  transition: transform 0.3s ease;
  z-index: 1;
}

.video-close:hover {
  transform: rotate(90deg);
  color: #ff0000;
}

.page-subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  margin-top: 10px;
  font-family: "Nexa-Light", sans-serif;
}

/* Responsive Tasarım */
@media (max-width: 992px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .video-grid {
    grid-template-columns: 1fr;
  }

  .video-info h3 {
    font-size: 16px;
  }

  .video-info p {
    font-size: 13px;
  }

  .video-overlay i {
    font-size: 36px;
  }
}

.blog-more-button {
  text-align: center;
  margin-top: 50px;
}

.blog-more-button a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ff0000;
  color: #fff;
  padding: 15px 35px;
  border-radius: 30px;
  text-decoration: none;
  font-family: "Nexa-Bold", sans-serif;
  font-size: 15px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid #ff0000;
}

.blog-more-button a:hover {
  background: #fff;
  color: #ff0000;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

.blog-more-button i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.blog-more-button a:hover i {
  transform: translateX(5px);
}

/* İletişim Sayfası Stilleri */
.contact-banner {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    url("../images/banner-bg.jpg");
  background-size: cover;
  background-position: center;
  padding: 120px 0 80px;
  text-align: center;
  color: #fff;
}

.contact-banner-content h1 {
  font-family: "Nexa-Heavy", sans-serif;
  font-size: 48px;
  margin-bottom: 20px;
}

.contact-banner-content p {
  font-family: "Nexa-Light", sans-serif;
  font-size: 20px;
  opacity: 0.9;
}

.contact-section {
  padding: 80px 0;
  background: #fff;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info {
  padding: 40px;
  background: #1a1a1a;
  border-radius: 15px;
  color: #fff;
}

.info-header {
  margin-bottom: 40px;
}

.info-header h2 {
  font-family: "Nexa-Heavy", sans-serif;
  font-size: 32px;
  margin-bottom: 15px;
}

.info-header p {
  font-family: "Nexa-Light", sans-serif;
  font-size: 16px;
  opacity: 0.8;
}

.info-items {
  display: grid;
  gap: 30px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.info-icon {
  width: 50px;
  height: 50px;
  background: #ff0000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.info-content h3 {
  font-family: "Nexa-Bold", sans-serif;
  font-size: 18px;
  margin-bottom: 10px;
}

.info-content p {
  font-family: "Nexa-Light", sans-serif;
  font-size: 15px;
  opacity: 0.8;
  line-height: 1.6;
}

.info-content a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.info-content a:hover {
  color: #ff0000;
}

.social-contact {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-contact h3 {
  font-family: "Nexa-Bold", sans-serif;
  font-size: 18px;
  margin-bottom: 20px;
}

.social-contact .social-icons {
  display: flex;
  gap: 15px;
}

.social-contact .social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-decoration: none;
}

.social-contact .social-icons a:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
  text-decoration: none;
}

.social-contact .social-icons a i {
  transition: transform 0.3s ease;
}

.social-contact .social-icons a:hover i {
  transform: scale(1.2);
}

.contact-form {
  padding: 40px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-header {
  margin-bottom: 40px;
}

.form-header h2 {
  font-family: "Nexa-Heavy", sans-serif;
  font-size: 32px;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.form-header p {
  font-family: "Nexa-Light", sans-serif;
  font-size: 16px;
  color: #666;
}

.form-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.input-group {
  position: relative;
  margin-bottom: 20px;
}

.input-group.full {
  grid-column: 1 / -1;
}

.input-group input,
.input-group select,
.input-group textarea {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid #eee;
  border-radius: 10px;
  font-family: "Nexa-Regular", sans-serif;
  font-size: 15px;
  transition: all 0.3s ease;
  background: transparent;
  color: #1a1a1a;
}

.input-group textarea {
  resize: vertical;
  min-height: 120px;
}

.input-group label {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Nexa-Regular", sans-serif;
  font-size: 15px;
  color: #666;
  pointer-events: none;
  transition: all 0.3s ease;
}

.input-group.full label {
  top: 20px;
  transform: none;
}

.input-group.active label,
.input-group input:focus ~ label,
.input-group textarea:focus ~ label,
.input-group select:focus ~ label {
  top: -10px;
  left: 15px;
  font-size: 12px;
  background: #fff;
  padding: 0 5px;
  color: #ff0000;
}

.input-group input:focus,
.input-group textarea:focus,
.input-group select:focus {
  border-color: #ff0000;
  box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.1);
}

.form-footer {
  text-align: right;
}

.submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ff0000;
  color: #fff;
  border: none;
  padding: 15px 35px;
  border-radius: 30px;
  font-family: "Nexa-Bold", sans-serif;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.submit-btn:hover {
  background: #cc0000;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

.map-section {
  height: 500px;
  position: relative;
  margin-top: -1px;
}

#map {
  width: 100%;
  height: 100%;
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(1);
  transition: all 0.3s ease;
}

.map-section iframe:hover {
  filter: grayscale(0);
}

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

@media (max-width: 480px) {
  .map-section {
    height: 300px;
  }
}

/* Form mesaj stilleri */
.form-message {
  padding: 15px 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  font-family: "Nexa-Regular", sans-serif;
  font-size: 14px;
}

.form-message.success {
  background-color: rgba(40, 167, 69, 0.1);
  border: 1px solid #28a745;
  color: #28a745;
}

.form-message.error {
  background-color: rgba(220, 53, 69, 0.1);
  border: 1px solid #dc3545;
  color: #dc3545;
}

@media (max-width: 992px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-banner-content h1 {
    font-size: 36px;
  }

  .contact-banner-content p {
    font-size: 18px;
  }

  .info-items {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .social-contact .social-icons {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .form-group {
    grid-template-columns: 1fr;
  }

  .contact-banner {
    padding: 80px 0 50px;
  }

  .contact-section {
    padding: 50px 0;
  }

  .map-section {
    height: 400px;
  }

  .info-items {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .info-item {
    align-items: center;
    text-align: left;
  }

  .info-icon {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }

  .info-content h3 {
    font-size: 16px;
  }

  .info-content p {
    font-size: 14px;
  }

  .social-contact .social-icons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .social-contact .social-icons a {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }

  .form-header h2 {
    font-size: 28px;
  }

  .form-header p {
    font-size: 15px;
  }

  .input-group input,
  .input-group select,
  .input-group textarea {
    padding: 12px 15px;
    font-size: 14px;
  }

  .input-group label {
    font-size: 14px;
  }

  .submit-btn {
    width: 100%;
    justify-content: center;
    padding: 12px 25px;
  }
}

@media (max-width: 480px) {
  .contact-banner-content h1 {
    font-size: 28px;
  }

  .contact-banner-content p {
    font-size: 16px;
  }

  .info-header h2,
  .form-header h2 {
    font-size: 24px;
  }

  .contact-info,
  .contact-form {
    padding: 25px 20px;
  }

  .map-section {
    height: 300px;
  }

  .info-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .info-content h3 {
    font-size: 15px;
  }

  .info-content p {
    font-size: 13px;
  }

  .social-contact {
    margin-top: 30px;
    padding-top: 30px;
  }

  .social-contact h3 {
    font-size: 16px;
    text-align: center;
  }

  .social-contact .social-icons {
    gap: 10px;
  }

  .social-contact .social-icons a {
    width: 32px;
    height: 32px;
    font-size: 13px;
  }

  .contact-container {
    padding: 0 15px;
  }

  .form-group {
    gap: 15px;
  }

  .input-group {
    margin-bottom: 15px;
  }

  .input-group.active label,
  .input-group input:focus ~ label,
  .input-group textarea:focus ~ label,
  .input-group select:focus ~ label {
    font-size: 11px;
  }

  .submit-btn {
    font-size: 14px;
    padding: 10px 20px;
  }

  .form-message {
    font-size: 13px;
    padding: 12px 15px;
  }
}

@media (max-width: 360px) {
  .contact-banner-content h1 {
    font-size: 24px;
  }

  .contact-banner-content p {
    font-size: 14px;
  }

  .info-header h2,
  .form-header h2 {
    font-size: 22px;
  }

  .info-header p,
  .form-header p {
    font-size: 13px;
  }

  .contact-info,
  .contact-form {
    padding: 20px 15px;
  }

  .info-item {
    gap: 15px;
  }

  .info-icon {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }

  .social-contact .social-icons {
    gap: 8px;
  }

  .social-contact .social-icons a {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }
}

.product-slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.product-slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

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

.product-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
