:root {
  --primary-color: #9c2a2c;
  --primary-100: white;
  --primary-400: #8b2224;
  --primary-600: #ccc;
  --primary-700: #f8f8f8;
  --primary-800: #555;
  --primary-900: black;
  --dark-gradient: linear-gradient(180deg, #1b1b1b 0%, #111 100%);
}

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

body {
  font-family: "Titillium Web", sans-serif;
  font-size: 16px;
  counter-reset: section;
}

a {
  text-decoration: none;
}

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

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

.section-title {
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary-900);
}

section {
  padding: 80px 0;
}

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

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

.container-fluid {
  max-width: 95%;
  margin: 0 auto;
}

/* CONTENT WRAPPER START */

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

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

.content-wrapper ul li,
.content-wrapper ol li {
  list-style: disc;
  margin-bottom: 15px;
  word-break: break-word;
  overflow-wrap: break-word;
  position: relative;
}

ul li span strong {
  margin-right: 10px !important;
}
.content-wrapper p {
  margin-bottom: 20px;
}

.content-wrapper a {
  color: var(--primary-400);
}

.content-wrapper h2,
.contnet-wrapper h3,
.content-wrapper h4,
.content-wrapper h5,
.content-wrapper h6 {
  margin-bottom: 20px;
  font-size: 32px;
  background: linear-gradient(130deg, var(--primary-color) 0%, #111 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

/* CONTENT WRAPPER END */
/* HEADER START */
header {
  position: sticky;
  top: 0;
  z-index: 10;
}

.desktop-header.sticky {
  background-color: var(--primary-100);
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.desktop-header {
  padding: 10px 0;
  box-shadow: 0 0 20px 10px rgba(0, 0, 0, 0.05);
  background: #ffffffa6;
  position: fixed;
  width: 100%;
  backdrop-filter: blur(5px);
}

.header-logo-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-logo-menu .logo img {
  max-width: 250px;
}

@media (max-width: 1200px) {
  .header-logo-menu .logo img {
    max-width: 175px;
  }
}

.header-logo-menu .menu ul {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.header-logo-menu .menu ul li {
  list-style: none;
  position: relative;
}

.header-logo-menu .menu ul li:not(:last-child)::after {
  content: "|";
  position: absolute;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  color: #8b2224;
}

.header-logo-menu .menu ul .has-children ul li::after {
  content: "";
}

.header-logo-menu .menu .has-children ul .sub-children::after {
  content: "";
}

.header-logo-menu .menu .has-children ul .sub-children ul li::after {
  content: "";
}

.header-logo-menu .menu ul li a {
  padding: 40px 0;
  color: var(--primary-900);
  text-transform: capitalize;
  font-size: 18px;
}

@media (max-width: 1200px) {
  .header-logo-menu .menu ul li a {
    font-size: 14px;
  }
}
li.sub-children a i {
  transform: rotate(270deg);
}
.header-logo-menu .menu ul li a:hover {
  color: var(--primary-color);
}

.header-logo-menu .menu ul li ul li::after {
  content: "";
}

.header-logo-menu .menu ul li.has-children > a:after {
  margin-left: 3px;
}

.header-logo-menu .menu ul li:hover ul li a {
  color: #1e1e1e;
  display: block;
  white-space: nowrap;
  margin-right: 10px;
  padding: 7px 10px;
  width: 100%;
}

.header-logo-menu .menu ul li:hover ul li a:hover {
  color: var(--primary-color);
}

.header-logo-menu .menu ul ul {
  display: none;
  position: absolute;
  top: 30px;
  width: auto;
}

.header-logo-menu .menu ul li:hover ul {
  display: block;
  background-color: var(--primary-100);
  z-index: 10;
  padding: 0;
  top: 45px;
  margin: 0;
  margin-left: -3px;
  animation: fadeIn 1s;
  box-shadow: 0 0 20px 10px rgba(0, 0, 0, 0.05);
}

.header-logo-menu .menu ul li li.sub-children ul {
  display: none;
}

.header-logo-menu .menu ul li li.sub-children:hover ul {
  display: block;
  left: 100%;
  top: auto;
  margin-top: -35px;
}

.header-logo-menu .menu ul li:hover ul {
  min-width: 180px;
}

.header-logo-menu .menu ul li:hover ul li.sub-children > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.offer-btn {
  padding: 10px 30px;
  background: linear-gradient(130deg, var(--primary-color) 0%, #111 100%);
  color: white;
  border-radius: 5px;
}

/* MOBILE HEADER START */

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

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

.mobile-header {
  transition: all 0.3s ease;
  position: sticky;
  top: 0;
  z-index: 5;
  background-color: white;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.mobile-top {
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 500px) {
  .mobile-top {
    padding: 10px;
  }
}

.mobile-top .logo {
  width: 200px;
}

.menu-logo {
  display: inline-block;
  padding: 0 20px;
}

.hamburger {
  display: block;
  cursor: pointer;
}

.hamburger .bar {
  display: block;
  margin: 5px 0;
  height: 3px;
  width: 30px;
  border-radius: 10px;
  background-color: var(--primary-900);
  transition: 0.3s ease;
  position: relative;
  z-index: 13;
}

@media (min-width: 430px) {
  .hamburger.active .bar {
    background-color: white;
  }
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.header-wrapper {
  background: linear-gradient(
    to bottom,
    gainsboro 0%,
    rgba(255, 255, 255, 1) 100%
  );
  width: 50%;
  height: 100vh;
  padding: 15px 0;
  position: fixed;
  left: -100%;
  top: 0;
  z-index: 12;
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow-y: scroll;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.header-wrapper.active {
  left: 0;
}

@media (max-width: 768px) {
  .header-wrapper {
    width: 75%;
  }
}

@media (max-width: 430px) {
  .header-wrapper {
    width: 80%;
  }
}

.overlay {
  position: fixed;
  left: 0;
  width: 100vw;
  height: 120vh;
  background-color: rgba(0, 0, 0, 0.9) !important;
  z-index: 3;
  display: none;
  pointer-events: none;
  bottom: 0;
}

.overlay.active {
  display: block;
  pointer-events: all;
}

@media (max-width: 1200px) {
  .offer-btn {
    padding: 10px;
  }
}

.offer-btn:hover {
  color: white;
  opacity: 0.8;
}

/* Mobil menü sadece 992px altı için */
@media (max-width: 992px) {
  .sub-menu ul {
    display: none;
    /* Başlangıçta gizli */
    overflow: hidden;
  }

  .sub-menu-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 10px;
    border-bottom: 1px solid black;
  }

  .sub-menu-flex a {
    color: black;
  }

  .sub-menu ul li a {
    color: black;
  }

  .sub-menu i.fas {
    transition: transform 0.3s ease;
  }

  .sub-menu.open > .sub-menu-flex i.fas {
    transform: rotate(180deg);
  }

  .standart-link {
    padding: 10px;
    border-bottom: 1px solid black;
  }

  .standart-link a {
    color: black;
  }
  .header-wrapper .social {
    padding: 10px;
  }

  .header-wrapper .social .social-title {
    font-weight: bold;
    margin-bottom: 10px;
  }

  .header-wrapper .social-links {
    display: flex;
    align-items: center;
    gap: 5px;
  }

  .header-wrapper .social-links a {
    color: black;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  }
}

/* HOME SLIDER SECTION START */

.home-slider {
  position: relative;
  padding: 0;
}

.hero-item {
  display: block;
  position: relative;
}

.hero-item::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: rgba(0, 0, 0, 0);
}

.hero-item img {
  width: 100%;
}

.hero-item .hero-content {
  position: absolute;
  top: 80%;
  left: 10%;
  transform: translateY(-50%);
  color: white;
  z-index: 3;
  background: rgba(0, 0, 0, 0.5);
  padding: 15px 30px;
}

.hero-item .hero-content .title {
  font-size: 40px;
  font-weight: 900;
}

.hero-item .hero-content .desc {
  width: 75%;
}

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

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

  .hero-mobile {
    display: block;
  }
}

.swiper-pagination-bullet {
  background: var(--primary-400) !important;
  border-radius: var(--swiper-pagination-bullet-border-radius, 5px) !important;
  display: inline-block;
  height: var(
    --swiper-pagination-bullet-height,
    var(--swiper-pagination-bullet-size, 5px)
  ) !important;
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
  width: var(
    --swiper-pagination-bullet-width,
    var(--swiper-pagination-bullet-size, 25px)
  ) !important;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  font-size: 32px !important;
  color: var(--primary-400);
  background-color: rgba(255, 255, 255, 0.3);
  border: 0.3px solid var(--primary-400);
  width: 50px;
  height: 50px;
  padding: 0 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

@media (max-width: 992px) {
  .swiper-button-next:after,
  .swiper-rtl .swiper-button-prev:after {
    display: none;
  }
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  font-size: 32px !important;
  color: var(--primary-400);
  background-color: rgba(255, 255, 255, 0.3);
  border: 0.3px solid var(--primary-400);
  width: 50px;
  height: 50px;
  padding: 0 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

@media (max-width: 992px) {
  .swiper-button-prev:after,
  .swiper-rtl .swiper-button-next:after {
    display: none;
  }
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 30px) !important;
  left: auto;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 30px) !important;
  right: auto;
}

/* HOME SLIDER SECTION END */

/* PRODUCTS SECTION START */
.products .section-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 30px;
}

.products .section-title {
  color: var(--primary-400);
  border-left: 1px solid var(--primary-400);
  border-right: 1px solid var(--primary-400);
  display: inline-block;
  padding: 0 15px;
}

.products .section-desc {
  text-align: center;
  color: var(--primary-800);
}

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

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

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

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

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

.product-box {
  display: block;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border-radius: 10px;
  overflow: hidden;
  color: var(--primary-900);
}

.product-box .picture {
  position: relative;
  overflow: hidden;
}

.product-box .picture::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.2);
}

.product-box:hover .picture::after {
  opacity: 1;
}

.product-box .picture img {
  width: 100%;
  height: 201px;
  object-fit: cover;
  transition: all 0.3s ease;
}

.product-box:hover .picture img {
  transform: scale(1.1);
}

.product-box .picture button {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
  opacity: 0;
  z-index: 2;
  cursor: pointer;
  background: linear-gradient(130deg, var(--primary-color) 0%, #111 100%);
  color: var(--primary-100);
  border: none;
  padding: 12px 25px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-box:hover .picture button {
  top: 50%;
  opacity: 1;
}

.product-content {
  padding: 10px 25px 25px 25px;
}

.product-content .title {
  font-size: 20px;
  font-weight: bold;
  background: linear-gradient(130deg, var(--primary-color) 0%, #111 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.product-content .desc {
  border-bottom: 1px solid gainsboro;
  padding-bottom: 15px;
  margin-bottom: 10px;
}

.product-content span {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* PRODUCTS SECTION END */

/* BLOG SECTION START */

.section-top {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  margin-bottom: 30px;
}

.section-top .section-title {
  color: var(--primary-400);
  border-left: 1px solid var(--primary-400);
  border-right: 1px solid var(--primary-400);
  display: inline-block;
  padding: 0 15px;
  background: linear-gradient(130deg, var(--primary-color) 0%, #111 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.work-process .section-title {
  background: linear-gradient(130deg, var(--primary-color) 0%, #111 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-top .section-desc {
  color: var(--primary-800);
  text-align: center;
}

.blog-box {
  display: block;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border-radius: 10px;
  overflow: hidden;
  color: var(--primary-900);
}

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

.blog-box .picture {
  overflow: hidden;
}

.blog-box .picture img {
  width: 100%;
  transition: all 0.3s ease;
}

.blog-box:hover .picture img {
  transform: scale(1.1);
}

.blog-box .title {
  padding: 10px 25px 25px 25px;
  font-size: 20px;
  font-weight: bold;
  background: linear-gradient(130deg, var(--primary-color) 0%, #111 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.blogSlider {
  padding-bottom: 60px !important;
}

/* BLOG SECTION END */

/* SEO TEXT START */

.seo-text {
  background: var(--primary-700);
}

.seo-text .section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 15px;
  background: linear-gradient(130deg, var(--primary-color) 0%, #111 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 992px) {
  .seo-text .section-title {
    flex-direction: column;
    text-align: center;
  }
}

.section-title .left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-title .left i {
  font-size: 32px;
}

.seo-text .section-desc {
  text-align: center;
}

.blog-detail {
  margin: 40px auto 0 auto;
  max-width: 1300px;
  border-radius: 10px;
  background-color: var(--primary-100);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  overflow-y: auto;
  max-height: 280px;
  line-height: 1.7;
  color: #444;
  font-size: 15.5px;
}

.blog-detail::-webkit-scrollbar {
  width: 10px;
}

.blog-detail::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 5px;
}

.blog-detail::-webkit-scrollbar-thumb {
  background: var(--primary-400);
  border-radius: 5px;
}

.blog-detail::-webkit-scrollbar-thumb:hover {
  background: #a00;
}

.blog-detail .section-title {
  text-align: center;
}

.blog-detail h1 span {
  color: var(--primary-400) !important;
}

/* SEO TEXT END*/

/* WORK PROCESS SECTION START */

.work-process .section-title {
  text-align: center;
}

.work-process .section-desc {
  text-align: center;
}

@media (min-width: 1200px) {
  .work-process .grid-container {
    align-items: flex-start;
    grid-template-columns: repeat(4, 1fr);
  }
}

.work-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 20px;
}

.work-box:not(:last-child)::after {
  content: "➜";
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 27px;
  color: var(--primary-400);
}

@media (max-width: 992px) {
  .work-box:not(:last-child)::after {
    position: absolute;
    right: auto;
    top: 100%;
    transform: translateY(-50%);
    transform: rotate(90deg);
    font-size: 27px;
    color: var(--primary-400);
  }
}

.work-box .number {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--primary-400);
  color: var(--primary-100);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  position: relative;
  bottom: -15px;
  z-index: 2;
}

.work-box .icon {
  width: 85px;
  height: 85px;
  border-radius: 50%;
  background-color: var(--primary-100);
  color: var(--primary-400);
  border: 3px solid var(--primary-400);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.work-box:hover .icon {
  transform: scale(1.1);
  background: linear-gradient(130deg, var(--primary-color) 0%, #111 100%);
}

.work-box .icon i {
  font-size: 27px;
}

.work-box:hover .icon i {
  color: var(--primary-100);
}

@media (max-width: 992px) {
  .work-box .icon {
    transform: scale(1.1);
    background-color: var(--primary-400);
  }

  .work-box .icon i {
    color: var(--primary-100);
  }
}

.work-box .title {
  font-size: 24px;
  font-weight: 600;
  margin: 10px 0;
}

.work-box .desc {
  font-weight: 500;
  color: var(--primary-900);
}

/* WORK PROCESS SECTION END */

/* FOOTER START */

footer {
  background: linear-gradient(130deg, var(--primary-color) 0%, #111 100%);
  padding: 80px 0 0 0;
}

footer .logo img {
  max-width: 300px;
}

footer .container-fluid .wrapper {
  padding-bottom: 50px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 30px;
}

footer .footer-col:nth-child(1) {
  grid-column: span 3;
}

footer .footer-col:last-child {
  grid-column: span 3;
}

footer .footer-col {
  grid-column: span 2;
  width: 100%;
  position: relative;
}

@media (max-width: 1200px) {
  footer .footer-col:nth-child(1) {
    grid-column: span 12;
  }

  footer .footer-col {
    grid-column: span 3;
  }
}

@media (max-width: 992px) {
  footer .footer-col {
    grid-column: span 6;
  }
}

@media (max-width: 450px) {
  footer .footer-col {
    grid-column: span 12;
  }
}

footer .footer-col .social {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
}

footer .footer-col .social a i {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary-100);
  color: var(--primary-900);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

footer .footer-col .desc {
  color: var(--primary-600);
  padding-right: 40px;
}

footer .footer-col:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  width: 0.5px;
  height: 100%;
  background-color: #d3d3d34d;
}

@media (max-width: 1200px) {
  footer .footer-col:first-child::after {
    display: none;
  }
}

@media (max-width: 992px) {
  footer .footer-col:not(:last-child)::after {
    display: none;
  }
}

footer .footer-col .title {
  font-size: 24px;
  font-weight: bold;
  text-transform: uppercase;
  color: var(--primary-100);
  margin-bottom: 10px;
  position: relative;
}

footer .footer-col .title::after {
  content: "";
  position: absolute;
  left: 0;
  height: 0.5px;
  width: 100px;
  bottom: -5px;
  background-color: #d3d3d34d;
}

footer .footer-col ul li a {
  display: block;
  color: var(--primary-600);
  margin-bottom: 10px;
}

.copyright {
  border-top: 1px solid #d3d3d34d;
  padding: 30px 0;
  text-align: center;
  color: var(--primary-100);
}

@media (max-width: 992px) {
  .copyright {
    padding: 30px 0 105px 0;
  }
}

/* FOOTER END */

/* ANIMATION CSS START */

/* Başlangıç durumu */
.animate-section-slide-in {
  opacity: 0;
  transform: translateY(60px);
}

/* Aktif animasyon */
.animate-section-slide-in-active {
  animation: sectionSlideUpFade 0.9s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

/* Keyframes */
@keyframes sectionSlideUpFade {
  0% {
    transform: translateY(60px);
    opacity: 0;
  }

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

/* ANIMATION CSS END */

/* CTA SECTION START */

.cta {
  background-color: var(--primary-100);
  padding: 60px 0;
  border-top: 1px solid var(--primary-600);
}

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

@media (max-width: 450px) {
  .cta .container {
    padding: 0 30px;
  }
}

.cta .cta-left {
  grid-column: span 7;
}

@media (max-width: 992px) {
  .cta .cta-left {
    grid-column: span 12;
    text-align: center;
  }
}

.cta .cta-left .title {
  font-size: 32px;
  font-weight: 700;
  background: linear-gradient(130deg, var(--primary-color) 0%, #111 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta .cta-right {
  grid-column: span 5;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
}

@media (max-width: 992px) {
  .cta .cta-right {
    grid-column: span 12;
    justify-content: center;
  }
}

@media (max-width: 450px) {
  .cta .cta-right {
    flex-direction: column;
  }
}

.cta .cta-right a {
  padding: 15px 40px;
  border-radius: 10px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  font-size: 18px;
}

@media (max-width: 450px) {
  .cta .cta-right a {
    padding: 15px 0;
    text-align: center;
    width: 100%;
  }
}

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

.cta .cta-right a:nth-child(1) {
  background: linear-gradient(130deg, var(--primary-color) 0%, #111 100%);
  color: var(--primary-100);
}

.cta .cta-right a:nth-child(2) {
  background-color: var(--primary-100);
  color: var(--primary-400);
  border: 1px solid var(--primary-400);
}

/* CTA SECTION END */

/* SERVICES SECTION START */

.services .section-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 30px;
}

.services .section-title {
  color: var(--primary-400);
  border-left: 1px solid var(--primary-400);
  border-right: 1px solid var(--primary-400);
  display: inline-block;
  padding: 0 15px;
}

.services .section-desc {
  text-align: center;
  color: var(--primary-800);
}

.services .tab-btn {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: center;
}

@media (max-width: 992px) {
  .services .tab-btn {
    flex-direction: column;
  }
}

.tab-btn button.active {
  background: linear-gradient(130deg, var(--primary-color) 0%, #111 100%);
  color: var(--primary-100);
  border-color: var(--primary-400);
}

.tab-btn button {
  background: #fff;
  border: 2px solid #ccc;
  color: #333;
  font-weight: 600;
  padding: 12px 25px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 5px;
}

@media (max-width: 992px) {
  .services .tab-btn button {
    width: 100%;
    justify-content: center;
    padding: 20px 0;
  }
}

.tab-btn button:hover {
  border-color: var(--primary-400);
}

.tab-content {
  display: none;
  padding: 40px 0 0 0;
}

.tab-content.active {
  display: block;
}

/* Görsel + Yazı hizalama */
.tab-inner {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: center;
  gap: 30px;
}

@media (max-width: 992px) {
  .tab-inner {
    padding: 0 30px;
  }
}

.tab-image {
  grid-column: span 6;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.tab-text {
  grid-column: span 6;
}

@media (max-width: 992px) {
  .tab-image {
    grid-column: span 12;
  }

  .tab-text {
    grid-column: span 12;
  }
}

.tab-text .title {
  color: var(--primary-400);
  font-size: 24px;
  font-weight: 600;
}

.tab-router {
  display: inline-block;
  background: linear-gradient(130deg, var(--primary-color) 0%, #111 100%);
  color: var(--primary-100);
  padding: 10px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
}

@media (max-width: 992px) {
  .tab-router {
    width: 100%;
    padding: 20px 0;
    text-align: center;
  }
}

/* SERVICES SECTION END */

/* CONTACT PAGE START */

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

.contact-page .contact-info {
  grid-column: span 6;
  padding: 20px;
}

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

.contact-page .section-title {
  margin-bottom: 30px;
  background: linear-gradient(130deg, var(--primary-color) 0%, #111 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.contact-page .contact-info ul li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-page .contact-info ul li i {
  font-size: 24px;
  padding: 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-400);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  /* background: #ed213a;
  background: -webkit-linear-gradient(to right, #93291e, #ed213a);
  background: linear-gradient(to right, #93291e, #ed213a); */
}

.contact-page .contact-info ul li a {
  color: var(--primary-900);
}

.contact-page .contact-info ul li span {
  padding-right: 30px;
}

.contact-page .contact-info ul .title {
  font-size: 24px;
  font-weight: bold;
}

.contact-page .form-col {
  grid-column: span 6;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  padding: 20px;
}

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

form textarea,
form input {
  font-family: inherit;
  width: 100%;
}

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

.contact-form input,
.contact-form textarea {
  padding: 10px;
  border: 1px solid gainsboro;
}

.contact-form button {
  padding: 15px;
  border: 1px solid var(--primary-400);
  background: linear-gradient(130deg, var(--primary-color) 0%, #111 100%);
  color: var(--primary-100);
  border-radius: 10px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  cursor: pointer;
}

.maps {
  border-radius: 10px;
  overflow: hidden;
}

.maps .title {
  font-size: 24px;
  font-weight: bold;
  padding: 10px;
  color: var(--primary-100);
  background: linear-gradient(130deg, var(--primary-color) 0%, #111 100%);
}

/* CONTACT PAGE END */

/* BREADCRUMB START */

.breadcrumb-container {
  padding: 80px 0 20px 0;
  background: linear-gradient(130deg, var(--primary-color) 0%, #111 100%);
}

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

.breadcrumb-container .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  color: var(--primary-100);
}

.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: -20px;
  top: 50%;
  transform: translateY(-50%);
}

.breadcrumb-container .container .links li a {
  color: var(--primary-100);
}

/* BREADCRUMB END */

/* PAGINATION START */

.pagination {
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  padding-left: 0;
  list-style: none;
  border-radius: 0.25rem;
  margin-top: 30px;
}

.page-item a,
.page-link {
  position: relative;
  display: block;
  padding: 0.5rem 0.75rem;
  margin-left: -1px;
  line-height: 1.25;
  color: #a52523;
  background-color: #fff;
  border: 1px solid #dee2e6;
}

.page-link:hover {
  z-index: 2;
  color: #961c1a;
  text-decoration: none;
  background-color: #e9ecef;
  border-color: #dee2e6;
}

.page-link:focus {
  z-index: 2;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.page-link:not(:disabled):not(.disabled) {
  cursor: pointer;
}

.page-item:first-child .page-link {
  margin-left: 0;
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.page-item:last-child .page-link {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}

.page-item.active .page-link {
  z-index: 1;
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.page-item.disabled .page-link {
  color: #6c757d;
  pointer-events: none;
  cursor: auto;
  background-color: #fff;
  border-color: #dee2e6;
}

.pagination-lg .page-link {
  padding: 0.75rem 1.5rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

.pagination-lg .page-item:first-child .page-link {
  border-top-left-radius: 0.3rem;
  border-bottom-left-radius: 0.3rem;
}

.pagination-lg .page-item:last-child .page-link {
  border-top-right-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem;
}

.pagination-sm .page-link {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
}

.pagination-sm .page-item:first-child .page-link {
  border-top-left-radius: 0.2rem;
  border-bottom-left-radius: 0.2rem;
}

.pagination-sm .page-item:last-child .page-link {
  border-top-right-radius: 0.2rem;
  border-bottom-right-radius: 0.2rem;
}

/* PAGINATION END */

/* SERVICES DETAIL PAGE */
.service-talep {
  padding: 0 0 60px 0;
}

.service-talep .section-title {
  margin-bottom: 30px;
}

.service-talep .form-bottom {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 15px;
}

.service-talep .form-bottom button {
  padding: 15px 60px;
}

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

.services-box .picture img {
  width: 100%;
}

.services-box-bottom {
  padding: 20px;
}

.services-box {
  display: block;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border-radius: 10px;
  overflow: hidden;
  color: var(--primary-900);
}

.services-box .picture {
  position: relative;
  overflow: hidden;
}

.services-box .picture::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.7);
}

.services-box:hover .picture::after {
  opacity: 1;
}

.services-box .picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.services-box:hover .picture img {
  transform: scale(1.1);
}

.services-box .picture button {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
  opacity: 0;
  z-index: 2;
  cursor: pointer;
  background: linear-gradient(130deg, var(--primary-color) 0%, #111 100%);
  color: var(--primary-100);
  border: none;
  padding: 12px 25px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.services-box:hover .picture button {
  top: 50%;
  opacity: 1;
}

.services-box-bottom .title {
  font-size: 20px;
  font-weight: bold;
  background: linear-gradient(130deg, var(--primary-color) 0%, #111 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.services-box-bottom .desc {
  margin-bottom: 15px;
}

/* SERVICES DETAIL END */

/* CALC PAGE START */

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

@media (max-width: 992px) {
  .top-selector {
    flex-direction: column-reverse;
  }
}

.top-selector .top-selector-left {
  grid-column: span 6;
  display: flex;
}

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

.top-selector-btn {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.top-selector .top-selector-right {
  grid-column: span 6;
}

@media (max-width: 992px) {
  .top-selector .top-selector-right {
    grid-column: span 12;
  }
}

.top-content-area {
  padding: 30px;
  border: dashed 3px #c70d0f;
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.top-content-area img {
  max-width: 45px;
  margin-right: 30px;
  margin-bottom: 0;
}

.top-selector-item {
  height: max-content;
}

.top-selector-item img {
  padding: 10px 10px 7px 10px;
  background-color: var(--primary-400);
  width: 45px;
  height: 42px;
  opacity: 0.5;
}

.top-selector-item input {
  display: none;
}

.top-selector-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: inherit;
}

.top-selector-item {
  margin-right: 10px;
}


.top-selector-item input:checked + img {
  opacity: 1;
}

.calc-input-label {
  border: none;
  outline: 0;
}

.calc-input {
  display: flex;
  margin-bottom: 10px;
}

input.cacl-input-element {
  width: 100%;
  margin-right: 10px;
}

input[name="totalweight"] {
  border: none;
  pointer-events: none;
  font-weight: 600;
  font-size: 25px;
  text-align: center;
}

/* Genel form alanı */
form[name="weightcalc"] {
  width: 100%;
  /* margin: 30px auto; */
  padding: 20px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Resim */
form[name="weightcalc"] img {
  display: block;
  max-width: 100%;
  margin: 0 auto 20px;
  border-radius: 10px;
  object-fit: contain;
}

/* Satırlar */
.calc-input {
  display: grid;
  grid-template-columns: 1fr 150px 115px;
  gap: 8px;
  margin-bottom: 12px;
  align-items: center;
}

/* Label alanı */
.calc-input-label {
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid #e3e3e3;
  background: #f7f7f7;
  font-size: 13px;
  color: #555;
}

/* Input */
.cacl-input-element {
  padding: 8px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
  outline: none;
  transition: 0.2s;
}

/* Select */
select.cacl-input-element {
  background: white;
  cursor: pointer;
}

/* Hesapla butonu */
#calcbtn {
  width: 100%;
  margin-top: 15px;
  padding: 12px;
  border-radius: 30px;
  border: none;
  background: linear-gradient(130deg, var(--primary-color) 0%, #111 100%);
  color: var(--primary-100);
  font-weight: 600;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: 0.2s;
}

#calcbtn:hover {
  transform: translateY(-1px);
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

/* Alt alan */
.calculation-bottom {
  margin-top: 10px;
  text-align: center;
}

/* Teklif al butonu */
.btn-teklif {
  background: #1f2937;
  color: white;
  border-radius: 30px;
  padding: 10px 25px;
  transition: 0.2s;
}

.btn-teklif:hover {
  background: #111827;
}

/* Sonuç input */
input[name="totalweight"] {
  width: 100%;
  margin-top: 12px;
  padding: 10px;
  border-radius: 8px;
  border: 1px dashed #ccc;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  background: #fafafa;
}

/* Gizli alan */
.hide {
  display: none;
}

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

/* CALC PAGE END*/

/* TABLE CSS START */

/* TABLE */
.content-wrapper table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.04);
}

/* HEADER */
.content-wrapper thead {
  background: var(--primary-400);
}

.content-wrapper thead tr td {
  color: white;
}

.content-wrapper thead th {
  text-align: left;
  padding: 14px 18px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

/* BODY */
.content-wrapper tbody tr {
  transition: 0.2s ease;
}

.content-wrapper tbody tr:hover {
  background: rgba(99, 102, 241, 0.05);
  transform: scale(1.01);
}

/* CELL */
.content-wrapper td {
  padding: 14px 18px;
  font-size: 14px;
  color: #374151;
  border-bottom: 1px solid #eef0f4;
}

/* ZEBRA STRIPE */
.content-wrapper tbody tr:nth-child(even) {
  background-color: #fafbff;
}

/* FIRST COLUMN BOOST */
.content-wrapper td:first-child {
  font-weight: 600;
}

/* LAST ROW BORDER REMOVE */
.content-wrapper tbody tr:last-child td {
  border-bottom: none;
}

/* RESPONSIVE (MOBİL KART GÖRÜNÜMÜ) */
@media (max-width: 768px) {
  .content-wrapper table,
  .content-wrapper thead,
  .content-wrapper tbody,
  .content-wrapper th,
  .content-wrapper td,
  .content-wrapper tr {
    display: block;
    width: 100%;
  }

  .content-wrapper thead {
    display: none;
  }

  .content-wrapper tr {
    background: #fff;
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  }

  .content-wrapper td {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    border-bottom: 1px solid #eee;
  }

  .content-wrapper td::before {
    content: attr(data-label);
    font-weight: 600;
    color: #6366f1;
  }

  .content-wrapper tr:last-child td:last-child {
    border-bottom: none;
  }
}

/* TABLE CSS END */

/* ABOUT PAGE START */

/* ===== ABOUT PAGE BASE ===== */
.about-page {
  padding-bottom: 80px;
}

/* ===== HOME ABOUT SECTION ===== */
.home-about {
  position: relative;
}

.home-about .container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
  position: relative;
}

/* ===== TITLES ===== */
.section-sub-title {
  color: var(--primary-400);
  /* bordo alt tonu */
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 8px;
}

.section-title {
  font-size: 42px;
  font-weight: 800;
  color: var(--primary-400);
  /* koyu bordo */
  line-height: 1.2;
}

.section-title-ab {
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, #4d001f, #7a1f3d);
  /* bordo gradient */
  margin: 15px 0 25px;
}

/* ===== DESCRIPTION ===== */
.about-title .desc {
  color: var(--primary-900);
  line-height: 1.7;
  font-size: 16px;
  max-width: 520px;
}

/* ===== IMAGE ===== */
.picture2 {
  text-align: center;
}

.picture2 img {
  border-radius: 20px;
  max-width: 100%;
  transition: transform 0.5s ease;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.picture2 img:hover {
  transform: scale(1.05);
}

/* ===== ABOUT BOXES ===== */
.about-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  width: 100%;
  background: white;
  /* açık bordo */
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  padding: 15px 20px;
  border-radius: 12px;
  transition: 0.3s ease;
}

.about-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(77, 0, 31, 0.2);
}

.about-box .icon {
  width: 45px;
  height: 45px;
  background: #4d001f;
  /* koyu bordo */
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 18px;
  transition: background 0.3s ease;
}

.about-box:hover .icon {
  background: #7a1f3d;
  /* hover bordo ton */
}

.box-title {
  font-weight: 600;
  color: #4d001f;
}

/* ====================== */
/* ===== CENTER BLOCK === */
/* ====================== */
.block-full-center {
  padding: 40px 0;
  background: var(--primary-700);
  text-align: center;
}

.block-full-center .content-wrapper {
  padding: 0;
}

.section-center-title .section-title {
  margin: auto;
}

.block-full-center p {
  margin: 20px auto 0;
  line-height: 1.8;
}

/* ====================== */
/* ===== IMAGE BLOCK ==== */
/* ====================== */
.block-big-left,
.block-big-right {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.block-big-left .bg,
.block-big-right .bg {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 55%;
  background-size: cover;
  background-position: center;
  filter: brightness(0.8);
}

.block-big-left .bg {
  left: 0;
}

.block-big-right .bg {
  right: 0;
}

.block-big-left .container,
.block-big-right .container {
  position: relative;
  z-index: 2;
}

.snake-row {
  display: flex;
  align-items: center;
  gap: 40px;
  margin: 80px 0;
}

.snake-row.reverse {
  flex-direction: row-reverse;
}

.snake-image {
  flex: 1;
}

.snake-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
}

.snake-content {
  flex: 1;
}

/* Mobil */
@media (max-width: 768px) {
  .snake-row,
  .snake-row.reverse {
    flex-direction: column;
  }
}

/* ====================== */
/* ===== RESPONSIVE ===== */
/* ====================== */
@media (max-width: 991px) {
  .home-about .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-box {
    margin-left: auto;
    margin-right: auto;
  }

  .block-big-left .bg,
  .block-big-right .bg {
    position: relative;
    width: 100%;
    height: 300px;
  }

  .block-big-left,
  .block-big-right {
    padding: 0;
  }

  .block-big-left .col-md-5,
  .block-big-right .col-md-5 {
    margin: 0;
    margin-top: -50px;
    position: relative;
    z-index: 3;
  }
}

@media (max-width: 575px) {
  .section-title {
    font-size: 28px;
  }

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

/* ABOUT PAGE END */

/* FOOTER STICKY MENU START */

.footer-sticky {
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background: black;
  position: fixed;
  z-index: 7 !important;
  width: 100%;
  bottom: 0;
  padding: 0 0.5rem 1.15rem 0.5rem;
  border-top-left-radius: 2.15rem;
  border-top-right-radius: 2.15rem;
  border-top: 6px solid var(--primary-color);
}

@media (max-width: 992px) {
  .footer-sticky {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.footer-sticky .sticky-box {
  width: 20%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
}

.footer-sticky .sticky-box .icon {
  height: 48px;
  width: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: transparent;
}

.footer-sticky .sticky-box .text {
  font-size: 14px;
  color: white;
  text-align: center;
}

@media (max-width: 568px) {
  .footer-sticky .sticky-box .text {
    font-size: 10px;
  }
}

.footer-sticky .top-box .icon::before {
  content: "";
  position: absolute;
  height: 66px;
  width: 66px;
  border: 1px solid white;
  border-radius: 50%;
  opacity: 0.5;
}

.footer-sticky .top-box .icon::after {
  content: "";
  position: absolute;
  height: 56px;
  width: 56px;
  border: 1px solid white;
  border-radius: 50%;
  opacity: 0.75;
}

.footer-sticky .sticky-box .icon i {
  font-size: 22px;
  color: white;
}

.footer-sticky .top-box .icon i {
  font-size: 22px;
  color: white;
}

.footer-sticky .top-box {
  -webkit-transform: translateY(-1.5rem);
  transform: translateY(-1.5rem);
}

.footer-sticky .top-box .text {
  -webkit-transform: translateY(1.5rem);
  transform: translateY(1.5rem);
  text-align: center;
}

.footer-sticky .top-box .icon {
  background: var(--primary-900);
  border-radius: 50%;
  position: relative;
}

/* FOOTER STICKY BUTTON END */

/* TOCH CSS START */
.fast-links {
  display: block;
}

.fast-links ul {
  padding: 35px 30px;
  background-color: #922b2c;
  display: inline-block;
  color: #fff;
  margin: 20px 0;
}

.fast-links ul::before {
  content: "İçindekiler";
  font-size: 20px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 5px;
}

.fast-links a {
  color: #fff;
}

.fast-links ul li::before {
  color: #fff;
  font-size: 20px;
  line-height: normal;
  margin-right: 5px;
}

.fast-links li {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
  margin-left: 10px;
}

@media (max-width: 576px) {
  .fast-links ul {
    padding: 20px 15px;
    margin: 0px 0 10px;
  }
}

.content-top-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

.content-image img {
  width: 100%;
  border-radius: 10px;
}

.content-toc {
  background: #f8f8f8;
  padding: 20px;
  border-radius: 10px;
}

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

.price-detail-img {
  float: right;
}

.service-detail-img {
  float: right;
}

.cms_youtube-embedtoLazy img {
  width: auto;
}
.cms_youtube-embedtoLazy {
  display: inline-block;
  position: relative;
  width: 560px;
  height: 314px;
  max-width: 100%;
  overflow: hidden;
}

.cms_youtube-embedtoLazy .ytp-thumbnail-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cms_youtube-embedtoLazy .ytp-play-button-bg {
  -webkit-transition: fill 0.1s cubic-bezier(0.4, 0, 1, 1),
    fill-opacity 0.1s cubic-bezier(0.4, 0, 1, 1);
  transition: fill 0.1s cubic-bezier(0.4, 0, 1, 1),
    fill-opacity 0.1s cubic-bezier(0.4, 0, 1, 1);
  fill: #212121;
  fill-opacity: 0.8;
}
.cms_youtube-embedtoLazy .ytp-play-button-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgb(0 0 0 / 1%);
}
.cms_youtube-embedtoLazy:hover .ytp-play-button-bg {
  -webkit-transition: fill 0.1s cubic-bezier(0, 0, 0.2, 1),
    fill-opacity 0.1s cubic-bezier(0, 0, 0.2, 1);
  transition: fill 0.1s cubic-bezier(0, 0, 0.2, 1),
    fill-opacity 0.1s cubic-bezier(0, 0, 0.2, 1);
  fill: #f00;
  fill-opacity: 1;
}
.cms_youtube-embedtoLazy:hover .ytp-play-button-wrapper {
  background-color: rgb(0 0 0 / 2%);
}

/* TOCH CSS END */

/* ERROR PAGE START */

.error-page {
  padding: 120px 0 30px 0;
}

.error-page .form-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.error-page .form-contact .form-group input {
  padding: 15px;
}

/* ERROR PAGE END */

.tableScroll {
  display: none;
}
@media (max-width: 992px) {
  .tableScroll {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
  }
  .tableScroll i {
    margin-left: 10px;
    font-size: 16px;
    font-weight: 700;
    animation: tablescroll 0.5s infinite;
  }
}
@keyframes tablescroll {
  0% {
    margin-left: 10px;
  }
  50% {
    margin-left: 2px;
    margin-right: 8px;
  }
  100% {
    margin-left: 10px;
  }
}
::-webkit-scrollbar {
  height: 2px;
  width: 2px;
}
@media (min-width: 992px) {
  ::-webkit-scrollbar {
    height: 10px;
    width: 10px;
  }
}
::-webkit-scrollbar-track {
  background: rgb(51 51 51 / 0.2);
}
::-webkit-scrollbar-thumb {
  background: rgb(204 117 118);
}
::-webkit-scrollbar-thumb:hover {
  background: #a13a3c;
}

.product-sub-list .grid-container {
  margin-bottom: 30px;
}

.blog-detail-page-img {
  float: right;
  padding-left: 15px;
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 992px) {
  .blog-detail-page-img {
    width: 100%;
  }
}

.product-detail-img {
  float: right;
  padding-left: 15px;
}

.top-selector-right img {
  width: 100%;
}

.business-title {
  background: linear-gradient(130deg, var(--primary-color) 0%, #111 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.business-area p {
  font-size: 18px;
}

.business-table table tr td {
  font-size: 18px;
}

.business-table ul {
  margin: 20px 0 !important;
}

.about-title .section-title {
  font-size: 32px;
  background: linear-gradient(130deg, var(--primary-color) 0%, #111 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.form-contact {
  max-width: 750px;
  margin: 0 auto;
  padding: 25px;
  font-family: Arial, sans-serif;
  display: grid;
  gap: 20px;
}

/* 2 sütun grid yapısı */
.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* Full width alanlar */
.full {
  grid-column: 1 / -1;
}

/* Input & textarea */
.form-contact .form-control,
.form-contact textarea,
.form-contact input[type="file"] {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background: #fff;
  font-size: 15px;
  transition: all 0.2s ease;
}

.form-contact .form-control:focus,
.form-contact textarea:focus {
  border-color: #999;
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.08);
}

/* File input alanı */
.cv-form .form-control {
  padding: 14px;
  border: 1px dashed #aaa;
  background: #fafafa;
  border-radius: 10px;
}

.cv-form span {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
}

/* Button */
.form-contact .btn {
  width: 100%;
  padding: 14px;
  font-size: 16px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(130deg, var(--primary-color) 0%, #111 100%) !important;
  color: var(--primary-100);
  cursor: pointer;
  transition: 0.2s;
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr; /* Tek kolon */
  }
}
