@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
body {
  overflow-x: hidden;
}
/* GENERAL CSS START */

html {
  scroll-behavior: smooth;
}

ol,
ul {
  margin: 0 !important;
  padding: 0 !important;
}

a {
  text-decoration: none !important;
  font-size: 16px;
  transition: all 0.3s ease;
  color: black;
}

li {
  list-style: none;
}

section {
  padding: 60px 0;
  scroll-margin-top: 120px;
}

@media (max-width: 992px) {
  section {
    scroll-margin-top: 180px;
  }
}

.no-scroll {
  overflow: hidden;
}

img {
  max-width: 100%;
}

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

.align-end {
  align-items: flex-end;
}

.align-start {
  align-items: flex-start;
}

.justify-center {
  justify-content: center;
}

.section-title {
  font-size: 32px;
  font-weight: 600;
  color: itewhite;
}

@media (max-width: 768px) {
  .section-title {
    text-align: center;
    font-size: 24px;
  }
}

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

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

@media (max-width: 1320px) {
  .container {
    padding-inline: 15px;
  }
}

/* GENERAL CSS END */

/* CONTENT WRAPPER START */

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

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

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

.content-wrapper p {
    margin-bottom: 20px;
    color: #222;
    line-height:22px;
}

.content-wrapper h2,
.contnet-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;
  height: auto;
  margin: 20px 0;
}

/* CONTENT WRAPPER END */

/* === HEADER === */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  color: #fff;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

header.sticky {
  background-color: #000;
}

/* --- Header Top --- */
.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  padding: 6px 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 992px) {
  .header-top {
    background-color: black;
    padding: 6px 15px;
  }
}

.header-top .left span {
  margin-right: 20px;
}

.header-top a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.header-top a:hover {
  color: #f5c542;
}

.header-top .right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header-top .social a {
  color: #fff;
  margin-right: 10px;
  font-size: 16px;
  transition: 0.3s;
}

.header-top .social a:hover {
  color: #f5c542;
}

.header-top .divider {
  height: 20px;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.3);
  margin: 0 10px;
}

.header-top .lang img {
  width: 24px;
  height: 20px;
  border-radius: 4px;
  cursor: pointer;
}

/* --- Header Main --- */
.header-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 60px;
}

.header-main .logo img {
  height: 55px;
}

.header-main nav ul {
  display: flex;
  gap: 30px;
}

.header-main nav ul li {
  position: relative;
}

.header-main nav ul li::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background-color: white;
  transition: all 0.3s ease;
}

.header-main nav ul li:hover::after {
  width: 100%;
}

.header-main nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.header-main .cta a {
  background-color: #aa1a17;
  color: #000;
  padding: 10px 22px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
  color: white;
}

.header-main .cta a:hover {
  background-color: #fff;
  color: black;
}

/* MOBILE HEADER START */

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

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

  .desktop-header {
    display: none;
  }
}

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

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

.mobile-top .logo img {
  max-width: 150px;
}

.hamburger {
  display: block;
  cursor: pointer;
  position: relative;
  right: 0;
}

.hamburger::after {
  content: "MENÜ";
  position: absolute;
  left: -55px;
  top: 50%;
  color: var(--white-text);
  transform: translateY(-50%);
  z-index: 13;
}

.hamburger.active::after {
  content: "KAPAT";
  color: var(--white-text);
}

.hamburger .bar {
  display: block;
  margin: 5px 0;
  height: 3px;
  width: 30px;
  border-radius: 10px;
  background-color: white;
  transition: all 0.3s ease;
  margin-left: auto;
  position: relative;
  z-index: 13;
}

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

@media (max-width: 500px) {
  .hamburger.active::after {
    display: none;
  }

  .hamburger.active .bar {
    display: none;
  }
}

.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 {
  padding-top: 15px;
  background-color: black;
  width: 50%;
  height: 100vh;
  position: fixed;
  left: -100%;
  top: 0;
  z-index: 12;
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.header-wrapper .logo {
  margin-bottom: 15px;
  padding-left: 10px;
}

.header-wrapper .logo img {
  width: 180px;
}

.header-wrapper nav ul li {
  border-bottom: 1px solid white;
}

.header-wrapper nav ul li a {
  padding: 10px;
  display: block;
  color: white;
}

.header-wrapper .social {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 15px;
  padding-left: 10px;
}

.header-wrapper .social a i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #aa1a17;
  background-color: white;
  color: #aa1a17;
  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: 90%;
  }
}

.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;
}

.header-contact {
  display: flex;
  flex-direction: column;
}

.header-contact a {
  border-bottom: 1px solid white;
  color: white;
  display: block;
  padding: 10px;
}

/* MOBILE HEADER END */

/* === SLIDER === */
.swiper {
  width: 100%;
  height: 100vh;
}

.swiper-slide {
  position: relative;
}

.swiper-slide img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  filter: brightness(55%);
}

/* === SLIDER CONTENT (YENİ STİL) === */
.slider-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 10;
  max-width: 700px;
  width: 90%;
  padding: 30px 25px;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(2px);
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.4);
}

.slider-content .h1 {
  font-size: 46px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
}

.slider-content p {
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.slider-content a {
  display: inline-block;
  background-color: #f5c542;
  color: #000;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.slider-content a:hover {
  background-color: #fff;
}

/* === HAKKIMIZDA === */
.about-section {
  width: 100%;
  background-color: white;
  padding: 100px 0;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

.about-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.about-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

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

.about-image {
  position: relative;
}

.about-image::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: -30px;
  bottom: -30px;
  background-color: #f5c542;
  border-radius: 12px;
  z-index: -1;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.5s ease;
}

.about-image img:hover {
  transform: scale(1.03);
}

.about-title {
  font-size: 36px;
  color: #222;
  margin-bottom: 10px;
  position: relative;
}

.about-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: #f5c542;
  border-radius: 3px;
}

.about-subtitle {
  font-size: 20px;
  font-weight: 500;
  color: #555;
  margin-bottom: 20px;
}

.about-text {
  font-size: 16px;
  color: #333;
  line-height: 1.7;
  margin-bottom: 16px;
}

.about-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #f5c542;
  color: #000;
  font-weight: 600;
  text-decoration: none;
  padding: 12px 26px;
  border-radius: 25px;
  margin-top: 10px;
  transition: 0.3s;
}

.about-btn:hover {
  background-color: #000;
  color: #fff;
}

/* === ÜRÜNLER === */
.products {
  background-color: #f9f9f9;
  padding: 100px 0;
}

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

.products .h2 {
  font-size: 36px;
  color: #222;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.products .h2::after {
  content: "";
  width: 70px;
  height: 3px;
  background-color: #f5c542;
  display: block;
  margin: 10px auto 0;
  border-radius: 3px;
}

.product-group {
  margin-bottom: 90px;
}

.product-group .product-category-title {
  font-size: 26px;
  color: #b12a1f;
  margin-bottom: 30px;
  text-align: center;
  font-weight: 700;
}

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

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

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

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

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

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

.product-card {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease-out;
}

.product-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.product-card img {
  width: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.product-card .info {
  padding: 20px;
  text-align: center;
}

.product-card .h4 {
  font-size: 18px;
  color: #222;
  font-weight: 600;
  margin-bottom: 10px;
}

.product-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* === NEDEN BİZ === */
.why-us {
  background-color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.why-us::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(rgba(245, 197, 66, 0.2), transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.why-us .h2 {
  font-size: 36px;
  color: #222;
  font-weight: 700;
  margin-bottom: 50px;
  position: relative;
}

.why-us .h2::after {
  content: "";
  width: 70px;
  height: 3px;
  background-color: #f5c542;
  display: block;
  margin: 10px auto 0;
  border-radius: 3px;
}

.why-us-container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 40px;
  position: relative;
  z-index: 1;
}

.why-card {
  grid-column: span 3;
  background-color: #f9f9f9;
  border-radius: 12px;
  padding: 40px 25px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(40px);
}

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

.why-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.why-card i {
  font-size: 40px;
  color: #f5c542;
  margin-bottom: 20px;
}

.why-card .h3 {
  font-size: 20px;
  color: #222;
  font-weight: 600;
  margin-bottom: 12px;
}

.why-card p {
  color: #555;
  font-size: 15px;
  line-height: 1.7;
}

/* === CTA === */
.cta-footer {
  padding: 0;
}
.cta-section {
  background-color: #aa1a17;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(rgba(255, 255, 255, 0.1), transparent 70%);
  top: -100px;
  left: -100px;
  border-radius: 50%;
}

.cta-section .h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}

.cta-section p {
  font-size: 18px;
  color: #e8e8e8;
  margin-bottom: 40px;
  line-height: 1.6;
}

.cta-section a.btn {
  background-color: white;
  color: #0a2647;
  padding: 14px 38px;
  border-radius: 40px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.cta-section a.btn:hover {
  opacity: 0.8;
}

/* === FOOTER === */
footer {
  background-color: #f3f3f3;
  color: black;
  padding: 60px 0 25px;
  position: relative;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  padding: 0 40px;
}

.footer-logo img {
  width: 180px;
  margin-bottom: 20px;
}

.footer-about p {
  line-height: 1.7;
  font-size: 15px;
  color: black;
}

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

.footer-contact a {
    display: flex;
    gap:10px;
}

.footer-links .h4,
.footer-contact .h4 {
  font-size: 18px;
  color: black;
  position: relative;
}

.footer-links .h4::after,
.footer-contact .h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  height: 2px;
  background-color: #aa1a17;
  width: 25%;
}

@media (max-width: 992px) {
  .footer-links .h4::after,
  .footer-contact .h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

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

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

.footer-links ul li a {
  color: black;
  text-decoration: none;
  transition: all 0.3s;
}

.footer-links ul li a:hover {
  color: #aa1a17;
}

footer .social a {
  display: inline-block;
  margin-right: 12px;
  margin-bottom: 12px;
  color: #aa1a17;
  font-size: 20px;
  transition: all 0.3s;
}

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

.footer-bottom {
  text-align: center;
  border-top: 1px solid #000;
  margin-top: 50px;
  padding-top: 20px;
  font-size: 14px;
  color: black;
}

.btn i {
  margin-right: 8px;
  font-size: 15px;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .header-top {
    padding: 6px 20px;
    font-size: 13px;
  }

  .header-main {
    flex-direction: column;
    gap: 10px;
    padding: 10px 20px;
  }

  .header-main nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .slider-content .h1 {
    font-size: 30px;
  }

  .slider-content p {
    font-size: 15px;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .about-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .products .h2 {
    font-size: 30px;
  }

  .product-card img {
    height: 180px;
  }

  .why-us {
    padding: 70px 0;
  }

  .why-card {
    padding: 30px 20px;
  }

  .cta-section .h2 {
    font-size: 28px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-social a {
    margin: 0 8px;
  }
}

/* BREADCRUMB START */

.breadcrumb-container {
background-color:#5a5a5a;
  padding: 170px 0 30px 0;
}

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

.breadcrumb-container .container {
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

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

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

.breadcrumb-container .links li:not(:last-child)::after {
  content: "/";
  position: absolute;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
}

.breadcrumb-container .links li a {
  color: white;
}

/* BREADCRUMB END */

/* CONTACT PAGE START */

.contact-page {
  background-color: white;
}

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

.contact-page .contact-left {
  grid-column: span 6;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-page .contact-left .section-title {
  font-size: 27px;
  margin-bottom: 15px;
  font-weight: 300;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.contact-item i {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  background-color: #aa1a17;
  color: white;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.whatsapp-link i {
  background-color: green;
  color: white;
}

.contact-item .contact-item-col {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.contact-item .contact-item-col .title {
  font-weight: bold;
  text-transform: uppercase;
}

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

.contact-page .contact-right {
  grid-column: span 6;
  border-radius: 30px;
}

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

.contact-page .contact-right .title {
  font-size: 27px;
  margin-bottom: 15px;
  font-family: 300;
}

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

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  font-family: inherit;
}

.contact-form button {
  padding: 15px;
  background-color: #aa1a17;
  border: 1px solid #aa1a17;
  font-size: 20px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  cursor: pointer;
  color: white;
}

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

/* CONTACT 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: 2;
  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 #aa1a17;
}

@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: black;
  border-radius: 50%;
  position: relative;
}

/* FOOTER STICKY BUTTON END */

/* WHATSAPP FIXED START */
.wp-img {
  color: #fff;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.mypage-alo-ph-circle {
  width: 90px;
  height: 90px;
  top: 12px;
  left: 12px;
  position: absolute;
  background-color: transparent;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  border: 2px solid rgba(30, 30, 30, 0.4);
  opacity: 0.1;
  opacity: 0.5;
}

.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.mypage-alo-ph-circle-fill {
  width: 60px;
  height: 60px;
  top: 28px;
  left: 28px;
  position: absolute;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  border: 2px solid transparent;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  opacity: 0.4 !important;
}

.mypage-alo-ph-img-circle {
  width: 30px;
  height: 30px;
  top: 43px;
  left: 43px;
  position: absolute;
  background: rgba(30, 30, 30, 0.1)
    url(https://www.google.com/url?sa=i&url=https%3A%2F%2Fwww.inetmar.com%2Fblog%2Fweb-sitesine-whatsapp-butonu-ekleme%2F&psig=AOvVaw24o_fVXdJxPaz-ZYw6fVc_&ust=1728734068863000&source=images&cd=vfe&opi=89978449&ved=0CBQQjRxqFwoTCKi3trKihokDFQAAAAAdAAAAABAE)
    no-repeat center center;
  background-size: 100%;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  opacity: 1;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transform-origin: 50% 50%;
  -moz-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  -o-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  background-size: 100%;
}

.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }

  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }

  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}

.mypage-alo-phone {
  position: absolute;
  top: -10px;
  right: 0px;
  z-index: 9999999;
}

.mypage-alo-ph-circle {
  border-color: #43b91e;
}

.mypage-alo-ph-circle-fill {
  background-color: #43b91e;
}

.mypage-alo-ph-img-circle {
  background-color: #43b91e;
}

.mypage-alo-phone:hover .mypage-alo-ph-circle {
  border-color: #43b91e;
}

.mypage-alo-phone:hover .mypage-alo-ph-circle-fill {
  background-color: #43b91e;
}

.mypage-alo-phone:hover .mypage-alo-ph-img-circle {
  background-color: #43b91e;
}

.hotlinemp {
  position: fixed;
  right: 139px;
  bottom: 130px;
  z-index: 9999;
}

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

/* WHATSAPP FIXED END*/

/* SERVICES PAGE START */

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

.category-box {
  grid-column: span 4;
  display: block;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
}

.category-box .title {
  padding: 15px;
  text-align: center;
  font-size: 18px;
  color: #222;
  font-weight: 600;
}

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

.detail-gallery .gallery-box  {
  display: block;
  grid-column: span 4;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border-radius: 10px;
  overflow: hidden;
}

.detail-gallery .gallery-box img {
  display: block;
}

@media (max-width:992px) {
  .detail-gallery .gallery-box {
    grid-column: span 6;
  } 
}

.offer-form-scroll {
    background-color: #aa1a17;
    color: white;
    padding: 15px;
    width: 95%;
    margin: 0 auto;
    margin-bottom: 15px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border-radius: 5px;
    text-align: center;
}

@media (min-width:992px) {
  .offer-form-scroll {
    display: none;
  }
}

@media (max-width:992px) {
  .offer-form-scroll {
    display: block;
  }
}

/* SERVICES PAGE END */

/* PRODUCT DETAIL START */

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

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

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

.detail-right {
  grid-column: span 4;
  padding: 30px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  height: max-content;
  position: sticky;
    top: 130px;
}


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

.detail-right .title {
  font-size: 20px;
  margin-bottom: 15px;
}

/* PRODUCT DETAIL END */

/* REFERENCES PAGE START */


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

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

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

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

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

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

.references-box {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

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

.references-box img {
  transition: all 0.3s ease;
}

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


/* REFERENCES PAGE END */