/* ======================================================================
   CSS Variables
   ====================================================================== */
:root {
  --color-primary: #00b0b8;
  --color-primary-hover: #008389;
  --color-dark: #323f48;
  --color-text: #2a2a2a;
  --color-text-muted: #656565;
  --color-text-alt: #959498;
  --color-bg: #f4f4f4;
  --color-white: #fff;
  --color-border: #e6e6e6;
  --color-border-light: #ddd;
  --color-overlay: rgba(0, 0, 0, 0.8);

  --font-size-display: 48px;
  --font-size-h1: 40px;
  --font-size-h2: 30px;
  --font-size-h3: 24px;
  --font-size-body: 16px;
  --font-size-small: 14px;

  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;

  --line-height-tight: 1.2;
  --line-height-normal: 1.4;
  --line-height-relaxed: 1.6;
}

@media (max-width: 1023px) {
  :root {
    --font-size-display: 40px;
    --font-size-h1: 32px;
    --font-size-h2: 28px;
    --font-size-h3: 20px;
    --font-size-body: 15px;
    --font-size-small: 13px;
  }
}

@media (max-width: 767px) {
  :root {
    --font-size-display: 32px;
    --font-size-h1: 28px;
    --font-size-h2: 24px;
    --font-size-h3: 18px;
    --font-size-body: 14px;
    --font-size-small: 12px;
  }
}

/* ======================================================================
   Global Styles
   ====================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: var(--font-size-body);
  line-height: var(--line-height-relaxed);
  color: var(--color-text);
  background: var(--color-white);
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

section {
  padding: 100px 0;
  background: var(--color-white);
}

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

/* CONTENT WRAPPER START */

.content-wrapper {
  padding: 0 20px;
  border-radius: 10px;
}

.category-desc {
  padding: 0 0 60px 0;
}

.category-desc .content-wrapper {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.content-wrapper ul,
.content-wrapper ol {
  padding-left: 40px !important;
  margin-bottom: 20px !important;
}

.content-wrapper ul li {
  list-style: unset;
  margin-bottom: 10px;
  word-break: break-word;
  overflow-wrap: break-word;
}

.content-wrapper ol li {
  list-style: disc;
  margin-bottom: 10px;
  word-break: break-word;
  overflow-wrap: break-word;
}

.content-wrapper p {
  margin-bottom: 20px;
}

.content-wrapper h2,
.content-wrapper h3,
.content-wrapper h4,
.content-wrapper h5,
.content-wrapper h6 {
  margin-bottom: 20px;
}

.content-wrapper img {
  width: 100%;
  max-width: 100%;
  object-fit: contain;
  margin: 20px 0;
  height: auto;
}

/* CONTENT WRAPPER END */

/* ======================================================================
   Container
   ====================================================================== */
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (max-width: 1023px) {
  .container {
    padding: 0 20px;
  }
}

@media (max-width: 767px) {
  .container {
    padding: 0 12px;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1400px;
    padding: 0 10px;
  }
}

/* ======================================================================
   Section Title
   ====================================================================== */
.section-head {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  color: var(--color-primary);
  font-size: 24px;
  font-weight: var(--font-weight-normal);
  margin-bottom: 10px;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 15px;
}

.section-label::before,
.section-label::after {
  content: "";
  width: 46px;
  height: 1px;
  background: #4d4d4d;
}

.section-title {
  font-size: var(--font-size-h1);
  font-weight: var(--font-weight-normal);
  color: var(--color-dark);
  margin: 0;
}

.section-subtitle {
  color: #9d9d9d;
  font-size: 15px;
  margin-top: 8px;
}

/* ======================================================================
   Buttons
   ====================================================================== */
.btn-primary {
  display: inline-flex;
  padding: 16px 38px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 30px;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 16px;
  font-weight: var(--font-weight-medium);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
  .btn-primary:hover {
    background: var(--color-primary-hover);
  }
}

.btn-outline {
  display: inline-flex;
  padding: 8px 38px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 30px;
  border: 1px solid var(--color-primary);
  background: transparent;
  color: var(--color-primary);
  font-size: 16px;
  font-weight: var(--font-weight-medium);
  cursor: pointer;
  transition: all 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
  .btn-outline:hover {
    background: var(--color-primary);
    color: var(--color-white);
  }
}

/* ======================================================================
   Header
   ====================================================================== */
.header {
  background: var(--color-white);
}

.header-top {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
}

.header-top-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}

.header-social {
  display: flex;
  gap: 10px;
}

.header-social a {
  font-size: 20px;
  color: var(--color-text);
  transition: color 0.3s ease;
}

.header-social a img {
  width: 27px;
}

@media (hover: hover) and (pointer: fine) {
  .header-social a:hover {
    opacity: 0.7;
  }
}

.header-info {
  display: flex;
  align-items: center;
  gap: 25px;
}

.header-info-item {
  display: flex;
  align-items: center;
  font-size: var(--font-size-body);
  position: relative;
}

.header-info-item:not(:last-child)::after {
  content: "|";
  position: absolute;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-border);
}

.header-info-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: inherit;
  text-decoration: none;
}

@media (hover: hover) and (pointer: fine) {
  .header-info-link:hover {
    opacity: 0.8;
  }
}

.header-info-item i {
  color: var(--color-primary);
  font-size: 20px;
}

.header-main {
  background: var(--color-white);
  transition: transform 0.35s ease;
}

.header-main-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

@media (max-width: 992px) {
  .header-main-content {
    padding: 15px 0;
  }
}

/* Scroll olunca fixed olacak ve animasyon oynayacak */
.header-main.scrolled {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  animation: headerSlideDown 0.5s ease forwards;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.35);
}

.scrolled .header-main-content {
  padding: 10px 0;
}

.scrolled .logo img {
  width: 150px;
}

.scrolled .btn-primary {
  padding: 10px 38px;
}

/* Keyframes: yukarıdan gelme efekti */
@keyframes headerSlideDown {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(0);
  }
}

.logo img {
  width: 189px;
  height: auto;
}

@media (max-width: 992px) {
  .logo img {
    width: 150px;
  }
}

.navigation {
  flex: 1;
  display: flex;
  justify-content: center;
}

.menu {
  display: flex;
  gap: 40px;
}

.menu-item a {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: var(--color-text-alt);
  transition: opacity 0.3s ease;
}

.menu-item.active a {
  color: var(--color-primary);
  font-size: 18px;
}

@media (hover: hover) and (pointer: fine) {
  .menu-item a:hover {
    opacity: 0.8;
  }
}

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

.language-switcher {
  color: var(--color-primary);
  font-size: 15px;
  font-weight: var(--font-weight-normal);
  display: flex;
  align-items: center;
  gap: 15px;
}

.language-switcher a {
  position: relative;
}

.language-switcher a:not(:last-child)::after {
  content: "|";
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 16px;
  color: var(--color-text);
  cursor: pointer;
  gap: 8px;
  align-items: center;
}

.mobile-menu-btn i {
  font-size: 18px;
}

@media (max-width: 991px) {
  .header-top {
    display: none;
  }

  .navigation,
  .header-actions .btn-primary {
    display: none;
  }

  .header .language-switcher {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }
}

/* Mobile Menu Modal */
.mobile-menu-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10001;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}

.mobile-menu-modal.is-open {
  visibility: visible;
  opacity: 1;
}

.mobile-menu-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-overlay);
}

.mobile-menu-content {
  position: absolute;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 400px;
  height: 100%;
  background: var(--color-white);
  padding: 30px;
  transition: right 0.3s ease;
  overflow-y: auto;
}

.mobile-menu-modal.is-open .mobile-menu-content {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--color-text);
  cursor: pointer;
}

.mobile-nav {
  margin-top: 60px;
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav a {
  font-size: 14px;
  color: var(--color-text);
  display: block;
  padding: 12px 0;
}

.mobile-nav li.active a {
  color: var(--color-primary);
  font-weight: var(--font-weight-semibold);
}

.mobile-menu-actions {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* HEADER DROPDOWN START */
    .dropdown {
        position: relative;
        cursor: pointer;
    }

    .dropdown a {
        padding-bottom: 50px;
    }

    @media (max-width: 992px) {
        .dropdown a {
            padding-bottom: 0px !important;
        }
    }

    .dropdown-content {
        width: 300px;
        border-top: 5px solid var(--color-primary);
        position: absolute;
        background: white;
        margin: 0 auto;
        left: 0;
        right: 0;
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
        z-index: 9;
        pointer-events: none;
        top: 40px;
        transform: scaleY(0);
        transition: transform 0.3s ease, opacity 0.3s ease;
        transform-origin: top;
        opacity: 0;
        border-radius: 10px;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        overflow: hidden;
    }

    @media (max-width: 992px) {
        .dropdown-content {
            border: none;
            position: static;
            width: 100%;
            left: 0px;
            box-shadow: none;
            opacity: 1;
            transform: scaleY(1);
            border-radius: 0px;
            display: none;
        }

        .menu-wrapper a {
            color: black;
        }

        .dropdown .menu-wrapper {
            padding: 10px;
            display: flex;
            align-items: center;
            justify-content: space-between;

        }

    }

    .dropdown-items {
        display: grid !important;
        grid-template-columns: repeat(1, 1fr) !important;
        gap: 0 !important;
        width: 100%;
    }



    .dropdown-content .dropdown-items li {
        display: block;
        padding: 10px;
        width: 100%;
        background-color: var(--primary-color);
        transition: all 0.3s ease;
    }

    @media (max-width:992px) {
          .dropdown-content .dropdown-items li {
            padding: 0
          }  
    }

    .dropdown-content .dropdown-items li::after {
        display: none;
    }

    .dropdown-content .dropdown-items li:hover {
        background-color: var(--primary-100);
    }


    .dropdown-content .dropdown-items li a {
        color: var(--color-text) !important;
        padding-bottom: 0;
        font-weight: 300;
        width: 100%;
        display: block;
    }

    .dropdown-content .dropdown-items li:hover a {
        color: var(--primary-900) !important;
    }

    .dropdown:hover .dropdown-content {
        transform: scaleY(1);
        opacity: 1;
        pointer-events: all;
    }

    .dropdown-icon i {
        transition: all 0.3s ease;
        font-size: 12px;
        color: var(--white-text)
    }

    @media (min-width: 992px) {
        .dropdown:hover .dropdown-icon i {
            color: var(--primary-500);
            transform: rotate(180deg);
            transition: transform 0.3s ease, color 0.3s ease;
        }
    }

    /* mobile için open class ekliyoruz */
    .dropdown-icon i {
        transition: transform 0.3s ease, color 0.3s ease;
    }

    .dropdown.open .dropdown-icon i {
        transform: rotate(180deg);
        color: var(--primary-500);
    }

    .dropdown-content.open {
        display: block;
    }

    /* HEADER DROPDOWN END */

/* ======================================================================
   Hero Section
   ====================================================================== */
.hero {
  padding: 0;
  position: relative;
  height: auto;
  overflow: visible;
}

.hero-content {
  position: relative;
  height: auto;
}

@media (min-width: 992px) {
  .mobile-hero {
    display: none;
  }
}

@media (max-width: 992px) {
  .mobile-hero {
    display: block;
  }

  .desktop-hero {
    display: none;
  }
}

.mobile-hero .swiper-slide img {
  width: 100%;
}

/* Swiper controls styling for hero */
.hero-slider .swiper-button-prev,
.hero-slider .swiper-button-next {
  color: var(--color-white);
}

.hero-slider .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.6);
  opacity: 1;
  width: var(
    --swiper-pagination-bullet-width,
    var(--swiper-pagination-bullet-size, 60px)
  );
  height: var(
    --swiper-pagination-bullet-height,
    var(--swiper-pagination-bullet-size, 8px)
  );
  border-radius: var(--swiper-pagination-bullet-border-radius, 10px);
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: var(--swiper-pagination-bottom, 60px) !important;
}

.hero-slider .swiper-pagination-bullet-active {
  background: var(--color-primary);
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  z-index: 2;
  color: var(--color-white);
}

.hero-title {
  font-size: 40px;
  font-weight: var(--font-weight-light);
  line-height: 1.2;
  margin-bottom: 30px;
}

.hero-title-bold {
  font-weight: var(--font-weight-medium);
}

.hero-features {
  list-style: none;
}

.hero-features li {
  padding-left: 25px;
  margin-bottom: 10px;
  position: relative;
  font-size: 18px;
}

.hero-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--color-primary);
  border-radius: 50%;
}

@media (max-width: 767px) {
  .hero {
    height: auto;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-features li {
    font-size: 14px;
  }
}

/* ======================================================================
   Categories Section
   ====================================================================== */
.categories {
  position: relative;
  background: var(--color-white) center center / 100% auto no-repeat;
}

.categories-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 300px;
  font-weight: var(--font-weight-bold);
  color: rgba(0, 176, 184, 0.05);
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 33px;
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

@media (max-width: 1023px) {
  .categories-grid {
    max-width: 100%;
  }
}

.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 21px;
  background: var(--color-white);
  box-shadow: 0 4px 10px 0 rgba(0, 83, 87, 0.3);
  padding: 22px 24px;
}

.category-card img {
  width: 100%;
  object-fit: cover;
}

.category-card-title {
  color: #333;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.category-card .btn {
  padding: 8px 50px;
  border-radius: 30px;
  background-color: white;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
}

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

  .categories-watermark {
    font-size: 120px;
  }
}

/* ======================================================================
   Services Section
   ====================================================================== */
.services {
  background: var(--color-bg);
  position: relative;
}

.services .top-effect {
  position: absolute;
  top: -150px;
}

@media (max-width: 1200px) {
  .services .top-effect {
    top: -120px;
  }
}

@media (max-width: 992px) {
  .services .top-effect {
    top: -90px;
  }
}

@media (max-width: 768px) {
  .services .top-effect {
    top: -50px;
  }
}

@media (max-width: 450px) {
  .services .top-effect {
    top: -40px;
  }
}

.services .bottom-effect {
  position: absolute;
  bottom: -120px;
  z-index: 2;
}

@media (max-width: 1400px) {
  .services .bottom-effect {
    bottom: -100px;
  }
}

@media (max-width: 1100px) {
  .services .bottom-effect {
    bottom: -80px;
  }
}

@media (max-width: 992px) {
  .services .bottom-effect {
    bottom: -60px;
  }
}

@media (max-width: 768px) {
  .services .bottom-effect {
    bottom: -40px;
  }
}

@media (max-width: 450px) {
  .services .bottom-effect {
    bottom: -30px;
  }
}

.services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-bg);
  z-index: 0;
}

.services .container {
  position: relative;
  z-index: 1;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 43px;
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--color-white);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  padding: 0px 0px 20px 0px;
}

.service-card img {
  width: 100%;
  object-fit: cover;
}

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--color-white);
  border: 3px solid var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -30px;
  margin-bottom: 20px;
}

.service-icon i {
  font-size: 26px;
  color: var(--color-primary);
}

.service-card-title {
  width: 315px;
  text-align: center;
  font-size: 16px;
  /* font-weight: var(--font-weight-semibold); */
  color: black;
  line-height: 1;
  padding-bottom: 33px;
  padding: 0px 20px;
}

@media (max-width: 1023px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

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

  .service-card-title {
    width: 100%;
    padding: 0 20px 30px;
  }
}

/* ======================================================================
   Why Us Section
   ====================================================================== */
.why-us {
  position: relative;
  overflow: hidden;
  padding: 200px 0;
  background: center/cover no-repeat fixed;
}

.why-us::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.7) 100%
  );
  z-index: 1;
}

.why-us .container {
  position: relative;
  z-index: 2;
}

.why-us-content {
  display: flex;
  align-items: center;
  gap: 68px;
}

.why-us-heading {
  width: 425px;
  flex-shrink: 0;
  color: var(--color-white);
}

.why-us-label {
  font-size: 40px;
  font-weight: var(--font-weight-normal);
  text-align: right;
  position: relative;
  padding-left: 98px;
  margin-bottom: 10px;
}

.why-us-label::before {
  content: "";
  position: absolute;
left: 50%;
  top: 50%;
  transform: translateY(-50%);
  width: 83px;
  height: 1px;
  background: var(--color-white);
}

.why-us-title {
  font-size: 64px;
  font-weight: var(--font-weight-bold);
  line-height: 1.5;
  text-align: right;
}

.why-us-description {
  font-size: 20px;
  font-weight: var(--font-weight-normal);
  line-height: 1.5;
  text-align: right;
  margin-top: 15px;
}

.why-us-divider {
  width: 1px;
  height: 408px;
  background: var(--color-white);
  flex-shrink: 0;
}

.why-us-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.why-us-item {
  display: flex;
  gap: 23px;
}

.why-us-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}

.why-us-icon::before {
  content: "";
  position: absolute;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: var(--color-white);
}

.why-us-icon i {
  font-size: 28px;
  color: var(--color-primary);
  z-index: 1;
}

.why-us-text {
  flex: 1;
}

.why-us-text .title {
  font-size: 24px;
  font-weight: var(--font-weight-bold);
  color: var(--color-white);
  margin-bottom: 7px;
}

.why-us-text p {
  font-size: 20px;
  font-weight: var(--font-weight-normal);
  color: var(--color-white);
  line-height: 1.4;
}

@media (max-width: 1023px) {
  .why-us-parallax {
    inset: -20% 0 -20% 0;
  }

  .why-us-content {
    flex-direction: column;
    gap: 40px;
  }

  .why-us-heading {
    width: 100%;
    text-align: center;
  }

  .why-us-label,
  .why-us-title,
  .why-us-description {
    text-align: center;
  }

  .why-us-label::before {
    left: 50%;
    transform: translateX(-150%);
  }

  .why-us-divider {
    display: none;
  }
}

@media (max-width: 767px) {
  .why-us-title {
    font-size: 40px;
  }

  .why-us-label {
    font-size: 28px;
  }

  .why-us-text h3 {
    font-size: 20px;
  }

  .why-us-text p {
    font-size: 16px;
  }
}

/* ======================================================================
   About Us Section
   ====================================================================== */
.about-us {
  background: var(--color-bg);
  position: relative;
  z-index: 1;
  overflow: visible;
}

.about-us .top-effect {
  position: absolute;
  top: -150px;
}

@media (max-width: 1200px) {
  .about-us .top-effect {
    top: -120px;
  }
}

@media (max-width: 992px) {
  .about-us .top-effect {
    top: -90px;
  }
}

@media (max-width: 768px) {
  .about-us .top-effect {
    top: -50px;
  }
}

@media (max-width: 450px) {
  .about-us .top-effect {
    top: -40px;
  }
}

.about-watermark {
  position: static;
  font-size: 250px;
  font-weight: var(--font-weight-bold);
  color: rgba(0, 176, 184, 0.1);
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
  text-align: center;
  background: var(--color-bg);
  padding: 10px 0;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 138px;
}

.about-images {
  display: flex;
  gap: 24px;
  position: relative;
  width: 683px;
  flex-shrink: 0;
}

.about-images img:first-child {
  width: 330px;
  height: 472px;
  object-fit: cover;
  box-shadow: 0 4px 10px 1px rgba(0, 0, 0, 0.25);
}

.about-images img:last-child {
  width: 329px;
  height: 472px;
  object-fit: cover;
  box-shadow: 0 4px 6px 2px rgba(0, 0, 0, 0.25);
  margin-top: 58px;
}

.about-text {
  flex: 1;
}

.about-text .section-title {
  font-size: 48px;
  font-weight: var(--font-weight-semibold);
  color: var(--color-dark);
  margin-bottom: 40px;
}

.about-text p {
  color: var(--color-text-muted);
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: var(--font-weight-normal);
  line-height: 1.6;
  margin-bottom: 20px;
}

.about-text p:last-of-type {
  font-weight: 200;
}

.about-text .btn-primary {
  margin-top: 20px;
}

@media (max-width: 1023px) {
  .about-content {
    flex-direction: column;
    gap: 60px;
  }

  .about-images {
    width: 100%;
    justify-content: center;
  }

  .about-watermark {
    font-size: 150px;
  }
}

@media (max-width: 767px) {
  .about-images {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .about-images img {
    width: 100% !important;
    height: auto !important;
    margin-top: 0 !important;
  }

  .about-text .section-title {
    font-size: 32px;
  }

  .about-text p {
    font-size: 16px;
  }

  .about-watermark {
    font-size: 80px;
  }
}

/* ======================================================================
   Transition Section
   ====================================================================== */
.transition-section {
  padding: 100px 0;
  margin-top: -60px;
  position: relative;
  z-index: 2;
}

.transition-box {
  background: center / cover no-repeat;
  padding: 100px 20px;
  margin-bottom: -162px;
}

.transition-title {
  color: var(--color-white);
  text-align: center;
  font-size: 48px;
  font-weight: var(--font-weight-light);
  line-height: 1.4;
}

.transition-title span {
  font-weight: var(--font-weight-bold);
}

@media (max-width: 767px) {
  .transition-box {
    padding: 60px 16px;
  }

  .transition-title {
    font-size: 28px;
  }
}

/* ======================================================================
   Solutions Section
   ====================================================================== */
.solutions {
  background: var(--color-white);
  padding: 140px 0px 100px 0px;
}

.container-fluid {
  width: 100%;
  padding: 0 20px;
}

.solutions-grid {
  display: flex;
  flex-wrap: nowrap;
  /* tek satır */
  justify-content: center;
  overflow-x: auto;
  /* yatay kaydırma */
  scroll-snap-type: x mandatory;
  gap: 20px;
  -webkit-overflow-scrolling: touch;
  /* iOS için smooth scroll */
  scroll-behavior: smooth;
  cursor: grab;
}

.solution-card {
  flex: 0 0 70%;
  /* mobil: 1.5 kart görünümü */
  scroll-snap-align: start;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  user-select: none;
}

.solution-card img {
  width: 100%;
  display: block;
  border-radius: 10px 10px 0 0;
}

.solution-content {
  padding: 15px;
}

/* Responsive kart genişlikleri */
@media (min-width: 768px) {
  .solution-card {
    flex: 0 0 45%;
  }
}

@media (min-width: 992px) {
  .solution-card {
    flex: 0 0 22%;
  }
}

@media (min-width: 1200px) {
  .solution-card {
    flex: 0 0 18%;
  }
}

/* Scrollbar gizle (opsiyonel) */
.solutions-grid::-webkit-scrollbar {
  display: none;
}

.solution-card {
  position: relative;
  border: 2px solid var(--color-primary);
  background: var(--color-white);
  padding: 30px;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  scroll-snap-align: start;
  overflow: hidden;
  transition: color 0.3s ease;
}

.solution-card-image {
  position: absolute !important;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.solution-card-image img {
  width: 100%;
  height: 100%;
}

.solution-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.solution-card .solution-content {
  position: relative;
  z-index: 1;
}

.solution-card:hover .solution-card-image {
  opacity: 1;
}

.solution-card:hover::after {
  opacity: 0.5;
}

@media (max-width: 992px) {
  .solution-card .solution-card-image {
    opacity: 1;
  }

  .solution-card::after {
    opacity: 0.5;
  }
}

.solution-card:hover .solution-number,
.solution-card:hover .title span {
  color: var(--color-white);
}

@media (max-width: 992px) {
  .solution-card .solution-number,
  .solution-card .title span {
    color: var(--color-white);
  }
}

.solution-number {
  font-size: 64px;
  font-weight: var(--font-weight-medium);
  color: var(--color-primary);
  line-height: 1.2;
  margin-bottom: 20px;
}

.solution-card .title {
  display: flex;
  flex-direction: column;
}

.solution-card .title span {
  font-size: 30px;
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  line-height: 1.2;
}

@media (max-width: 1023px) {
  .solution-card {
    flex: 0 0 calc((100vw - 80px) / 3);
    min-height: 360px;
    padding: 35px;
  }
}

@media (max-width: 992px) {
  .solution-card .title span {
    color: var(--color-white);
  }
}

@media (max-width: 767px) {
  .solution-card {
    flex: 0 0 calc((100vw - 60px) / 1.5);
    min-height: 300px;
    padding: 28px;
  }

  .solution-number {
    font-size: 48px;
  }

  .solution-card .title span {
    font-size: 24px;
  }
}

/* ======================================================================
   CTA Section
   ====================================================================== */
.cta {
  padding: 0;
  position: relative;
  background: none;
}

.cta-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-content img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  transition: all 0.3s ease;
}

.cta-figure {
  position: absolute;
  left: 10%;
  bottom: 0;
  width: 55%;
  max-width: 650px;
  z-index: 1;
}

.cta-figure img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 1600px) {
  .cta-figure img {
    width: 80%;
        top: -25%;
  }
}

@media (max-width: 1200px) {
  .cta-figure img {
    width: 70%;
    top: auto;
  }
}

.cta-text {
  position: absolute;
  right: 10%;
  bottom: 20%;
  text-align: center;
  color: var(--color-white);
  z-index: 2;
}

.cta-text .title {
  font-size: 32px;
  font-weight: var(--font-weight-light);
  line-height: 1.2;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cta-text .title span {
  font-weight: var(--font-weight-medium);
}

.cta-buttons {
  display: flex;
  gap: 13px;
  justify-content: center;
}

.cta-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 30px;
  background: var(--color-white);
  color: var(--color-primary);
  font-size: 20px;
  font-weight: var(--font-weight-bold);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

.cta-btn i {
  font-size: 22px;
}

@media (hover: hover) and (pointer: fine) {
  .cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 8px 0 rgba(0, 0, 0, 0.3);
  }
}

@media (max-width: 992px) {
  .cta {
    height: auto;
  }

  .cta-content {
    flex-direction: column;
    align-items: center;
    background-color: var(--color-primary);
  }

  .cta-bg {
    display: none !important;
  }

  .cta {
    background: var(--color-brand);
  }

  .cta-figure {
    display: block;
    position: static;
    width: 100%;
    max-width: none;
  }

  .cta-content img {
    width: 100%;
    height: auto;
  }

  .cta-text {
    position: static;
    padding: 30px 20px;
  }

  .cta-text h2 {
    font-size: 22px;
    margin-bottom: 24px;
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cta-btn {
    width: 100%;
    font-size: 18px;
  }
}

/* ======================================================================
   Footer
   ====================================================================== */
.footer {
  position: relative;
  background: linear-gradient(0deg, #55849c 0%, #55849c 100%);
}

.footer-overlay {
  background: linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.95) 0%,
      rgba(0, 0, 0, 0.95) 100%
    ),
    url("https://api.builder.io/api/v1/image/assets/TEMP/afc36a6abc184349b6ac5e7b8f4541e77fb45b8c?width=1920")
      center/cover no-repeat;
  padding: 65px 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 65px;
}

.footer-logo {
  width: 205px;
  height: 90px;
}

.footer-divider {
  width: 100%;
  max-width: 1264px;
  height: 1px;
  background: var(--color-primary);
}

.footer-columns {
  display: flex;
  gap: 123px;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-column .title {
  color: var(--color-white);
  font-size: 20px;
  font-weight: var(--font-weight-medium);
  line-height: 1.5;
  margin-bottom: 15px;
}

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-column ul li a {
  color: rgba(255, 255, 255, 0.63);
  font-size: 16px;
  font-weight: var(--font-weight-light);
  line-height: 2.75;
  transition: color 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
  .footer-column ul li a:hover {
    color: var(--color-white);
  }
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 38px;
}

.footer-contact-item .title {
  color: var(--color-white);
  font-size: 20px;
  font-weight: var(--font-weight-medium);
  line-height: 1.5;
  margin-bottom: 10px;
}

.footer-contact-item a,
.footer-contact-item p {
  color: rgba(255, 255, 255, 0.63);
  font-size: 16px;
  font-weight: var(--font-weight-light);
  line-height: 1.875;
  transition: color 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
  .footer-contact-item a:hover {
    color: var(--color-white);
  }
}

.footer-bottom {
  background: var(--color-primary);
  padding: 16px 0;
}

.footer-bottom-content {
  max-width: 1579px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: #333;
  font-size: 13px;
  font-weight: var(--font-weight-light);
  margin: 0;
}

.footer-social {
  display: flex;
  gap: 20px;
}

.footer-social a {
  width: 53px;
  height: 53px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 20px;
  transition: all 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
  .footer-social a:hover {
    background: rgba(255, 255, 255, 0.2);
  }
}

@media (max-width: 1023px) {
  .footer-columns {
    gap: 60px;
  }
}

@media (max-width: 767px) {
  .footer-overlay {
    padding: 40px 0;
  }

  .footer-inner {
    gap: 40px;
  }

  .footer-logo {
    width: 150px;
    height: auto;
  }

  .footer-columns {
    flex-direction: column;
    gap: 40px;
    width: 100%;
  }

  .footer-column,
  .footer-contact {
    width: 100%;
  }

  .footer-bottom-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-social {
    gap: 15px;
  }

  .footer-social a {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }
}

/* ======================================================================
   Mobile Sticky Footer
   ====================================================================== */
.footer-sticky {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--color-dark);
  z-index: 10000;
  padding: 8px 0;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.footer-sticky {
  display: none;
  grid-template-columns: repeat(5, 1fr);
}

.sticky-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: var(--color-white);
  font-size: 10px;
  padding: 8px;
}

.sticky-item i {
  font-size: 20px;
}

.sticky-item-primary {
  color: var(--color-primary);
}

.sticky-item-primary i {
  font-size: 28px;
}

@media (max-width: 991px) {
  .footer-sticky {
    display: grid;
  }

  body {
    padding-bottom: 74px;
  }
}

/* ======================================================================
   Animations
   ====================================================================== */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ======================================================================
   Print Styles
   ====================================================================== */
@media print {
  .header,
  .footer,
  .footer-sticky,
  .mobile-menu-btn {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  a {
    color: #000;
    text-decoration: underline;
  }
}

/* BREADCRUMB START */

.breadcrumb-container {
  padding: 30px 0;
  background-color: var(--color-primary);
  color: var(--color-white);
}

.breadcrumb-container .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}

.breadcrumb-container .container .links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.breadcrumb-container .container .links li {
  position: relative;
}

.breadcrumb-container .container .links li:not(:last-child)::after {
  content: "/";
  position: absolute;
  right: -17px;
}

/* BREADCRUMB END */

/* CONTACT PAGE START */

.contact-page .container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 30px;
}

.contact-page .contact-page-left {
  grid-column: span 6;
}

@media (max-width: 992px) {
  .contact-page .contact-page-left {
    grid-column: span 12;
  }
}

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

.contact-link {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border-radius: 10px;
}

.contact-link i {
  border-radius: 10px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  width: 60px;
  height: 60px;
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  background: #2193b0;
  /* fallback for old browsers */
  background: -webkit-linear-gradient(to right, #6dd5ed, #2193b0);
  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, #6dd5ed, #2193b0);
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.whatsapp-link i {
  background: #56ab2f;
  background: -webkit-linear-gradient(to right, #a8e063, #56ab2f);
  background: linear-gradient(to right, #a8e063, #56ab2f);
}

.contact-link-info {
  display: flex;
  flex-direction: column;
}

.contact-link-info .title {
  text-transform: uppercase;
  font-weight: 500;
}

.contact-link-info span:nth-child(2) {
  font-weight: bold;
}

.contact-form-section {
  grid-column: span 6;
  border-radius: 10px;
  background-color: var(--color-white);
  overflow: hidden;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  padding: 20px;
}

@media (max-width: 992px) {
  .contact-form-section {
    grid-column: span 12;
  }
}

.contact-form-section .title {
  font-size: 27px;
  font-weight: bold;
  margin-bottom: 15px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px; /* İstediğin boşluk */
}

.contact-form-section form input,
.contact-form-section form textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid var(--color-border-light);
}

.contact-form-section form textarea {
  font-family: inherit !important;
}

form button {
  padding: 15px;
  border-radius: 10px;
  background-color: var(--color-primary-hover);
  color: var(--color-white);
  border: 1px solid var(--color-primary-hover);
  cursor: pointer;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  font-size: 18px;
}

.contact-form input[type="text"],
.contact-form input[type="email"] {
  grid-column: span 6;
}

.contact-form input[type="number"],
.contact-form textarea,
.contact-form button,
.contact-form .g-recaptcha {
  /* google captcha div varsa */
  grid-column: span 12;
}

/* Responsive için */
@media (max-width: 768px) {
  .contact-form input[type="text"],
  .contact-form input[type="email"],
  .contact-form input[type="number"],
  .contact-form textarea,
  .contact-form button,
  .contact-form .g-recaptcha {
    grid-column: span 12;
  }
}

.map {
  padding: 0 0 60px 0;
}

.map .title {
  font-size: 27px;
  font-weight: bold;
  padding: 15px;
  color: var(--color-white);
  background-color: var(--color-primary-hover);
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.map .container iframe {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

/* CONTACT PAGE END */

/* CATEGORY PAGE START */

.products-categories {
  position: relative;
}

.products-categories .categories-bg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.products-categories .container {
  display: flex;
  flex-wrap: wrap; /* Elemanlar taşarsa alt satıra geçer */
  justify-content: center; /* Satırdaki elemanları ortalar */
  gap: 30px; /* Elemanlar arasındaki boşluk */
}

.products-categories .category-card {
  flex: 0 1 calc(33.333% - 20px); /* 3 sütun, gap’i çıkart */
  position: relative;
  z-index: 1;
}

@media (max-width: 992px) {
  .products-categories .category-card {
    flex: 0 1 100%; /* Mobilde tek sütun */
  }
}

/* CATEGORY PAGE END */

/* PRODUCT PAGE START */

.product-box {
  display: block;
  background-color: white;
  transition: all 0.3s ease;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.product-box:hover {
  box-shadow: none;
}

.product-box:hover img {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.product-box-bottom {
  text-align: center;
  transition: all 0.3s ease;
  padding: 15px;
  background-color: var(--color-bg);
  position: relative;
}

.detail-icon {
  position: absolute;
  right: 10px;
  top: -15px;
  width: 40px;
  height: 40px;
  display: none;
  align-items: center;
  justify-content: center;
  background-color: white;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  color: var(--color-text);
}

.product-box:hover .detail-icon {
  display: flex;
}

.product-box:hover .product-box-bottom {
  transform: translateY(-20px);
  background-color: var(--color-primary);
  color: var(--color-white);
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-radius: 10px;
}

.product-box-bottom .title {
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 500;
}

.product-box-bottom span {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 10px 50px;
  border-radius: 30px;
}

.product-box:hover .product-box-bottom span {
  background-color: white;
  color: black;
}

.grid-container {
  display: grid;
  grid-template-columns: 1fr; /* Küçük mobil: tek sütun */
  gap: 20px;
}

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

/* Küçük cihazlar (min 481px) */
@media (min-width: 481px) {
  .grid-container {
    grid-template-columns: repeat(2, 1fr); /* 2 sütun */
  }
}

/* Tablet (min 768px) */
@media (min-width: 768px) {
  .grid-container {
    grid-template-columns: repeat(2, 1fr); /* 3 sütun */
  }
}

/* Büyük tablet / küçük laptop (min 992px) */
@media (min-width: 992px) {
  .grid-container {
    grid-template-columns: repeat(3, 1fr); /* 4 sütun */
  }
}

/* Desktop (min 1200px) */
@media (min-width: 1200px) {
  .grid-container {
    grid-template-columns: repeat(4, 1fr); /* 5 sütun */
  }
}

/* PRODUCT PAGE END */

/* PRODUCT DETAIL START */

.product-detail-top {
  padding: 15px 0 60px 0;
}

.product-detail-top .container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: center;
  gap: 30px;
}

.product-detail-gallery {
  grid-column: span 4;
}
@media (max-width: 992px) {
  .product-detail-gallery {
    grid-column: span 12;
  }
}

.gallerySlider1 .gallery-box {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  cursor: pointer;
  border: 1px solid var(--color-primary);
}


.product-detail-gallery .gallerySlider2 .swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  font-size: 27px;
  color: var(--color-dark);
}
.product-detail-gallery .gallerySlider2 .swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  font-size: 27px;
  color: var(--color-dark);
}

.product-detail-right {
  grid-column: span 8;
  padding: 0 60px;
}

@media (max-width:992px) {
  .product-detail-right {
    grid-column: span 12;
    padding: 0 15px;
  }
}
.product-detail-right .content-wrapper{
  padding: 20px 0;
}

.product-detail-right .title {
  font-size: 40px;
  font-weight: 500;
}

.product-detail-right .btn-wrapper {
  display: grid;
  grid-template-columns: repeat(12,1fr);
  gap: 30px;
}

@media (max-width:992px) {
  .product-detail-right .btn-wrapper {
    gap: 15px;
  }
}

.product-detail-right a {
  grid-column: span 6;
  text-align: center;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-radius: 5px;
}

@media (max-width:450px) {
  .product-detail-right a {
    grid-column: span 12;
  }
}

.product-detail-right .whatsapp-btn {
  background: #56ab2f;
  background: -webkit-linear-gradient(to right, #a8e063, #56ab2f);
  background: linear-gradient(to right, #a8e063, #56ab2f);
  color: var(--color-white);
  padding: 15px 0;
}

.product-detail-right .offer-btn {
 background-color: var(--color-primary-hover);
 color: var(--color-white);
 padding: 15px 0;
}



  .tab-button {
    padding: 15px 60px;
    border: 1px solid gainsboro;
  }
  .tab-button.active {
    border: 1px solid var(--color-primary);
    background: var(--color-primary);
    color: var(--color-white);
  }

  @media (max-width:450px) {
      .tab-button {
    padding: 15px;
        width: 100%;
  }
  }
.tab-content {
  opacity: 0;
  display: none;
  pointer-events: none;
  animation-fill-mode: forwards;
}

.tab-content.active {
  display: block;
  pointer-events: auto;
  animation: fadeIn 0.4s ease forwards;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border-radius: 0 10px 10px 10px;
  border: 1px solid var(--color-border);
}

.tab-content.fadeOut {
  animation: fadeOut 0.4s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}
.product-tab {
  padding: 60px 0 0 0;
}
.product-tab .content-wrapper {
  padding: 20px;
}

.content-wrapper table {
  border-collapse: collapse;
  background: #ffffff;
  color: #000000;
  border: 1px solid var(--color-primary);
  font-family: inherit;
  table-layout: auto;
  width: 100%;
}

/* hücreler */
.content-wrapper table th,
.content-wrapper table td {
  border: 1px solid var(--color-primary);
  padding: 12px 10px;
  vertical-align: middle;
  text-align: left;
  transition: background-color 0.25s ease;
}

/* başlık alanı */
.content-wrapper table th {
  background: var(--color-primary);
  color: #ffffff;
  font-weight: 600;
}

/* zebra efekti */
.content-wrapper table tbody tr:nth-child(even) {
  background: rgba(156, 174, 134, 0.12);
}

/* hover efekti */
.content-wrapper table tbody tr:hover {
  background: rgba(156, 174, 134, 0.25);
}

/* mobil */
@media (max-width: 768px) {
  .content-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .content-wrapper table {
    min-width: 600px;
  }
}

/* PRODUCT DETAIL END */

/* BLOG PAGE START */

.blog-box {
  display: block;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.blog-box:hover {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.blog-box .title {
  padding: 10px 20px;
  background-color: var(--color-dark);
  color: var(--color-white);
}

/* BLOG PAGE END */

/* BLOG DETAIL START */

.blog-detail .container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 30px;
}

.blog-detail .blog-detail-left {
  grid-column: span 8;
}

.blog-detail aside {
  grid-column: span 4;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  height: max-content;
  position: sticky;
  top: 100px;
  padding: 30px;
  border-radius: 10px;
}

.blog-detail aside .title {
  font-size: 27px;
  font-weight: bold;
  margin-bottom: 15px;
}

.blog-detail aside form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.blog-detail aside form input,
.blog-detail aside form textarea {
  padding: 10px;
}

.blog-detail aside form textarea {
  font-family: inherit !important;
}

/* BLOG DETAIL END */
