/* Base */
html {
  overflow-x: hidden;
}

body {
  line-height: 1.7;
  color: #8c92a0;
  font-weight: 300;
  font-size: 16px;
  background-color: rgba(222, 222, 227, 0.625);
  position: relative;
  overflow-x: hidden;
  max-width: 100%;
}

body.offcanvas-menu {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6,
.site-section-heading,
.title-section h2,
.blog-section-title,
.newsletter-title,
.newsletter-heading {
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  /* Kalın ağırlık */
  margin-bottom: 1rem;
  line-height: 1.3;
}


::-moz-selection {
  background: #000;
  color: #fff;
}

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

a {
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
}

a:hover {
  text-decoration: none;
}

.text-black {
  color: #000;
}

.site-wrap:before {
  -webkit-transition: .3s all ease-in-out;
  -o-transition: .3s all ease-in-out;
  transition: .3s all ease-in-out;
  background: rgba(0, 0, 0, 0.6);
  content: "";
  position: fixed;
  z-index: 9998;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  visibility: hidden;
}

.offcanvas-menu .site-wrap {
  position: relative;
  height: 100%;
  width: 100%;
  z-index: 1;
  overflow: hidden;
}

.offcanvas-menu .site-wrap:before {
  opacity: 0.7;
  visibility: visible;
  pointer-events: auto;
}

.btn {
  -webkit-transition: .3s all ease-in-out;
  -o-transition: .3s all ease-in-out;
  transition: .3s all ease-in-out;
  text-transform: uppercase;
  border-width: 2px;
}

.btn:hover,
.btn:active,
.btn:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.btn.btn-primary:hover {
  background: transparent;
  color: #51eaea;
}

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

.btn.btn-black:hover,
.btn.btn-black:active,
.btn.btn-black:focus {
  background-color: #51eaea;
  color: #000;
}

.form-control {
  height: 43px;
}

.form-control:active,
.form-control:focus {
  border-color: #51eaea;
}

.form-control:hover,
.form-control:active,
.form-control:focus {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}


.breadcrumb {
  background: linear-gradient(135deg, #51eaea 0%, #74d12b 100%);
  /* Koyu gri-mavi tonu */
  border-top: 1px solid rgba(53, 53, 53, 0.215);
  margin-bottom: 0;
  margin-top: 82px !important;
}

.breadcrumb a {
  color: #ffffff;
  /* Sitenin ana vurgu rengi */
}

.breadcrumb span {
  color: white;
}

.breadcrumb strong {
  color: #2e3434;
  /* Beyaz */
}

.site-section {
  padding: 2.5em 0;
}

@media (min-width: 768px) {
  .site-section {
    padding: 5em 0;
  }
}

.site-section.site-section-sm {
  padding: 4em 0;
}

.site-section-heading {
  font-size: 30px;
  color: #25262a;
  position: relative;
}

.site-section-heading:before {
  display: none;
  content: "";
  left: 0%;
  top: 0;
  position: absolute;
  width: 40px;
  height: 2px;
  background: #51eaea;
}

.site-section-heading.text-center:before {
  display: none;
  content: "";
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  position: absolute;
  width: 40px;
  height: 2px;
  background: #51eaea;
}

.border-top {
  border-top: 1px solid #edf0f5 !important;
}

.site-footer {
  padding: 4em 3em;
  padding-bottom: 2em;
}

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

.site-footer ul li a {
  color: #5c626e;
}

.site-footer ul li a:hover {
  color: #51eaea;
}

.site-footer .footer-heading {
  font-size: 1.2rem;
  color: #000;
  margin-bottom: 1rem;
}



.footer-social {
  display: flex;
  gap: 14px;
  margin-bottom: 0.7em;
  justify-content: center;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #f3f3f4;
  color: #51eaea;
  font-size: 19px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(81, 234, 234, 0.08);
  border: 1.2px solid #e0e0e0;
}

.footer-social a:hover {
  background: #51eaea;
  color: #fff;
  box-shadow: 0 4px 16px rgba(81, 234, 234, 0.18);
  border-color: #51eaea;
}

.footer-bottom-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0 18px;
  margin-top: 1.2em;
  padding-top: 0.7em;
  font-size: 0.97rem;
  color: #7a7a7a;
  background: transparent;
  letter-spacing: 0.01em;
  position: relative;
}

.footer-bottom-bar .footer-divider {
  width: 32px;
  height: 1.5px;
  background: linear-gradient(90deg, #e0e0e0 0%, #51eaea 100%);
  border: none;
  margin: 0 10px;
  display: inline-block;
  vertical-align: middle;
  border-radius: 2px;
}

.footer-bottom-bar .footer-kvkk-links {
  display: flex;
  gap: 14px;
  align-items: center;
}

.footer-bottom-bar .footer-kvkk-links a {
  color: #51eaea;
  text-decoration: underline;
  transition: color 0.2s;
  font-size: 0.97rem;
}

.footer-bottom-bar .footer-kvkk-links a:hover {
  color: #ac561d;
}

@media (max-width: 767.98px) {
  .footer-social {
    gap: 8px;
  }

  .footer-social a {
    width: 30px;
    height: 30px;
    font-size: 15px;
  }

  .footer-bottom-bar {
    flex-direction: column;
    gap: 4px;
    font-size: 0.91rem;
    padding-top: 0.5em;
  }

  .footer-bottom-bar .footer-kvkk-links {
    gap: 8px;
  }

  .footer-bottom-bar .footer-kvkk-links a {
    font-size: 0.91rem;
  }

  .footer-bottom-bar .footer-divider {
    margin: 6px 0;
    width: 24px;
  }
}

/* Yeni Footer Çizgili Bar Stili */
.footer-bar-outer {
  width: 100%;
  margin-top: 1.2em;
  padding: 0;
  background: #f7f8fa;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(81, 234, 234, 0.04);
  border: 1px solid #e0e0e0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
}

.footer-bar-inner {
  width: 100%;
  max-width: 900px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7em 1.2em;
  gap: 18px;
}

.footer-bar-copyright {
  color: #7a7a7a;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  text-align: center;
}

.footer-bar-divider {
  flex: 1 1 0%;
  height: 2px;
  background: linear-gradient(90deg, #e0e0e0 0%, #51eaea 100%);
  margin: 0 18px;
  border-radius: 2px;
  min-width: 32px;
  max-width: 120px;
}

.footer-bar-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-bar-links a {
  color: #51eaea;
  text-decoration: underline;
  font-size: 0.97rem;
  transition: color 0.2s;
}

.footer-bar-links a:hover {
  color: #ac561d;
}

.footer-bar-link-divider {
  width: 1.5px;
  height: 18px;
  background: #e0e0e0;
  display: inline-block;
  margin: 0 6px;
  border-radius: 2px;
}

@media (max-width: 767.98px) {
  .footer-bar-inner {
    flex-direction: column;
    gap: 6px;
    padding: 0.7em 0.5em;
  }

  .footer-bar-divider {
    min-width: 18px;
    max-width: 60px;
    margin: 6px 0;
  }

  .footer-bar-links {
    gap: 6px;
  }

  .footer-bar-links a {
    font-size: 0.91rem;
  }

  .footer-bar-copyright {
    font-size: 0.91rem;
  }
}






/* Navbar */
.site-logo a {
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: 22px;
  color: #000 !important;
  font-weight: 900;
  display: inline-block;
}

.site-logo .logo-img {
  height: 70px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  transition: all 0.3s ease;
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  scale: 1;
}

.site-logo a:hover {
  text-decoration: none;
}

.site-logo a:hover .logo-img {
  transform: scale(1.05);
}

.js-logo-clone {
  position: relative !important;
  height: 100% !important;
  display: block !important;
}


/* Large screens - bigger logo */
@media (min-width: 1200px) {
  .site-logo .logo-img {
    height: 95px;
    max-width: 250px;
    position: absolute;
    top: 50%;
    translate: 0 -50%;
    scale: 1;
  }
  
  .js-logo-clone {
    position: relative !important;
    height: 100% !important;
    display: block !important;
  }
}

@media (min-width: 1400px) {
  .site-logo .logo-img {
    height: 100px;
    max-width: 280px;
    scale: 1;
    position: absolute;
    top: 50%;
    translate: 0 -50%;
  }

  .js-logo-clone{
    position: relative !important;
    height: 100% !important;
    display: block !important;
  }
}



}

/* Medium screens */
@media (min-width: 992px) and (max-width: 1199px) {
  .site-logo .logo-img {
    height: 75px;
    max-width: 200px;
    position: absolute;
    top: 50%;
    translate: 0 -50%;
    scale: 1;
  }
  
  .js-logo-clone {
    position: relative !important;
    height: 100% !important;
    display: block !important;
  }
}

.icons {
  height: 100%;
  display: flex;
  align-items: center;
}

.icons-btn {
  display: inline-block;
  text-align: center;
}

.icons-btn span {
  display: block;
  height: 40px;
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: none !important;
}

@media (max-width: 991.98px) {
  .icons-btn span {
    width: 24px;
  }
}

.site-menu-toggle {
  display: block;
  text-align: center;
  font-size: 28px;
  height: 40px;
  width: 40px;
  line-height: 40px;
  z-index: 10020;
  position: relative;
  pointer-events: auto;
  cursor: pointer;
}

.site-menu-toggle>span {
  top: 5px;
  position: relative;
}

.site-navbar {
  margin-bottom: 0px;
  z-index: 9990;
  position: fixed;
  top: 0;
  width: 100%;
  background: #eaecef;
}

.site-navbar.position-relative {
  position: relative;
  background: #f9f9f9 !important;
}

.site-navbar.transparent {
  background: transparent;
}

.site-navbar .site-navbar-top {
  border-bottom: 1px solid #f3f3f4;
  padding-top: 20px;
  padding-bottom: 20px;
  margin-bottom: 0px;
}

@media (min-width: 768px) {
  .site-navbar .site-navbar-top {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .site-navigation {
    width: 110%;
  }
}

/* 575px altında navigation genişlik sorunu düzeltmesi */
@media (max-width: 575.98px) {
  .site-navigation {
    width: 100% !important;
    overflow: hidden;
  }
}
.site-navbar .site-search-icon a span {
  display: inline-block;
  margin-right: 10px;
}

.site-navbar .site-search-icon a:hover {
  text-decoration: none;
}

.site-navbar a {
  color: #000;
}

.site-navbar a:hover {
  color: #000;
}

.site-navbar .icon {
  font-size: 20px;
}

.site-navbar .site-top-icons ul,
.site-navbar .site-top-icons ul li {
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-navbar .site-top-icons ul li {
  display: inline-block;
}

.site-navbar .site-top-icons ul li a {
  margin-right: 10px;
}

.site-navbar .site-top-icons ul li a.site-cart {
  display: block;
  position: relative;
}

.site-navbar .site-top-icons ul li a.site-cart .count {
  position: absolute;
  top: 0;
  right: 0;
  margin-right: -15px;
  margin-top: -20px;
  font-size: 13px;
  width: 24px;
  height: 24px;
  line-height: 24px;
  border-radius: 50%;
  display: block;
  text-align: center;
  background: #51eaea;
  color: #fff;
  -webkit-transition: .2s all ease-in-out;
  -o-transition: .2s all ease-in-out;
  transition: .2s all ease-in-out;
}

.site-navbar .site-top-icons ul li a:hover .count {
  -webkit-box-shadow: 0 3px 10px -4px rgba(0, 0, 0, 0.3) !important;
  box-shadow: 0 3px 10px -4px rgba(0, 0, 0, 0.3) !important;
  margin-top: -22px;
}

.site-navbar .site-top-icons ul li:last-child a {
  padding-right: 0;
}

.site-navbar .site-navigation.border-bottom {
  border-bottom: 1px solid #f3f3f4 !important;
}

.site-navbar .site-navigation .site-menu {
  margin-left: 0;
  padding-left: 0;
  margin-bottom: 0;
}

.site-navbar .site-navigation .site-menu .active>a {
  color: #ac561d;
  position: relative;
  padding: 10px 10px;
}

.site-navbar .site-navigation .site-menu .active>a::before {
  content: "";
  position: absolute;
  left: 5px;
  right: 5px;
  height: 1.5px;
  background: #ac561d;
  bottom: 2px;
  transform: rotateY(0deg) !important;
}

.site-navbar .site-navigation .site-menu a {
  text-decoration: none !important;
  font-size: 15px;
  display: inline-block;
}

.site-navbar .site-navigation .site-menu>li {
  display: inline-block;
  padding: 10px 5px;
}

.site-navbar .site-navigation .site-menu>li>a {
  padding: 10px 10px;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: #25262a;
  font-size: 15px;
  text-decoration: none !important;
  position: relative;
}

.site-navbar .site-navigation .site-menu>li>a::before {
  content: "";
  position: absolute;
  left: 5px;
  right: 5px;
  height: 1.5px;
  background: #ac561d;
  bottom: 2px;
  transform: rotateY(90deg) !important;
  transition: 0.2s ease-in-out;
}

.site-navbar .site-navigation .site-menu>li>a:hover::before {
  transform: rotateY(0deg) !important;

}


.site-navbar .site-navigation .site-menu>li>a:hover {
  color: #ac561d;
}


.site-mobile-menu {
  width: 320px;
  position: fixed;
  right: -25px;
  top: 0;
  z-index: 10000;
  padding-top: 20px;
  background: #fff;
  height: 100vh;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
  -webkit-transition: .4s all ease-in-out;
  -o-transition: .4s all ease-in-out;
  transition: .4s all ease-in-out;
  pointer-events: auto;
  overflow-y: auto;
  overflow-x: hidden;
}

.offcanvas-menu .site-mobile-menu {
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
}

.site-mobile-menu .site-mobile-menu-header {
  width: 100%;
  float: left;
  margin-bottom: 20px;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
  z-index: 10010;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close {
  float: right;
  margin-top: 8px;
  z-index: 10015;
  position: relative;
  pointer-events: auto;
  cursor: pointer;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close span {
  font-size: 40px;
  display: inline-block;
  padding-left: 10px;
  padding-right: 10px;
  line-height: 1;
  cursor: pointer;
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
  z-index: 10016;
  position: relative;
  pointer-events: auto;
  color: #666;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close span:hover {
  color: #25262a;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo {
  float: left;
  margin-top: 10px;
  margin-left: 20px;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a {
  display: inline-block;
  text-transform: uppercase;
  color: #000;
  letter-spacing: .2em;
  font-size: 22px;
  font-weight: 900;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo .logo-img {
  height: 80px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a:hover {
  text-decoration: none;
}

.site-mobile-menu .site-mobile-menu-body {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  position: relative;
  padding: 20px;
  height: calc(100vh - 120px);
  padding-bottom: 150px;
  z-index: 10005;
  pointer-events: auto;
}

.site-mobile-menu .site-nav-wrap {
  padding: 0;
  margin: 0;
  list-style: none;
  position: relative;
  z-index: 10006;
}

.site-mobile-menu .site-nav-wrap a {
  padding: 12px 20px;
  display: block;
  position: relative;
  color: #212529;
  z-index: 10007;
  pointer-events: auto;
  text-decoration: none;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.site-mobile-menu .site-nav-wrap a:hover {
  color: #51eaea;
  background-color: #f8f9fa;
  transform: translateX(5px);
}

.site-mobile-menu .site-nav-wrap li {
  position: relative;
  display: block;
}

.site-mobile-menu .site-nav-wrap li.active>a {
  color: #51eaea;
}

.site-mobile-menu .site-nav-wrap .arrow-collapse {
  position: absolute;
  right: 0px;
  top: 10px;
  z-index: 20;
  width: 36px;
  height: 36px;
  text-align: center;
  cursor: pointer;
  border-radius: 50%;
}

.site-mobile-menu .site-nav-wrap .arrow-collapse:hover {
  background: #f8f9fa;
}

.site-mobile-menu .site-nav-wrap .arrow-collapse:before {
  font-size: 18px;
  z-index: 20;
  font-family: "icomoon";
  content: "\e313";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-180deg);
  -ms-transform: translate(-50%, -50%) rotate(-180deg);
  transform: translate(-50%, -50%) rotate(-180deg);
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
}

.site-mobile-menu .site-nav-wrap .arrow-collapse.collapsed:before {
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.site-mobile-menu .site-nav-wrap>li {
  display: block;
  position: relative;
  float: left;
  width: 100%;
}

.site-mobile-menu .site-nav-wrap>li>a {
  padding-left: 20px;
  font-size: 20px;
}

.site-mobile-menu .site-nav-wrap>li>ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-mobile-menu .site-nav-wrap>li>ul>li {
  display: block;
}

.site-mobile-menu .site-nav-wrap>li>ul>li>a {
  padding-left: 40px;
  font-size: 16px;
}

.site-mobile-menu .site-nav-wrap>li>ul>li>ul {
  padding: 0;
  margin: 0;
}

.site-mobile-menu .site-nav-wrap>li>ul>li>ul>li {
  display: block;
}

.site-mobile-menu .site-nav-wrap>li>ul>li>ul>li>a {
  font-size: 16px;
  padding-left: 60px;
}

/* Blocks */
.site-blocks-cover {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
}

.site-blocks-cover,
.site-blocks-cover>.container>.row {
  min-height: 400px;
  height: auto;
  display: flex;
  align-items: center;
}

.site-blocks-cover.inner-page,
.site-blocks-cover.inner-page .row {
  min-height: 400px;
  height: auto;
}

.site-blocks-cover h2 {
  font-size: 14px;
  font-weight: normal;
  color: #000;
  letter-spacing: .2em;
  text-transform: uppercase;
}

@media (max-width: 991.98px) {
  .site-blocks-cover .featured-hero-product {
    margin: 0;
    position: relative;
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }

  .site-blocks-cover .featured-hero-product:hover {
    transform: translateY(-5px);
  }
}

.site-blocks-cover h1 {
  font-size: 50px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 30px;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .site-blocks-cover h1 {
    font-size: 70px;
  }
}

.site-blocks-cover p {
  color: #fff;
  font-size: 20px;
  line-height: 35px;
}

.site-blocks-cover .intro-text {
  font-size: 16px;
  color: #fff;
  line-height: 1.5;
}

.site-blocks-cover.inner-page .site-block-cover-content {
  margin-top: 20%;
  text-align: center;
}

@media (min-width: 768px) {
  .site-blocks-cover.inner-page .site-block-cover-content {
    margin-top: 30%;
  }
}

.site-blocks-cover .sub-title {
  color: #fff;
}

@media (max-width: 991.98px) {
  .site-blocks-cover .img-1 {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}

.site-blocks-cover .btn {
  padding: 20px 30px;
}

.site-blocks-1 {
  border-bottom: 1px solid #edf0f5;
}

.site-blocks-1 .divider {
  position: relative;
}

.site-blocks-1 .divider:after {
  content: "";
  position: absolute;
  height: 100%;
  width: 1px;
  right: 10px;
  background: #edf0f5;
}

.site-blocks-1 .divider:last-child:after {
  display: none;
}

.site-blocks-1 .icon span {
  position: relative;
  color: #6c757d;
  top: -10px;
  font-size: 50px;
  display: inline-block;
}

.site-blocks-1 .text h2 {
  color: #25262a;
  letter-spacing: .05em;
  font-size: 18px;
}

.site-blocks-1 .text p:last-child {
  margin-bottom: 0;
}

.site-blocks-2 .block-2-item {
  display: block;
  position: relative;
}

.site-blocks-2 .block-2-item:before {
  z-index: 1;
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: -moz-linear-gradient(top, transparent 0%, transparent 18%, rgba(0, 0, 0, 0.8) 99%, rgba(0, 0, 0, 0.8) 100%);
  background: -webkit-linear-gradient(top, transparent 0%, transparent 18%, rgba(0, 0, 0, 0.8) 99%, rgba(0, 0, 0, 0.8) 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(18%, transparent), color-stop(99%, rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0.8)));
  background: -o-linear-gradient(top, transparent 0%, transparent 18%, rgba(0, 0, 0, 0.8) 99%, rgba(0, 0, 0, 0.8) 100%);
  background: linear-gradient(to bottom, transparent 0%, transparent 18%, rgba(0, 0, 0, 0.8) 99%, rgba(0, 0, 0, 0.8) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#cc000000', GradientType=0);
}

.site-blocks-2 .block-2-item .image {
  position: relative;
  margin-bottom: 0;
  overflow: hidden;
}

.site-blocks-2 .block-2-item .image img {
  margin-bottom: 0;
  -webkit-transition: .3s all ease-in-out;
  -o-transition: .3s all ease-in-out;
  transition: .3s all ease-in-out;
}

.site-blocks-2 .block-2-item .text {
  z-index: 2;
  bottom: 0;
  padding-left: 20px;
  position: absolute;
  width: 100%;
}

.site-blocks-2 .block-2-item .text>span,
.site-blocks-2 .block-2-item .text h3 {
  color: #fff;
}

.site-blocks-2 .block-2-item .text>span {
  font-size: 12px;
  letter-spacing: .1em;
  font-weight: 900;
}

.site-blocks-2 .block-2-item .text h3 {
  font-size: 40px;
}

.site-blocks-2 .block-2-item:hover .image img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.block-3 .no-direction .owl-nav {
  display: none;
}

.block-3 .owl-stage {
  padding-top: 40px;
  padding-bottom: 40px;
}

.block-3 .owl-nav .owl-prev,
.block-3 .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 2rem;
}

.block-3 .owl-nav .owl-prev {
  left: 0;
}

.block-3 .owl-nav .owl-next {
  right: 0;
}

.block-3 .owl-dots {
  text-align: center;
}

.block-3 .owl-dots .owl-dot {
  display: inline-block;
}

.block-3 .owl-dots .owl-dot>span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  margin: 5px;
  background: #ccc;
}

.block-3 .owl-dots .owl-dot.active>span {
  background: #51eaea;
}

.block-3 .product {
  border-right: none !important;
  border-left: none !important;
}

.block-3 .product .item {
  border: 1px solid #eee;
}

.block-4 {
  -webkit-box-shadow: 0 0 30px -10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 30px -10px rgba(0, 0, 0, 0.1);
  background: #fff;
}

.block-4 .block-4-text h3 {
  font-size: 20px;
  margin-bottom: 0;
}

.block-4 .block-4-text h3 a {
  text-decoration: none;
}

.block-5 ul,
.block-5 ul li {
  list-style: none;
  padding: 0;
  margin: 0;
  line-height: 1.5;
}

.block-5 ul li {
  padding-left: 30px;
  position: relative;
  margin-bottom: 15px;
  color: #25262a;
}

.block-5 ul li:before {
  top: 0;
  font-family: "icomoon";
  content: "";
  position: absolute;
  left: 0;
  font-size: 20px;
  line-height: 1;
  color: #51eaea;
}

.block-5 ul li.address:before {
  content: "\e8b4";
}

.block-5 ul li.email:before {
  content: "\f0e0";
}

.block-5 ul li.phone:before {
  content: "\f095";
}

.block-6 {
  display: block;
}

.block-6 img {
  display: block;
}

.block-6 h3 {
  font-size: 18px;
}

.block-6 p {
  color: #737b8a;
}

.block-7 .form-group {
  position: relative;
}

.block-7 .form-control {
  padding-right: 96px;
}

.block-7 .btn {
  position: absolute;
  width: 80px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 3px;
}

.block-8 .post-meta {
  color: #c4c7ce;
}

.block-8 .block-8-sep {
  margin-left: 10px;
  margin-right: 10px;
}

.site-blocks-table {
  overflow: auto;
}

.site-blocks-table .product-thumbnail {
  width: 200px;
}

.site-blocks-table thead th {
  padding: 30px;
  text-align: center;
  border-width: 1px !important;
  vertical-align: middle;
  color: #212529;
  font-size: 18px;
  font-weight: normal;
}

.site-blocks-table td {
  padding: 20px;
  text-align: center;
  vertical-align: middle;
  color: #212529;
}

.site-blocks-table tbody tr:first-child td {
  border-top: 1px solid #51eaea !important;
}

.site-block-order-table th {
  border-top: none !important;
  border-bottom-width: 1px !important;
}

.site-block-order-table td,
.site-block-order-table th {
  color: #000;
}

.site-block-top-search {
  position: relative;
}

.site-block-top-search .icon {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.site-block-top-search input {
  padding-left: 40px;
  -webkit-transition: .3s all ease-in-out;
  -o-transition: .3s all ease-in-out;
  transition: .3s all ease-in-out;
}

.site-block-top-search input:focus,
.site-block-top-search input:active {
  padding-left: 25px;
}

.site-block-27 ul,
.site-block-27 ul li {
  padding: 0;
  margin: 0;
}

.site-block-27 ul li {
  display: inline-block;
  margin-bottom: 4px;
}

.site-block-27 ul li a,
.site-block-27 ul li span {
  text-align: center;
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  border: 1px solid #eee;
  color: #000;
}

.site-block-27 ul li.active a,
.site-block-27 ul li.active span {
  background: #343a40;
  color: #fff;
  border: 1px solid transparent;
}

#slider-range {
  height: 8px;
}

#slider-range .ui-slider-handle {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: none !important;
  background: #51eaea;
}

#slider-range .ui-slider-handle:focus,
#slider-range .ui-slider-handle:active {
  outline: none;
}

#slider-range .ui-slider-range {
  background-color: #51eaea;
}

#slider-range+input {
  background: none !important;
}

.color-item .color {
  width: 14px;
  height: 14px;
}

.block-16 figure {
  position: relative;
}

.block-16 figure .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 40px;
  width: 90px;
  height: 90px;
  background: #fff;
  display: block;
  border-radius: 50%;
  border: none;
}

.block-16 figure .play-button:hover {
  opacity: 1;
}

.block-16 figure .play-button>span {
  position: absolute;
  left: 55%;
  top: 50%;
  -webkit-transform: translate(-50%, -45%);
  -ms-transform: translate(-50%, -45%);
  transform: translate(-50%, -45%);
}

.block-38 .block-38-header .block-38-heading {
  color: #000;
  margin: 0;
  font-weight: 300;
}

.block-38 .block-38-header .block-38-subheading {
  color: #b3b3b3;
  margin: 0 0 20px 0;
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: .1em;
}

.block-38 .block-38-header img {
  width: 120px;
  border-radius: 50%;
  margin-bottom: 20px;
}

.bag {
  position: relative;
}

.bag .number {
  position: absolute;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  line-height: 20px;
  color: #000;
  font-size: 12px;
  background: #51eaea;
  right: -5px;
}

.search-wrap {
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: .5s all ease;
  -o-transition: .5s all ease;
  transition: .5s all ease;
}

.search-wrap .container {
  position: relative;
  height: 100%;
}

.search-wrap.active {
  opacity: 1;
  visibility: visible;
}

.search-wrap .form-control {
  position: absolute;
  top: 50%;
  width: 100%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  border: none;
  z-index: 3;
  font-size: 20px;
}

@media (max-width: 991.98px) {
  .search-wrap .form-control {
    font-size: 20px;
  }
}

.search-wrap .search-close {
  z-index: 4;
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.search-wrap .search-close span {
  font-size: 30px;
}

.title-section h2 {
  padding-left: 30px;
  border-left: 4px solid #51eaea;
  display: inline-block;
  color: #000;
}

.title-section.text-center h2 {
  border-left: none;
  position: relative;
  padding-left: 0px;
  padding-bottom: 20px;
}

.title-section.text-center h2:after {
  display: none;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 70px;
  height: 4px;
  background: #51eaea;
  content: "";
}

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

.product-item .product-category {
  position: absolute;
  display: inline-block;
  padding: 10px 30px;
  background: #fff;
  color: #000;
  z-index: 8;
  top: 60%;
  left: 50%;
  font-size: 20px;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.product-item .product-category span {
  color: #ced4da;
  font-size: 12px;
}

.product-item .product-category:hover {
  background: #000;
  color: #fff;
}

.product-item .product-category:hover span {
  color: rgba(255, 255, 255, 0.5);
}

.product-item.full-height {
  height: 100% !important;
}

@media (max-width: 991.98px) {
  .product-item.full-height {
    height: 300px !important;
    margin-bottom: 30px;
  }
}

.product-item.bg-gray {
  background: #f9f9f9;
}

.product-item.sm-height {
  height: 300px;
  padding: 40px;
}

.product-item.md-height {
  height: 700px;
  padding: 40px;
}

.product-item img {
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0.7);
  -ms-transform: translate(-50%, -50%) scale(0.7);
  transform: translate(-50%, -50%) scale(0.7);
  position: absolute;
}

.item-entry .product-item {
  margin-bottom: 30px;
}

.item-entry .item-title {
  font-size: 18px;
  font-weight: normal;
  margin-bottom: 0;
}

.item-entry .item-title a {
  color: gray;
}

.item-entry .item-title a:hover {
  color: #000;
}

.item-entry .item-price {
  color: #000;
  font-weight: normal;
}

.item-entry .item-price del {
  color: #b3b3b3;
}

.custom-border-bottom {
  border-bottom: 1px solid #f9f9f9;
}

.custom-border-top {
  border-top: 1px solid #f9f9f9;
}

.height-auto {
  height: auto !important;
}

.featured-hero-product {
  text-align: center;
}

.featured-hero-product h1,
.featured-hero-product h4 {
  color: #000;
}

.featured-hero-product h1 {
  font-size: 4rem;
  letter-spacing: 1rem;
}

@media (max-width: 991.98px) {
  .featured-hero-product h1 {
    font-size: 2rem;
  }
}

.featured-hero-product h4 {
  font-size: 1rem;
}

.featured-hero-product .price {
  font-size: 2rem;
  color: #000;
}

@media (max-width: 991.98px) {
  .featured-hero-product .price {
    font-size: 1.5rem;
  }
}

.featured-hero-product .price del {
  margin-left: 10px;
  color: #6c757d;
}

.border {
  border: 1px solid #eee !important;
}

.border a {
  display: block;
  padding: 30px;
}

.item h3 a {
  color: #000;
}

.item .price {
  color: #000;
}

.tag {
  position: absolute;
  background: #e86b00;
  color: #fff;
  letter-spacing: .2em;
  padding: 7px 20px;
  font-size: .8rem;
  font-weight: 900;
  top: 0;
  left: 0;
  text-transform: uppercase;
  z-index: 2;
  -webkit-transform: rotate(-90deg) translateX(-100%) translateY(-70%);
  -ms-transform: rotate(-90deg) translateX(-100%) translateY(-70%);
  transform: rotate(-90deg) translateX(-100%) translateY(-70%);
}

.banner-wrap {
  background: #74d12b;
  border-radius: 4px;
}

.banner-wrap a {
  padding: 30px;
  display: block;
  text-align: center;
}

.banner-wrap a h5 {
  font-size: 2rem;
  font-style: italic;
  margin-bottom: 10px;
}

.banner-wrap a h5,
.banner-wrap a p {
  color: #fff;
}

.banner-wrap a p {
  color: #fff;
  font-size: 1.4rem;
}

.banner-wrap a p strong {
  font-size: .9rem;
  display: block;
}

.banner-1 {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 20px;
  display: block;
  min-height: 300px;
  border-radius: 4px;
  -webkit-box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.2);
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
  position: relative;
  top: 0;
}

.banner-1:hover {
  top: -10px;
  -webkit-box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.4);
  box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.4);
}

.banner-1 .banner-1-inner {
  width: 50%;
}

.banner-1 .banner-1-inner h2 {
  color: #000;
  text-transform: uppercase;
  font-weight: 900;
}

.banner-1 .banner-1-inner p {
  color: rgba(0, 0, 0, 0.5);
  font-size: 1.2rem;
}

.testimony blockquote p {
  color: #000;
  font-family: "Crimson Text", serif;
  font-size: 1.3rem;
  line-height: 1.5;
  font-style: italic;
}

.bg-image {
  background-size: cover;
  position: relative;
}

.bg-image:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(81, 234, 234, 0.9);
  z-index: 1;
}

.bg-image>.container {
  position: relative;
  z-index: 2;
}

.section-overlap {
  margin-top: -150px;
}

.custom-pill .nav-item {
  margin-right: 4px;
}

.custom-pill .nav-item a {
  background: #f4f4f4;
  color: #000 !important;
}

.custom-table th {
  color: #000;
  font-weight: normal;
}

.custom-table td {
  color: #000;
}

/* İletişim Formu Modern Stilleri */

.contact-container {
  background: #fff !important;
}

.contact-form-modern {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 32px 0 rgba(81, 234, 234, 0.10), 0 1.5px 6px 0 rgba(44, 62, 80, 0.07);
  padding: 40px 32px 32px 32px;
  margin-bottom: 40px;
  max-width: 650px;
}

.contact-form-modern .form-group label {
  font-weight: 500;
  color: #25262a;
  margin-bottom: 8px;
}

.contact-form-modern .form-control {
  border-radius: 8px;
  border: 1.5px solid #e3e6ed;
  background: #f8fafc;
  font-size: 1rem;
  padding: 14px 16px;
  transition: border-color 0.2s, box-shadow 0.2s;
  margin-bottom: 12px;
}

.contact-form-modern .form-control:focus {
  border-color: #51eaea;
  background: #fff;
  box-shadow: 0 0 0 2px rgba(81, 234, 234, 0.15);
}

.contact-form-modern textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.contact-form-modern .btn {
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 14px 0;
  background: linear-gradient(90deg, #51eaea 0%, #74d12b 100%);
  color: #fff;
  border: none;
  box-shadow: 0 2px 8px 0 rgba(81, 234, 234, 0.10);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.contact-form-modern .btn:hover,
.contact-form-modern .btn:focus {
  background: linear-gradient(90deg, #74d12b 0%, #51eaea 100%);
  color: #fff;
  box-shadow: 0 4px 16px 0 rgba(81, 234, 234, 0.18);
}

@media (max-width: 767.98px) {
  .contact-form-modern {
    padding: 24px 8px 16px 8px;
  }
}

/* İletişim ve Ofisler Modern Tasarım */
.contact-form-title {
  font-size: 2rem;
  font-weight: 700;
  color: #25262a;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
  text-align: left;
}

.input-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon span {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #51eaea;
  font-size: 1.2rem;
  z-index: 2;
  pointer-events: none;
}

.input-icon input,
.input-icon textarea {
  padding-left: 40px !important;
}

.contact-btn {
  background: linear-gradient(90deg, #51eaea 0%, #74d12b 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 14px 0;
  box-shadow: 0 2px 8px 0 rgba(81, 234, 234, 0.10);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.contact-btn:hover,
.contact-btn:focus {
  background: linear-gradient(90deg, #74d12b 0%, #51eaea 100%);
  color: #fff;
  box-shadow: 0 4px 16px 0 rgba(81, 234, 234, 0.18);
}

.offices-modern {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 32px 0 rgba(81, 234, 234, 0.10), 0 1.5px 6px 0 rgba(44, 62, 80, 0.07);
  padding: 40px 32px 32px 32px;
  margin-left: 0;
}

.offices-title {
  font-size: 2rem;
  font-weight: 700;
  color: #25262a;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
  text-align: left;
}

.office-card {
  background: #f8fafc;
  border-radius: 12px;
  box-shadow: 0 2px 8px 0 rgba(81, 234, 234, 0.07);
  padding: 24px 20px;
  margin-bottom: 12px;
  border-left: 4px solid #51eaea;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.office-card:hover {
  box-shadow: 0 6px 24px 0 rgba(81, 234, 234, 0.15);
  border-left: 4px solid #74d12b;
}

.office-city {
  font-size: 1.1rem;
  font-weight: 700;
  color: #51eaea;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.office-address {
  color: #25262a;
  font-size: 1rem;
  margin-bottom: 0;
}

@media (max-width: 991.98px) {

  .contact-form-modern,
  .offices-modern {
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
    padding: 24px 8px 16px 8px;
  }

  .offices-modern {
    margin-top: 32px;
  }
}

/* Yan yana bölümler aynı yükseklikte olsun */
.contact-container .row.align-items-stretch {
  display: flex;
  flex-wrap: wrap;
}

.contact-container .col-lg-6 {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
}

.contact-form-modern,
.offices-modern {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* === MODERN HERO BÖLÜMÜ === */
.modern-hero {
  background: linear-gradient(120deg, #51eaea 0%, #74d12b 100%);
  position: relative;
  padding: 64px 0 0 0;
  overflow: hidden;
  margin-top: 56px !important;
}

.modern-hero .container {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 18px;
  letter-spacing: 1px;
}

.hero-desc {
  color: #e6f9f9;
  font-size: 1.25rem;
  margin-bottom: 32px;
  font-weight: 400;
}

.hero-btn {
  font-size: 1.1rem;
  padding: 14px 36px;
  border-radius: 8px;
  background: #fff;
  color: #51eaea;
  font-weight: 700;
  border: none;
  box-shadow: 0 4px 24px 0 rgba(81, 234, 234, 0.10);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.hero-btn:hover,
.hero-btn:focus {
  background: #25262a;
  color: #fff;
  box-shadow: 0 8px 32px 0 rgba(81, 234, 234, 0.18);
}

.hero-img {
  max-width: 420px;
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 8px 32px 0 rgba(44, 62, 80, 0.10);
  background: #fff;
  padding: 16px;
}

.hero-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  width: 100%;
  z-index: 1;
  line-height: 0;
}

@media (max-width: 991.98px) {
  .modern-hero {
    padding: 32px 0 0 0;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-img {
    max-width: 320px;
    padding: 8px;
  }
  
  .hero-img-container {
    height: 400px;
    width: 100%;
    max-width: 400px;
    top: -50px;
    position: relative;
    margin: 0 auto;
    padding-top: 50px;
  }
  
  .hero-main-modern-image {
    height: 60%;
  }
  

}

@media (max-width: 575.98px) {
  .modern-hero {
    padding: 20px 0 40px 0;
  }


  .hero-desc {
    font-size: 1rem;
    margin-bottom: 25px;
    line-height: 1.5;
  }
  
  .hero-features {
    margin-bottom: 25px;
  }
  
  .hero-features li {
    font-size: 0.9rem;
    margin-bottom: 8px;
  }
  
  .hero-img-container {
    width: 100%;
    top: -80px !important;
    position: relative;
    margin: 0 auto;
    padding-top: 40px;
  }
  
  .hero-main-modern-image {
    height: 50%;
  }
  
  .hero-stats {
    position: relative;
    bottom: 60px;
    margin-top: 15px;
    justify-content: center !important;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
  }
  
  .modern-stat {
    position: relative;
    padding: 8px;
  }
  
  .modern-stat:nth-of-type(1) {
    order: 1;
  }

  .modern-stat:nth-of-type(2) {
    order: 2;
  }

  .modern-stat:nth-of-type(3) {
    order: 3;
  }

  .modern-stat:nth-of-type(1),
  .modern-stat:nth-of-type(2),
  .modern-stat:nth-of-type(3) {
    
    scale: 0.85 !important;
  }
  
  .modern-stat .stat-value {
    font-size: 1rem;
    margin-bottom: 2px;
  }
  
  .modern-stat .stat-label {
    font-size: 0.75rem;
  }
  
  .btn-modern-hero {
    font-size: 0.95rem;
    padding: 12px 24px;
    margin-bottom: 30px;
    position: relative;
    top: 30px;
    z-index: 10;
  }
}

@media (max-width: 480px) {

  
  .hero-desc {
    font-size: 0.95rem;
  }
  
  .hero-img-container {
    top: -90px !important;
    padding-top: 30px;
    width: 340px !important;

  }
  
  .hero-stats {
    position: relative;
    bottom: 50px;
    gap: 6px;
    display: flex;
    flex-wrap: nowrap !important;
    justify-content: center;
  }
  
  .modern-stat {
    width: 60px;
    height: 60px;
    min-width: 60px;
    left: 0 !important;
    top: 0 !important;
    right: 0 !important;
    scale: 0.7 !important;
  }
  
  .modern-stat:nth-of-type(1) {
    order: 1;
  }

  .modern-stat:nth-of-type(2) {
    order: 2;
  }

  .modern-stat:nth-of-type(3) {
    order: 3;
  }
  
  .modern-stat .stat-value {
    font-size: 0.9rem;
  }
  
  .modern-stat .stat-label {
    font-size: 0.7rem;
  }
  
  .btn-modern-hero {
    position: relative;
    top: -20px;
    z-index: 10;
  }
}

@media (max-width: 360px) {

  
  .hero-desc {
    font-size: 0.9rem;
  }
  
  .hero-features li {
    font-size: 0.85rem;
  }
  
  .hero-img-container {
    height: 220px;
    max-width: 220px;
    top: -25px;
  }
  
  .hero-stats {
    position: relative;
    bottom: 40px;
    gap: 4px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .modern-stat {
    width: 50px;
    height: 50px;
    min-width: 50px;
    left: 0 !important;
    top: 0 !important;
    right: 0 !important;
  }
  
  .modern-stat:nth-of-type(1) {
    order: 1;
  }

  .modern-stat:nth-of-type(2) {
    order: 2;
  }

  .modern-stat:nth-of-type(3) {
    order: 3;
  }
  
  .modern-stat .stat-value {
    font-size: 0.8rem;
  }
  
  .modern-stat .stat-label {
    font-size: 0.65rem;
  }
  
  .btn-modern-hero {
    position: relative;
    top: -15px;
    z-index: 10;
  }
}

/* === MODERN BLOG BÖLÜMÜ === */
.modern-blog-section {
  background: #f8fafc;
  padding: 48px 0 32px 0;
  /* overflow: hidden; sticky sidebar için kaldırıldı */
}

.blog-section-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #25262a;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.blog-section-desc {
  color: #51eaea;
  font-size: 1.1rem;
  margin-bottom: 0;
}

.modern-blog-list {
  margin-top: 16px;
}

.blog-card {
  background: linear-gradient(145deg, #f8fafc 0%, #ffffff 100%);
  border-radius: 24px;
  box-shadow: 0 8px 40px -12px rgba(81, 234, 234, 0.15);
  /* overflow: hidden; sticky sidebar için kaldırıldı */
  overflow: visible !important;
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-card:hover {
  box-shadow: 0 12px 48px 0 rgba(81, 234, 234, 0.18);
  transform: translateY(-6px) scale(1.02);
}

.blog-card-img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
}

.blog-card-body {
  padding: 24px 20px 20px 20px;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}

.blog-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #25262a;
  margin-bottom: 10px;
}

.blog-card-text {
  color: #4a5568;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 24px;
  flex: 1 1 auto;
}

.blog-card-link {
  color: #51eaea;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
  align-self: flex-start;
}

.blog-card-link:hover {
  color: #74d12b;
  text-decoration: underline;
}

@media (max-width: 991.98px) {
  .blog-card-img {
    height: 160px;
  }

  .modern-blog-section {
    padding: 32px 0 16px 0;
    overflow: hidden;
  }
}

@media (max-width: 575.98px) {
  .blog-card-img {
    height: 120px;
  }

  .blog-card-body {
    padding: 14px 8px 12px 8px;
  }

  .modern-blog-section {
    padding: 18px 0 8px 0;
  }
}

/* === ZENGİN MODERN HERO === */
.rich-hero {
  min-height: 600px;
  padding-top: 90px;
  padding-bottom: 0px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #51eaea 0%, #74d12b 100%);
  position: relative;
  overflow: hidden;
}

@media (max-width: 991.98px) {
  .rich-hero {
    min-height: 420px;
    padding-top: 40px;
    padding-bottom: 30px;
  }
}

.hero-features {
  margin: 0 0 18px 0;
  padding: 0;
  list-style: none;
}

.hero-features li {
  color: #fff;
  font-size: 1.08rem;
  margin-bottom: 6px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-features .icon-check-circle {
  color: #ffffff;
  font-size: 1.2em;
}

.hero-features .icon-truck {
  color: #ffffff;
  font-size: 1.2em;
}

.hero-features .icon-shield {
  color: #ffffff;
  font-size: 1.2em;
}

.btn-modern-hero {
  background: linear-gradient(90deg, #fff 0%, #e6f9f9 100%);
  color: #51eaea;
  font-weight: 700;
  font-size: 1.15rem;
  border-radius: 12px;
  padding: 16px 44px;
  box-shadow: 0 6px 32px 0 rgba(81, 234, 234, 0.10);
  border: none;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  position: relative;
  z-index: 5;
  outline: none;
  display: inline-block;
  margin-bottom: 30px;
}

.btn-modern-hero:hover,
.btn-modern-hero:focus {
  background: linear-gradient(90deg, #51eaea 0%, #74d12b 100%);
  color: #fff;
  box-shadow: 0 12px 48px 0 rgba(81, 234, 234, 0.18), 0 0 0 4px #51eaea33;
  transform: translateY(-2px) scale(1.05) rotate(-1deg);
  border: none;
}

.blog-button {
  position: relative;
  left: 50%;
  translate: -50% 0;
}

.blog-button:hover {
  transform: scale(1.05) !important;
}

.hero-stats {
  gap: 32px;
  margin-top: 18px;
}

.stat-item {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 16px 28px;
  margin-right: 15px;
  margin-bottom: 15px;
  min-width: 140px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(81, 234, 234, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  display: block;
  margin-bottom: 5px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.stat-label {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.9;
}

.hero-image-wrapper {
  width: 100%;
  max-width: 410px;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-image-bg {
  position: absolute;
  top: 18px;
  left: 18px;
  right: 18px;
  bottom: 18px;
  background: linear-gradient(135deg, #fff 60%, #51eaea 100%);
  border-radius: 32px;
  z-index: 1;
  filter: blur(2px) brightness(1.08);
  box-shadow: 0 8px 32px 0 rgba(44, 62, 80, 0.10);
}

.hero-img-main {
  position: relative;
  z-index: 2;
  border-radius: 28px;
  box-shadow: 0 8px 32px 0 rgba(44, 62, 80, 0.13);
  width: 100%;
  max-width: 340px;
  object-fit: cover;
  border: 6px solid #fff;
}

.hero-image-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: linear-gradient(90deg, #51eaea 0%, #74d12b 100%);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 8px 18px;
  border-radius: 18px 0 18px 0;
  z-index: 3;
  box-shadow: 0 2px 8px 0 rgba(81, 234, 234, 0.13);
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-image-badge .icon-star {
  color: #f7b731;
  font-size: 1.2em;
}

.hero-image-shape {
  position: absolute;
  bottom: -18px;
  right: -18px;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #74d12b 0%, #51eaea 100%);
  border-radius: 50%;
  opacity: 0.18;
  z-index: 2;
}

@media (max-width: 991.98px) {
  .hero-image-wrapper {
    max-width: 320px;
    min-height: 220px;
  }

  .hero-img-main {
    max-width: 220px;
  }
}

@media (max-width: 575.98px) {
  .hero-image-wrapper {
    max-width: 98vw;
    min-height: 120px;
  }

  .hero-img-main {
    max-width: 98vw;
  }

  .stat-item {
    min-width: 80px;
    padding: 8px 8px;
  }
}

/* === YENİ BLOG BÖLÜMÜ (BASİT BAŞLIK+METİN) === */
.simple-blog-section {
  background: #f8fafc;
  padding: 48px 0 32px 0;
}

.simple-blog-article {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(81, 234, 234, 0.07);
  padding: 28px 28px 18px 28px;
  margin-bottom: 18px;
}

.simple-blog-article h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #25262a;
  margin-bottom: 10px;
}

.simple-blog-article p {
  color: #737b8a;
  font-size: 1.05rem;
  margin-bottom: 0;
}

.btn-modern-blog {
  background: linear-gradient(90deg, #51eaea 0%, #74d12b 100%);
  color: #fff;
  font-weight: 700;
  font-size: 1.08rem;
  border-radius: 12px;
  padding: 14px 38px;
  border: none;
  box-shadow: 0 2px 8px 0 rgba(81, 234, 234, 0.13);
  letter-spacing: 0.5px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
  text-transform: uppercase;
}

.btn-modern-blog:hover,
.btn-modern-blog:focus {
  background: linear-gradient(90deg, #74d12b 0%, #51eaea 100%);
  color: #fff;
  box-shadow: 0 8px 24px 0 rgba(81, 234, 234, 0.18);
  transform: translateY(-2px) scale(1.03);
}

@media (max-width: 991.98px) {
  .simple-blog-section {
    padding: 32px 0 16px 0;
  }

  .simple-blog-article {
    padding: 16px 10px 10px 10px;
  }
}

@media (max-width: 575.98px) {
  .simple-blog-section {
    padding: 18px 0 8px 0;
  }

  .simple-blog-article {
    padding: 10px 4px 6px 4px;
  }
}

/* === HERO BUTON VE İÇERİK DÜZENLEMELERİ === */
.rich-hero .container {
  position: relative;
  z-index: 3;
}

.rich-hero {
  position: relative;
  z-index: 2;
}

.hero-wave {
  z-index: 1;
}

.btn-modern-hero {
  background: linear-gradient(90deg, #fff 0%, #e6f9f9 100%);
  color: #51eaea;
  font-weight: 700;
  font-size: 1.15rem;
  border-radius: 12px;
  padding: 16px 44px;
  box-shadow: 0 6px 32px 0 rgba(81, 234, 234, 0.10);
  border: none;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  position: relative;
  z-index: 5;
  outline: none;
  display: inline-block;
  margin-bottom: 30px;
}

.btn-modern-hero:hover,
.btn-modern-hero:focus {
  background: linear-gradient(90deg, #51eaea 0%, #74d12b 100%);
  color: #fff;
  box-shadow: 0 12px 48px 0 rgba(81, 234, 234, 0.18), 0 0 0 4px #51eaea33;
  transform: translateY(-2px) scale(1.05) rotate(-1deg);
  border: none;
}

/* === HERO SAĞ GÖRSEL ALANI: ÖZGÜN TASARIM === */
.custom-hero-image {
  max-width: 420px;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 3;
}

.hero-img-ozgun {
  border-radius: 50%;
  box-shadow: 0 8px 32px 0 rgba(44, 62, 80, 0.18), 0 0 0 12px #fff, 0 0 0 24px #51eaea33;
  border: 0;
  width: 260px;
  height: 260px;
  object-fit: cover;
  background: #f8fafc;
  position: relative;
  z-index: 3;
}

.hero-image-decor1 {
  position: absolute;
  left: 10%;
  top: 10%;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #51eaea 0%, #fff 100%);
  border-radius: 50%;
  opacity: 0.18;
  z-index: 1;
  filter: blur(2px);
}

.hero-image-decor2 {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, #74d12b 0%, #51eaea 100%);
  border-radius: 50%;
  opacity: 0.22;
  z-index: 2;
  filter: blur(1.5px);
}

.hero-image-badge {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #51eaea 0%, #74d12b 100%);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 12px 24px;
  border-radius: 20px;
  z-index: 4;
  box-shadow: 0 8px 25px rgba(81, 234, 234, 0.25);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.hero-image-badge:hover {
  transform: translateX(-50%) translateY(-3px);
  box-shadow: 0 12px 30px rgba(81, 234, 234, 0.35);
}

@media (max-width: 991.98px) {
  .custom-hero-image {
    max-width: 320px;
    min-height: 220px;
  }

  .hero-img-ozgun {
    width: 160px;
    height: 160px;
  }

  .hero-image-decor1,
  .hero-image-decor2 {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 575.98px) {
  .custom-hero-image {
    max-width: 98vw;
    min-height: 120px;
  }

  .hero-img-ozgun {
    width: 90vw;
    height: 90vw;
    min-width: 120px;
    min-height: 120px;
  }
}

/* === WAVY (DALGALI) KENARLI GÖRSEL (BÜYÜK) === */
.wavy-image-mask {
  width: 340px;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  border-radius: 50%;
  box-shadow: 0 15px 45px rgba(44, 62, 80, 0.25), 0 0 0 12px #fff, 0 0 0 24px rgba(81, 234, 234, 0.2);
  position: relative;
  z-index: 3;
  overflow: hidden;
  transition: all 0.4s ease;
}

.wavy-image-mask:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 55px rgba(44, 62, 80, 0.3), 0 0 0 12px #fff, 0 0 0 24px rgba(81, 234, 234, 0.3);
}

.wavy-image-mask svg {
  width: 100%;
  height: 100%;
  display: block;
  transition: all 0.4s ease;
}

.wavy-image-mask:hover svg {
  transform: scale(1.1);
}

@media (max-width: 991.98px) {
  .wavy-image-mask {
    width: 200px;
    height: 200px;
  }
}

@media (max-width: 575.98px) {
  .wavy-image-mask {
    width: 90vw;
    height: 90vw;
    min-width: 120px;
    min-height: 120px;
  }
}

/* === HERO İSTATİSTİK KUTULARI RESİM ALTINDA === */


@media (max-width: 991.98px) {
  .hero-stats {
    margin-top: 10px;
  }
}

/* === MODERN YATAY BLOG KARTI === */
.modern-blog-section {
  background: #f8fafc;
  padding: 80px 0 60px 0;
  position: relative;
}

.blog-section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #25262a;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
  position: relative;
  display: inline-block;
}

.blog-section-title:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #51eaea 0%, #74d12b 100%);
  border-radius: 2px;
}

.blog-section-desc {
  color: #737b8a;
  font-size: 1.1rem;
  margin-bottom: 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.blog-article-wrapper {
  background: rgba(255, 255, 255, 0.725);
  border-radius: 20px;
  box-shadow: 0 10px 40px -15px rgba(81, 234, 234, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.blog-article-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px -10px rgba(81, 234, 234, 0.25);
}

.blog-article-header {
  padding: 30px 40px;
  background: linear-gradient(90deg, #51eaea 0%, #74d12b 100%);
  color: #fff;
  position: relative;
  border-radius: 30px 30px 0 0;
}

.blog-category-badge {
  position: absolute;
  top: -15px;
  left: 30px;
  background: #fff;
  color: #51eaea;
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.blog-article-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}

.blog-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 0;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.9rem;
  opacity: 0.9;
}

.blog-article-content {
  overflow: visible !important;
  position: static !important;
  overflow: visible !important;
  position: static !important;
  padding: 40px;
}

.blog-text-content {
  padding-right: 30px;
}

.blog-intro {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #4a5568;
  margin-bottom: 30px;
  position: relative;
  padding-left: 20px;
}

.blog-intro:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: linear-gradient(to bottom, #51eaea, #74d12b);
  border-radius: 2px;
}

.content-subtitle {
  font-size: 1.4rem;
  font-weight: 700;
  color: #25262a;
  margin: 30px 0 15px 0;
  position: relative;
  padding-bottom: 10px;
}

.content-subtitle:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: #51eaea;
  border-radius: 2px;
}

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

.symptom-list li {
  padding: 10px 0;
  border-bottom: 1px solid #edf2f7;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #4a5568;
}

.symptom-list li .icon-check-circle {
  color: #51eaea;
  font-size: 1.2em;
}

/* Bilgi Grafiği */
.info-graphic {
  margin: 30px 0;
  padding: 20px;
  background: #f8fafc;
  border: 1px solid rgb(226, 224, 224);
  border-radius: 15px;
}

.graphic-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.graphic-circle {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  position: relative;
  background: #edf2f7;
  margin-bottom: 20px;
}

.circle-segment {
  position: absolute;
  width: 100%;
  height: 100%;
  clip-path: polygon(50% 50%, 50% 0%, 100% 0%, 100% 50%);
  border-radius: 50%;
  transform: rotate(calc(var(--segment-percent) * 360deg));
  background: conic-gradient(var(--segment-color) 0% calc(var(--segment-percent) * 100%),
      transparent calc(var(--segment-percent) * 100%) 100%);
}

.circle-segment span {
  position: absolute;
  transform: rotate(calc(var(--segment-percent) * 180deg)) translate(70px) rotate(calc(var(--segment-percent) * -180deg));
  font-weight: 700;
  color: var(--segment-color);
}

.circle-segment p {
  position: absolute;
  transform: rotate(calc(var(--segment-percent) * 180deg)) translate(90px) rotate(calc(var(--segment-percent) * -180deg));
  font-size: 0.7rem;
  width: 80px;
  text-align: center;
  color: #4a5568;
}

.graphic-legend {
  text-align: center;
  font-size: 0.9rem;
  color: #4a5568;
}

/* Tedavi Kartları */
.treatment-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.treatment-card {
  background: #e1ebe9;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(81, 234, 234, 0.1);
  border: 1px solid #edf2f7;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.treatment-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(81, 234, 234, 0.2);
}

.treatment-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #51eaea 0%, #74d12b 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  color: #fff;
  font-size: 1.5rem;
}

.treatment-card h5 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #25262a;
  margin-bottom: 10px;
}

.treatment-card p {
  font-size: 0.95rem;
  color: #4a5568;
  margin-bottom: 0;
}

/* Uzman Görüşü */
.expert-tip {
  display: flex;
  gap: 20px;
  background: #f8fafc;
  border-radius: 15px;
  padding: 25px;
  margin: 40px 0;
  border-left: 4px solid #51eaea;
}

.expert-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid #51eaea;
}

.expert-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tip-content h5 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #25262a;
  margin-bottom: 10px;
}

.tip-content p {
  color: #4a5568;
  margin-bottom: 5px;
}

.expert-name {
  font-weight: 600;
  color: #51eaea;
  font-size: 0.9rem;
  margin-top: 10px;
}

/* Blog Sidebar */
.blog-sidebar {
  position: sticky;
  top: 20px;
}

.sidebar-widget {
  background: #fff;
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(81, 234, 234, 0.1);
  border: 1px solid #edf2f7;
}

.widget-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #25262a;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.widget-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: #51eaea;
  border-radius: 2px;
}

.product-mini-card {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #edf2f7;
}

.product-mini-card:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.product-mini-card img {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  object-fit: cover;
}

.product-info h6 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #25262a;
  margin-bottom: 5px;
}

.product-info .price {
  font-size: 0.9rem;
  font-weight: 700;
  color: #51eaea;
  margin-bottom: 10px;
}

.product-info .btn {
  padding: 5px 15px;
  font-size: 0.8rem;
}

.related-articles {
  list-style: none;
  padding: 0;
  margin: 0;
}

.related-articles li {
  padding: 10px 0;
  border-bottom: 1px solid #edf2f7;
}

.related-articles li:last-child {
  border-bottom: none;
}

.related-articles a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #4a5568;
  text-decoration: none;
  transition: color 0.3s ease;
}

.related-articles a:hover {
  color: #51eaea;
}

.related-articles .icon-arrow-right {
  color: #51eaea;
  font-size: 0.8rem;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.newsletter-form input {
  padding: 12px 15px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 0.9rem;
}

.newsletter-form input:focus {
  border-color: #51eaea;
  outline: none;
}

.newsletter-form .btn {
  padding: 12px;
  font-size: 0.9rem;
}

/* Düğmeler */
.btn-modern-blog {
  background: linear-gradient(90deg, #51eaea 0%, #74d12b 100%);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 12px;
  padding: 16px 44px;
  border: none;
  box-shadow: 0 6px 32px 0 rgba(81, 234, 234, 0.1);
  transition: all 0.3s ease;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.btn-modern-blog:hover {
  background: linear-gradient(90deg, #74d12b 0%, #51eaea 100%);
  color: #fff;
  box-shadow: 0 12px 48px 0 rgba(81, 234, 234, 0.2);
  transform: translateY(-3px);
}

.btn-modern-blog:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 0;
  border-radius: 100%;
  transform: scale(1, 1) translate(-50%);
  transform-origin: 50% 50%;
}

.btn-modern-blog:focus:not(:active)::after {
  animation: ripple 1s ease-out;
}

@keyframes ripple {
  0% {
    transform: scale(0, 0);
    opacity: 0.5;
  }

  100% {
    transform: scale(20, 20);
    opacity: 0;
  }
}

/* Responsive Tasarım */
@media (max-width: 991.98px) {
  .modern-blog-section {
    padding: 60px 0 40px 0;
  }

  .blog-article-header {
    padding: 25px;
  }

  .blog-article-title {
    font-size: 1.5rem;
  }

  .blog-article-content {
    padding: 25px;
  }

  .blog-text-content {
    padding-right: 0;
    margin-bottom: 30px;
  }
}

@media (max-width: 767.98px) {
  .blog-section-title {
    font-size: 2rem;
  }

  .blog-meta {
    flex-direction: column;
    gap: 10px;
  }

  .treatment-cards {
    grid-template-columns: 1fr;
  }

  .expert-tip {
    flex-direction: column;
  }

  .expert-avatar {
    margin-bottom: 15px;
  }
}

@media (max-width: 575.98px) {
  .modern-blog-section {
    padding: 40px 0 30px 0;
  }

  .blog-section-title {
    font-size: 1.8rem;
  }

  .blog-article-header {
    padding: 20px;
  }

  .blog-article-title {
    font-size: 1.3rem;
  }

  .blog-article-content {
    padding: 20px;
  }

  .content-subtitle {
    font-size: 1.2rem;
  }
}




.popular-products-section {
  position: relative;
  padding: 120px 0;
  /* Dalga yüksekliği kadar üst-alt boşluk */
  background-image: url('../images/bg_1.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff !important;
  overflow: visible;
}

.popular-products-wave {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  line-height: 0;
  pointer-events: none;
  height: 100px;
}

.popular-products-wave.top {
  top: 0px;
  transform: rotateX(180deg);
}

.popular-products-wave.bottom {
  bottom: -1px;
  transform: rotateY(180deg);
}

.popular-products-section .item {
  max-width: 320px;
  min-height: 260px;
  margin: 0 auto 32px auto;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  box-shadow: 0 4px 24px 0 rgba(81, 234, 234, 0.10);
  transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
  border: 1.5px solid rgba(255, 255, 255, 0.13);
  position: relative;
  cursor: pointer;
  overflow: hidden;
  z-index: 1;
}


.popular-products-section .item:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 12px 48px 0 rgba(81, 234, 234, 0.18);
  background: rgba(255, 255, 255, 0.18);
}

@media (max-width: 991.98px) {
  .popular-products-section {
    padding: 60px 0 60px 0;
  }

  .popular-products-section .item {
    max-width: 98vw;
    min-height: 180px;
  }
}

.popular-products-section:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(81, 234, 234, 0.75);
  z-index: 1;
  pointer-events: none;
}

.popular-products-section .title-section h2 {
  color: white !important;
}

.popular-products-section .item h3 a {
  color: white !important;
}

.popular-products-section .item .price {
  color: white !important;
}

.popular-products-section>.container,
.popular-products-section .row,
.popular-products-section .item,
.popular-products-section .title-section {
  position: relative;
  z-index: 2;
  color: #fff;
}

/* Responsive düzeltmeler */
@media (max-width: 991.98px) {
  .popular-products-section {
    padding: 150px 0;
  }
}


/* --- Ürün Kartı Rozetleri --- */
.product-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: linear-gradient(90deg, #51eaea 0%, #74d12b 100%);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 7px 18px;
  border-radius: 16px;
  z-index: 3;
  box-shadow: 0 2px 8px 0 rgba(81, 234, 234, 0.13);
}

/* --- Bölüm Açıklaması --- */
.popular-products-desc {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: 60px !important;
}


/* HERO sağ kısmı: modern sade görsel kutusu */
.hero-image-modern {
  background: #fff;
  border-radius: 24px;
  padding: 32px 32px 24px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 320px;
  min-height: 220px;
  box-shadow: none !important;
}

.hero-img-container {

  background-color: rgb(248, 250, 252);
  height: 650px;
  width: 500px;
  position: absolute;
  top: -180px;
  border-radius: 40px 40px 0 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 70px;
  box-shadow: none !important;

}

.hero-main-modern-image {
  object-fit: contain;
  height: 70%;
  border-radius: 18px;
  background: none;
  filter: drop-shadow(0 0 10px rgba(91, 203, 63, 0.411));
}

@media (max-width: 991.98px) {
  .hero-image-modern {
    width: 90vw;
    min-height: 120px;
    padding: 16px 8px 12px 8px;
    
  }

  .hero-main-modern-image {
    width: 200px;
    height: 200px;
  }

  .hero-img-container {
    top: -120px;
    padding-top: 30px;
  }

  .hero-features {
        display: flex
;
    justify-content: center;
    flex-wrap: wrap;
    /* align-items: center; */
    gap: 22px;
  }

}

/* HERO istatistik kartları: modern, düzenli, hover yok */
.hero-stats {
  gap: 2px;
  justify-content: center !important;
  width: 100%;
  margin-top: 12px;
  position: relative;
  bottom: 255px;
}

.modern-stat {
  background: rgba(235, 247, 245, 0.859);
  border-radius: 50%;
  width: 120px;
  min-width: 120px;
  height: 120px;
  text-align: center;
  flex: none;
  padding: 12px;
  box-shadow: 0 0 20px 0 rgba(63, 112, 70, 0.322);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.modern-stat:nth-of-type(1) {
  left: 380px;
  top: 380px;
  position: relative;
}

.modern-stat:nth-of-type(2) {
  position: relative;
  left: 220px;
}

.modern-stat:nth-of-type(3) {
  position: relative;
  right: 380px;
  top: 210px;
}

.modern-stat .stat-value {
  color: #51eaea;
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 4px;
  display: block;
}

.modern-stat .stat-label {
  color: #25262a;
  font-size: 0.95rem;
  font-weight: 500;
}

.modern-stat:hover {
  background: rgb(255, 255, 255);
  box-shadow: 0 0 80px 0 rgba(90, 171, 102, 0.525);

}

.btn-modern-hero {
  margin-bottom: 40px;
  display: inline-block;
}

@media (max-width: 991.98px) {
  .modern-stat {
    padding: 10px 8px 8px 8px;
    min-width: 80px;
    position: static !important;
    left: auto !important;
    top: auto !important;
    right: auto !important;
  }

  .hero-stats {
    gap: 8px;
    position: relative !important;
    bottom: auto !important;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
    top: 30px !important;
  }
  
  .modern-stat:nth-of-type(1),
  .modern-stat:nth-of-type(2),
  .modern-stat:nth-of-type(3) {
    scale: 0.9 ;
  }
}


/* === MODERN BÜLTEN ABONELİK BÖLÜMÜ === */
/* === YATAY BÜLTEN ABONELİK FORMU === */
.horizontal-newsletter {
  position: relative;
  padding: 70px 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
}

.horizontal-newsletter:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(81, 234, 234, 0.85);
  z-index: 1;
}

.newsletter-row {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.newsletter-info {
  flex: 1;
  min-width: 300px;
}

.newsletter-heading {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 15px;
  line-height: 1.3;
}

.newsletter-subtitle {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 30px;
  max-width: 400px;
}

.newsletter-stats {
  display: flex;
  gap: 30px;
  margin-top: 40px;
}

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

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
}

.newsletter-form-wrapper {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
}

.inline-newsletter-form {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.form-row {
  display: flex;
  gap: 10px;
}

.input-group {
  position: relative;
  flex: 1;
}

.input-icon {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #51eaea;
  font-size: 1.2rem;
}

.form-control {
  width: 100%;
  height: 55px;
  padding: 0 20px 0 45px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: #51eaea;
  box-shadow: 0 0 0 3px rgba(81, 234, 234, 0.2);
  outline: none;
}

.btn-subscribe {
  height: 55px;
  padding: 0 25px;
  background: linear-gradient(90deg, #51eaea 0%, #74d12b 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-subscribe:hover {
  background: linear-gradient(90deg, #74d12b 0%, #51eaea 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(81, 234, 234, 0.3);
}

.btn-subscribe .icon-arrow-right {
  transition: transform 0.3s ease;
}

.btn-subscribe:hover .icon-arrow-right {
  transform: translateX(3px);
}

.form-agreement {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-agreement input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #51eaea;
  flex-shrink: 0;
}

.form-agreement label {
  font-size: 0.85rem;
  color: #4a5568;
  margin-bottom: 0 !important;
}

.form-agreement a {
  color: #51eaea;
  text-decoration: none;
  font-weight: 500;
}

.newsletter-assurance {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  padding-left: 10px;
}

.newsletter-assurance .icon-shield {
  color: #fff;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.newsletter-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  width: 100%;
  z-index: 3;
  line-height: 0;
}

/* Responsive Tasarım */
@media (max-width: 991.98px) {
  .newsletter-row {
    flex-direction: column;
    align-items: stretch;
    gap: 40px;
  }

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

  .newsletter-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

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

@media (max-width: 767.98px) {
  .inline-newsletter-form {
    padding: 25px;
  }

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

  .btn-subscribe {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 575.98px) {
  .horizontal-newsletter {
    padding: 50px 0;
  }

  .newsletter-heading {
    font-size: 1.8rem;
  }

  .newsletter-subtitle {
    font-size: 1rem;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .newsletter-stats {
    gap: 20px;
  }
}

/* --- Modern Arama Çubuğu Tasarımı --- */
.modern-search-bar {
  position: relative;
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px 0 rgba(81, 234, 234, 0.10);
  padding: 6px 8px 6px 0;
  max-width: 420px;
  margin-left: auto;
  margin-right: 0;
  border: 1.5px solid #e3e6ed;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.modern-search-bar:focus-within {
  box-shadow: 0 0 0 3px rgba(81, 234, 234, 0.15);
  border-color: #51eaea;
}

.modern-search-bar .search-icon {
  position: absolute;
  left: 18px;
  color: #51eaea;
  font-size: 1.2rem;
  z-index: 2;
  pointer-events: none;
}

.modern-search-bar #search {
  flex: 1;
  border: none;
  background: transparent;
  padding: 14px 16px 14px 48px;
  font-size: 1.08rem;
  color: #25262a;
  border-radius: 16px;
  outline: none;
  box-shadow: none;
  transition: background 0.2s;
}

.modern-search-bar #search::placeholder {
  color: #b3b3b3;
  font-weight: 400;
  font-size: 1rem;
}

.modern-search-bar .modern-search-btn {
  background: linear-gradient(90deg, #51eaea 0%, #74d12b 100%);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  padding: 12px 22px;
  margin-left: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 2px 8px 0 rgba(81, 234, 234, 0.10);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
  cursor: pointer;
}

.modern-search-bar .modern-search-btn:hover,
.modern-search-bar .modern-search-btn:focus {
  background: linear-gradient(90deg, #74d12b 0%, #51eaea 100%);
  color: #fff;
  box-shadow: 0 4px 16px 0 rgba(81, 234, 234, 0.18);
  transform: scale(1.03);
}

@media (max-width: 575.98px) {
  .modern-search-bar {
    max-width: 100%;
    padding: 2px 2px 2px 0;
  }

  .modern-search-bar #search {
    padding: 10px 8px 10px 38px;
    font-size: 0.98rem;
  }

  .modern-search-bar .modern-search-btn {
    padding: 10px 12px;
    font-size: 0.95rem;
  }

  .modern-search-bar .search-icon {
    left: 10px;
    font-size: 1rem;
  }
}



.product-quantity {
  padding: 0 !important;
}


/* === YENİ HAKKIMIZDA BÖLÜMÜ === */
.about-us-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #51eaea 0%, #74d12b 100%);
  position: relative;
  overflow: hidden;
  color: #fff;
}

/* Arka plan animasyonlu grafikler */
.about-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  z-index: 1;
  pointer-events: none;
}

.about-bg-pattern::before,
.about-bg-pattern::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  animation: float 15s infinite linear;
}

.about-bg-pattern::before {
  width: 300px;
  height: 300px;
  top: -50px;
  left: -50px;
  animation-delay: 0s;
}

.about-bg-pattern::after {
  width: 200px;
  height: 200px;
  bottom: -30px;
  right: -30px;
  animation-delay: 5s;
}

@keyframes float {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }

  25% {
    transform: translate(50px, 50px) rotate(90deg);
  }

  50% {
    transform: translate(100px, 0) rotate(180deg);
  }

  75% {
    transform: translate(50px, -50px) rotate(270deg);
  }

  100% {
    transform: translate(0, 0) rotate(360deg);
  }
}

/* Başlık Stilleri */
.section-main-title {
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  z-index: 3;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.title-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  position: relative;
  z-index: 3;
}

.title-divider .left-line,
.title-divider .right-line {
  width: 80px;
  height: 2px;
  background: rgba(255, 255, 255, 0.5);
}

.title-divider .icon {
  color: #fff;
  font-size: 1.2rem;
  margin: 0 15px;
}

.section-intro {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 50px;
  line-height: 1.7;
  position: relative;
  z-index: 3;
}

/* İçerik Kartları */
.about-content-row {
  margin-bottom: 80px;
  position: relative;
  z-index: 3;
}

.about-story {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.about-story:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.15);
}

.story-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.story-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: #fff;
}

.story-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.founder-quote {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 25px;
  margin-top: 30px;
  position: relative;
  border-left: 4px solid #fff;
  backdrop-filter: blur(5px);
}

.quote-icon {
  position: absolute;
  top: -15px;
  left: 25px;
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, #51eaea 0%, #74d12b 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
}

.founder-quote p {
  font-style: italic;
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.founder-signature {
  text-align: right;
}

.founder-signature span {
  display: block;
  font-weight: 700;
  color: #fff;
}

.founder-signature small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

/* Misyon & Vizyon */
.mission-vision {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.mission-box,
.vision-box {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  display: flex;
  gap: 20px;
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.mission-box:hover,
.vision-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.15);
}

.icon-box {
  width: 60px;
  height: 60px;
  min-width: 60px;
  background: #fff;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #51eaea;
  font-size: 1.8rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.mission-box:hover .icon-box,
.vision-box:hover .icon-box {
  background: linear-gradient(135deg, #51eaea 0%, #74d12b 100%);
  color: #fff;
}

.content-box h4 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
}

.content-box p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 0;
}

/* Değerler */
.values-box {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.values-box h4 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.values-box h4:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: #fff;
}

.values-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.value-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(5px);
  border-color: rgba(255, 255, 255, 0.3);
}

.value-icon {
  color: #fff;
  font-size: 1.3rem;
  transition: all 0.3s ease;
}

.value-text {
  color: #fff;
  font-weight: 600;
  transition: all 0.3s ease;
}

/* Takım ve İstatistikler */
.team-stats-section {
  margin-top: 50px;
  position: relative;
  z-index: 3;
}

.team-image-box {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
  height: 100%;
  transition: all 0.5s ease;
}

.team-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-image-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

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

.experience-label {
  position: absolute;
  top: -20px;
  right: -20px;
  background: #fff;
  color: #51eaea;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 2;
  transition: all 0.3s ease;
}

.team-image-box:hover .experience-label {
  transform: scale(1.1) rotate(15deg);
  background: linear-gradient(135deg, #51eaea 0%, #74d12b 100%);
  color: #fff;
}

.experience-label .years {
  font-size: 2.5rem;
  line-height: 1;
}

.experience-label .text {
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 5px;
}

.achievements-box {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease;
}

.achievements-box:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.achievements-box h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

.achievements-box h3:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: #fff;
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-bottom: 40px;
}

.achievement-item {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 20px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.achievement-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.3);
}

.achievement-item .number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 5px;
  line-height: 1;
  position: relative;
}


.achievement-item .label {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  font-weight: 500;
}


.achievement-item i {
  font-size: 30px;
}

.certificates {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.cert-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  font-weight: 600;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.cert-badge:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.cert-badge i {
  color: #fff;
  font-size: 1.2rem;
}

/* Video Hissi Veren Arka Plan Animasyonu */
.video-effect {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.video-effect .particle {
  position: absolute;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  animation: float-particle 15s infinite linear;
}

@keyframes float-particle {
  0% {
    transform: translate(0, 0) scale(0.5);
    opacity: 0;
  }

  10% {
    opacity: 0.3;
  }

  50% {
    transform: translate(100px, 50px) scale(1);
    opacity: 0.1;
  }

  100% {
    transform: translate(200px, 100px) scale(0.5);
    opacity: 0;
  }
}

/* Responsive Tasarım */
@media (max-width: 1199.98px) {
  .section-main-title {
    font-size: 2.5rem;
  }

  .about-story,
  .mission-box,
  .vision-box,
  .values-box,
  .achievements-box {
    padding: 30px;
  }

  .site-logo .logo-img {
    height: 90px;
  }

  .site-navigation {
    width: 115%;
  }
}

/* 575px altında navigation genişlik sorunu için ek düzeltme */
@media (max-width: 575.98px) {
  .site-navigation {
    width: 100% !important;
    overflow: hidden;
  }
}

@media (max-width: 991.98px) {

  .breadcrumb {
    margin-top: 56px !important;
  }

  .about-us-section {
    padding: 80px 0;
  }

  .about-content-row {
    margin-bottom: 50px;
    gap: 25px;
  }

  .mission-vision {
    gap: 20px;
  }

  .values-list {
    grid-template-columns: 1fr;
  }

  .team-image-box {
    margin-bottom: 30px;
  }

  .experience-label {
    width: 100px;
    height: 100px;
    right: -10px;
  }

  .experience-label .years {
    font-size: 2rem;
  }

  .team-stats-section .row {
    gap: 50px;
  }
}

@media (max-width: 767.98px) {
  .section-main-title {
    font-size: 2.2rem;
  }

  .section-intro {
    font-size: 1.1rem;
  }

  .about-story,
  .mission-box,
  .vision-box,
  .values-box,
  .achievements-box {
    padding: 25px;
  }

  .achievements-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .icon-box {
    width: 50px;
    height: 50px;
    min-width: 50px;
    font-size: 1.5rem;
  }

  .content-box h4 {
    font-size: 1.3rem;
  }

  .content-box p {
    font-size: 1rem;
  }
}

@media (max-width: 575.98px) {
  .about-us-section {
    padding: 60px 0;
  }

  .section-main-title {
    font-size: 1.8rem;
  }

  .title-divider .left-line,
  .title-divider .right-line {
    width: 40px;
  }

  .about-story,
  .mission-box,
  .vision-box,
  .values-box,
  .achievements-box {
    padding: 20px;
  }

  .mission-box,
  .vision-box {
    flex-direction: column;
  }

  .experience-label {
    width: 80px;
    height: 80px;
    top: -10px;
  }

  .experience-label .years {
    font-size: 1.8rem;
  }

  .experience-label .text {
    font-size: 0.8rem;
  }
}


/* Yeni Eklenen Video Arkaplan Stilleri */
.about-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.about-video-container video {
  min-width: 50%;
  min-height: 50%;
  object-fit: cover;
  opacity: 0.95;
  /* Videoyu çok hafif gösteriyoruz */
  filter: grayscale(100%) brightness(0.7);
  mask-image: linear-gradient(to top, transparent, white 70%);
}

.about-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(81, 234, 234, 0.85) 0%, rgba(116, 209, 43, 0.85) 100%);
  z-index: 1;
}

/* Mevcut about-us-section'a küçük ekleme */
.about-us-section {
  position: relative;
  /* Bu zaten varsa eklemeyin */
  overflow: hidden;
  /* Bu zaten varsa eklemeyin */
  isolation: isolate;
  /* Yeni eklenen */
}



.feathered-image {
  display: inline-block;
  -webkit-mask-image: radial-gradient(circle, rgba(0, 0, 0, 1) 10%, rgba(0, 0, 0, 0) 30%);
  mask-image: radial-gradient(circle, rgba(0, 0, 0, 1) 10%, rgba(0, 0, 0, 0) 30%);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: cover;
  mask-size: cover;
  position: absolute;
  left: -275px;
  scale: 1.4;
  top: -450px;
}


.feathered-image-overlay {
  background: linear-gradient(135deg, rgba(81, 234, 234, 0.85) 0%, rgba(116, 209, 43, 0.85) 100%);
  z-index: 2100;
}

.feathered-image video {
  right: 180px;
  scale: 0.60;
}

.feathered-image-2 {
  display: inline-block;
  -webkit-mask-image: radial-gradient(circle, rgba(0, 0, 0, 1) 10%, rgba(0, 0, 0, 0) 30%);
  mask-image: radial-gradient(circle, rgba(0, 0, 0, 1) 15%, rgba(0, 0, 0, 0) 70%);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: cover;
  mask-size: cover;
  position: absolute;
  right: 0;
  scale: 1;
  bottom: -50px;
  width: 900px !important;
  overflow: hidden !important;
}

.feathered-image-2 .feathered-image-overlay {
  background: linear-gradient(135deg, rgba(81, 234, 234, 0.85) 0%, rgba(116, 209, 43, 0.85) 100%);
  opacity: 0.3;
  position: absolute;
  width: 100%;
  height: 100%;
}


.feathered-gif {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  opacity: 0.2;
  animation: floatAnim 25s ease-in-out infinite;
}

.feathered-gif.gif1 {
  top: 1050px;
  opacity: 0.18;
  left: 2%;
  rotate: 25deg;
  z-index: 0;
  scale: 2.5;
  position: absolute;
}



.feathered-gif.gif2 {
  top: 100px;
  right: 1%;
  width: 250px;
  animation-delay: 5s;
}

.feathered-gif.gif3 {
  bottom: 2%;
  left: 2%;
  rotate: -25deg;
  width: 300px;
  animation-delay: 10s;
  opacity: 0.8;
}

@keyframes floatAnim {

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

  50% {
    transform: translateY(-20px);
  }
}










/* Yeni Ürünler Bölümü Güncellemesi */
.site-section.bg-light {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e6f9f9 100%);
}

.site-section.bg-light:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('videos/dna1.gif') no-repeat;
  background-size: 800px;
  background-position: -100px center;
  opacity: 0.08;
  z-index: 0;
}

.site-section.bg-light .title-section h2 {
  position: relative;
  z-index: 2;
  color: #25262a;
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.site-section.bg-light .title-section h2:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #51eaea 0%, #74d12b 100%);
}

.products-slider-container {
  position: relative;
  z-index: 3;
  padding: 30px 0;
}

.product-slider-card {
  background: white;
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(81, 234, 234, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(81, 234, 234, 0.2);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.product-slider-card:before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(81, 234, 234, 0.1) 0%, transparent 70%);
  z-index: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-slider-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(81, 234, 234, 0.2);
  border-color: rgba(81, 234, 234, 0.4);
}

.product-slider-card:hover:before {
  opacity: 1;
}

.product-slider-card img {
  max-height: 180px;
  object-fit: contain;
  margin: 0 auto 20px;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.product-slider-card:hover img {
  transform: scale(1.1) rotate(5deg);
}

.product-slider-card h3 {
  font-size: 1.2rem;
  color: #25262a;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.product-slider-card .price {
  font-size: 1.3rem;
  font-weight: 700;
  color: #51eaea;
  position: relative;
  z-index: 1;
}

.product-slider-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #51eaea 0%, #74d12b 100%);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(81, 234, 234, 0.3);
}

.product-slider-animation {
  position: absolute;
  width: 100px;
  height: 100px;
  background: url('videos/dna1.gif') no-repeat center/contain;
  opacity: 0.1;
  z-index: 0;
  pointer-events: none;
}

.product-slider-animation-1 {
  top: 20%;
  left: 10%;
  animation: float 8s ease-in-out infinite;
}

.product-slider-animation-2 {
  bottom: 10%;
  right: 15%;
  animation: float 10s ease-in-out infinite reverse;
}





/* Müşteri Yorumları Bölümü Güncellemesi */
.testimonials-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  overflow: hidden;
}

.testimonials-section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://lottie.host/78a8b793-d8a0-4c64-85c8-43044b04df8a/AQvF5uHHSX.lottie') no-repeat;
  background-size: 400px;
  background-position: right bottom;
  opacity: 0.1;
  z-index: 0;
}

.testimonial-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(81, 234, 234, 0.1);
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
  border: 1px solid rgba(81, 234, 234, 0.2);
  margin: 15px;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(81, 234, 234, 0.2);
}

.testimonial-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #51eaea 0%, #74d12b 100%);
  border-radius: 20px 20px 0 0;
}

.testimonial-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  border: 3px solid #51eaea;
  box-shadow: 0 5px 15px rgba(81, 234, 234, 0.3);
  transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-avatar {
  transform: scale(1.1);
  border-color: #74d12b;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-quote {
  font-size: 1.1rem;
  color: #4a5568;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 20px;
  position: relative;
}

.testimonial-quote:before,
.testimonial-quote:after {
  content: '"';
  font-size: 3rem;
  color: rgba(81, 234, 234, 0.2);
  position: absolute;
  font-family: Georgia, serif;
}

.testimonial-quote:before {
  top: -20px;
  left: -15px;
}

.testimonial-quote:after {
  bottom: -40px;
  right: -15px;
}

.testimonial-author {
  font-weight: 700;
  color: #25262a;
  margin-top: 20px;
  text-align: center;
}

.testimonial-rating {
  color: #f7b731;
  font-size: 1rem;
  margin-top: 5px;
  text-align: center;
}

.testimonial-animation {
  position: absolute;
  width: 150px;
  height: 150px;
  opacity: 0.1;
  z-index: 0;
  pointer-events: none;
}

.testimonial-animation-1 {
  top: 10%;
  left: 5%;
  background: url('https://lottie.host/9a26d055-3d70-49a3-acb0-2a6ace2e02a3/jTEIoEVLQ2.lottie') no-repeat center/contain;
  animation: float 12s ease-in-out infinite;
}

.testimonial-animation-2 {
  bottom: 10%;
  right: 5%;
  background: url('videos/dna1.gif') no-repeat center/contain;
  animation: float 15s ease-in-out infinite reverse;
}

/* === Scroll Animasyonları (AOS Alternatifi) === */

/* Ürün görselleri için sabit boyut ve responsive yapı */
.fixed-product-img {
  width: 350px;
  height: 350px;
  object-fit: contain;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border-radius: 12px;
  box-shadow: 0 2px 8px 0 rgba(80, 100, 120, 0.04);
}

.product-little-image {
      overflow: hidden !important;
    display: block;
    height: 300px;
    width: 300px;
}


/* WhatsApp Sabit Buton */
.whatsapp-float {
  position: fixed;
  width: 62px;
  height: 62px;
  bottom: 28px;
  right: 28px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 38px;
  z-index: 9999;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
  cursor: pointer;
  overflow: visible;
}

.whatsapp-float {
  opacity: 0;
  pointer-events: none;
}

/* Görünür olduğunda */
.whatsapp-float.visible {
  opacity: 1;
  pointer-events: auto;
}

.whatsapp-float:hover {
  transform: scale(1.12) rotate(-6deg);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.35);
  color: white;
}

.whatsapp-float .fa-whatsapp {
  z-index: 2;
  position: relative;
  animation: wa-bounce 1.2s infinite alternate;
}

@keyframes wa-bounce {
  0% {
    transform: scale(1) rotate(0deg);
  }

  60% {
    transform: scale(1.08) rotate(-8deg);
  }

  100% {
    transform: scale(1.13) rotate(8deg);
  }
}

.wa-pulse {
  position: absolute;
  width: 62px;
  height: 62px;
  left: 0;
  top: 0;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.25);
  z-index: 1;
  animation: wa-pulse-anim 1.5s infinite;
}

@keyframes wa-pulse-anim {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }

  70% {
    transform: scale(1.5);
    opacity: 0;
  }

  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}



/* Yeni Ürünler kart hover davranışını AOS'dan bağımsızlaştır */
.product-slider-card[data-aos] {
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.3s, border-color 0.3s, background 0.3s, color 0.3s !important;
  will-change: unset !important;
}

.product-slider-card[data-aos]:hover {
  transform: translateY(-10px) !important;
  box-shadow: 0 15px 40px rgba(81, 234, 234, 0.2);
  border-color: rgba(81, 234, 234, 0.4);
  filter: none !important;
  opacity: 1 !important;
}

.btn-modern-hero[data-aos]:hover {
  background: linear-gradient(90deg, #51eaea 0%, #74d12b 100%);
  color: #fff;
  box-shadow: 0 12px 48px 0 rgba(81, 234, 234, 0.18), 0 0 0 4px #51eaea33;
  transform: translateY(-2px) scale(1.05) rotate(-1deg);
  border: none;
}

.treatment-card[data-aos]:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(81, 234, 234, 0.2);
}

/* === AOS Animasyonları Hover Davranışını Etkilemesin === */
[data-aos] {
  pointer-events: auto !important;
  transition-property: none, opacity, transform !important;
}

/* Kart, buton, ürün, testimonial gibi hover efektli öğelerde AOS animasyonu aktifken hover bozulmasın */
.product-slider-card[data-aos],
.item[data-aos],
.testimonial-card[data-aos],
.btn[data-aos],
.blog-article-title[data-aos],
.blog-category-badge[data-aos],
.stat-item[data-aos],
.team-image-box[data-aos],
.achievements-box[data-aos],
.about-story[data-aos],
.mission-vision[data-aos],
.values-box[data-aos],
.treatment-card[data-aos],
.cert-badge[data-aos],
.product-slider-card[data-aos],
.btn-modern-hero[data-aos] {
  transition: box-shadow 0.3s, border-color 0.3s, background 0.3s, color 0.3s, transform 0.3s !important;
}

/* Hover'da AOS animasyonundan bağımsız olarak hover efektleri çalışmaya devam etsin */
.product-slider-card[data-aos]:hover,
.item[data-aos]:hover,
.testimonial-card[data-aos]:hover,
.btn[data-aos]:hover,
.blog-article-title[data-aos]:hover,
.blog-category-badge[data-aos]:hover,
.stat-item[data-aos]:hover,
.team-image-box[data-aos]:hover,
.achievements-box[data-aos]:hover,
.about-story[data-aos]:hover,
.mission-vision[data-aos]:hover,
.values-box[data-aos]:hover,
.treatment-card[data-aos]:hover,
.cert-badge[data-aos]:hover,
.product-slider-card[data-aos]:hover {
  /* Sadece hover için tanımlı olan efektler uygulanır, AOS animasyonu engellemez */
  filter: none !important;
  opacity: 1 !important;
}




/* Popüler ürün kartlarındaki resimler için sabit boyut ve hizalama */
.popular-products-section .item img {
  width: 220px;
  height: 300px;
  object-fit: contain;
  display: block;
  margin: 0 auto 12px auto;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

/* Language Selector Styles */
.language-selector {
  position: relative;
  display: inline-block;
  margin-right: 15px;
}

.language-toggle {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 25px;
  padding: 8px 15px;
  color: #2c3e50;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.language-toggle:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(81, 234, 234, 0.4);
  color: #2c3e50;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(81, 234, 234, 0.2);
}

.flag-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin-right: 8px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

.flag-icon.tr {
  background-image: url('../images/tr.webp');
  background-size: cover;
  background-position: -2px center;
  background-repeat: no-repeat;
}

.flag-icon.az {
  background-image: url('../images/az.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.lang-arrow {
  margin-left: 5px;
  font-size: 12px;
  transition: transform 0.3s ease;
}

.language-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  overflow: hidden;
  border: 1px solid rgba(81, 234, 234, 0.2);
  backdrop-filter: blur(15px);
  margin-top: 8px;
}

.language-selector:hover .language-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-selector:hover .lang-arrow {
  transform: rotate(180deg);
}

.language-option {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  color: #2c3e50;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.25s ease;
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
  position: relative;
}

.language-option:last-child {
  border-bottom: none;
}

.language-option:hover {
  background: rgba(81, 234, 234, 0.1);
  color: #2c3e50;
  text-decoration: none;
  transform: translateX(3px);
}

.language-option.active {
  display: none;
}

.language-option .flag-icon {
  margin-right: 12px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .language-selector {
    margin-right: 10px;
  }

  .language-toggle {
    padding: 6px 12px;
    font-size: 13px;
  }

  .flag-icon {
    width: 18px;
    height: 18px;
    margin-right: 6px;
  }
  
  .site-logo .logo-img {
    height: 75px;
    max-width: 180px;
    position: absolute;
    top: 50%;
    translate: 0 -50%;
    scale: 1;
  }
  
  .js-logo-clone {
    position: relative !important;
    height: 100% !important;
    display: block !important;
  }
}

@media (max-width: 480px) {
  .site-logo .logo-img {
    height: 75px;
    max-width: 150px;
    position: absolute;
    top: 50%;
    translate: 0 -50%;
    scale: 1;
  }
  
  .js-logo-clone {
    position: relative !important;
    height: 100% !important;
    display: block !important;
  }
}

@media (max-width: 360px) {
  .site-logo .logo-img {
    height:75px;
    max-width: 120px;
    position: absolute;
    top: 50%;
    translate: 0 -50%;
    scale: 1;
  }
  
  .js-logo-clone {
    position: relative !important;
    height: 100% !important;
    display: block !important;
  }
}

@media (max-width:480px) {

.modern-stat:nth-of-type(1), .modern-stat:nth-of-type(2), .modern-stat:nth-of-type(3) {

  scale: 0.8 !important;
  position: relative !important;
  margin: 0 -6px !important;
}

}