@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --primary-100: white;
  --primary-300: #e2181e;
  --primary-400: #0098d1;
  --primary-500: #25d366;
  --primary-600: #7bb0a6;
  --primary-700: #29499b;
  --primary-800: #333;
  --primary-900: black;
  --gray-background: #f9f9f9;
  --border-color: #ebebeb;
  --white-text: white;
  --black-text: black;
  --border-radius: 8px;
}

/* GENERAL CSS START */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
}

body {
  background-color: #f9f9f9 !important;
}

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

a {
  text-decoration: none !important;
  color: var(--primary-800);
  font-size: 16px;
  transition: all 0.3s ease;
  pointer-events: auto !important;
}

li {
  list-style: none;
}

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

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

img {
  max-width: 100%;
}

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

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

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

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

button {
  transition: all 0.3s ease;
}

input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
  display: none;
}

.swiper-pagination-bullet {
  border: 2px solid var(--primary-800);
}

.swiper-pagination-bullet-active {
  background: var(--primary-800) !important;
}

.container {
  position: relative;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after,
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  font-size: 27px !important;
  color: var(--primary-800);
}

.container .swiper-button-next,
.container .swiper-button-prev {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.4s ease;
}

.container .swiper-button-prev {
  transform: translateX(-50px);
}

.container:hover .swiper-button-next,
.container:hover .swiper-button-prev {
  opacity: 1;
  transform: translateX(0);
}

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

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

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

.title-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  gap: 15px;
}

@media (max-width: 768px) {
  .title-wrapper {
    flex-direction: column;
    justify-content: center;
  }
}

.title-wrapper .link {
  padding: 10px 20px;
  text-transform: uppercase;
  border: 2px solid var(--primary-700);
  color: var(--primary-700);
  border-radius: 25px;
}

.title-wrapper .link:hover {
  background-color: var(--primary-700);
  color: var(--white-text);
}

.section-title {
  font-size: 32px;
  font-weight: 600;
  color: var(--primary-300);
}

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

/* GENERAL CSS END */

/* CONTENT WRAPPER START */

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

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

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

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

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

/* CONTENT WRAPPER END */

/* HEADER START */

header {
  background-color: var(--primary-100);
  position: sticky;
  top: 0;
  z-index: 11;
}

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

.logo img {
  max-width: 235px;
  transition: all 0.3s ease;
}

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

.desktop-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.desktop-wrapper nav ul {
  display: flex;
  align-items: center;
  gap: 30px;
}

.desktop-wrapper nav ul li {
  position: relative;
}

.desktop-wrapper nav ul li a {
  text-transform: capitalize;
  color: var(--primary-800);
  font-weight: 400;
  font-size: 16px;
}

.desktop-wrapper nav ul li:not(:last-child)::after {
  content: "|";
  position: absolute;
  top: 0;
  right: -15px;
  opacity: 0.3;
  color: var(--primary-800);
}

.desktop-wrapper nav ul li a:hover {
  color: var(--primary-300);
}

@media (max-width: 1200px) {
  .desktop-wrapper nav ul li a {
    font-size: 12px;
  }
}

.desktop-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* LANGUAGE DRODPOWN START */
.languages {
  position: relative;
  display: inline-block;
  cursor: pointer;
  user-select: none;
}

.selected-language {
  background: #fff;
  border: 1px solid #e2e2e2;
  border-radius: 8px;
  padding: 5px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.selected-language:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.selected-language img {
  width: 28px;
  height: 20px;
  object-fit: contain;
  border-radius: 4px;
}

.language-dropdown {
  position: absolute;
  top: 115%;
  left: 0;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-5px);
  transition: all 0.25s ease;
  z-index: 1000;
}

.languages:hover .language-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.language-dropdown a {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 4px;
  transition: background 0.2s ease;
}

.language-dropdown a:hover {
  background: #f3f3f3;
}

.language-dropdown img {
  width: 28px;
  height: 20px;
  object-fit: contain;
  border-radius: 4px;
  transition: transform 0.2s;
}

.language-dropdown img:hover {
  transform: scale(1.1);
}

/* LANGUAGE DRODPOWN END */

/* SEARCH BOX - START */

.searchBox {
  position: absolute;
  top: -100vh;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
  display: flex;
  align-items: center;
  background-color: white;
  gap: 10px;
  padding: 200px 60px;
  transition: 0.5s ease-in-out;
}

.searchBox input {
  width: 100%;
  border: none;
  outline: none;
  height: 50px;
  font-size: 32px;
  background: white;
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
}

.searchBox input::placeholder {
  font-size: 32px;
}

.searchBox.active {
  top: 0;
}

.searchOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  z-index: 8;
}

.searchOverlay.active {
  visibility: visible;
  opacity: 1;
}

.searchSubmit {
  background: none;
  border: none;
}

.searchSubmit i {
  font-size: 32px;
}

.searchBtn i {
  color: var(--primary-800);
  font-size: 22px;
}

.closeBtn {
  position: absolute;
  top: 20px;
  right: 20px;
}

.closeBtn i {
  font-size: 42px;
  color: var(--primary-800);
}

/* SEARCH BOX - END */

/* MOBILE HEADER START */

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

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

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

.dropdown-content {
  width: 225px;
  position: absolute;
  background: white;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  z-index: 9;
  pointer-events: none;
  top: 40px;
  left: 0;
  transform: scaleY(0);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: top;
  opacity: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.dropdown .dropdown-items .dropdown .menu-wrapper a {
  position: relative;
  padding-bottom: 0px !important;
}

@media (max-width: 992px) {
  .dropdown .dropdown-items .dropdown .menu-wrapper a {
    padding: 15px 0px 15px 30px !important;
  }
}

.dropdown .dropdown-content .dropdown-items .dropdown .menu-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dropdown .dropdown-content .dropdown-items .dropdown .dropdown-content {
  position: absolute;
  top: 0;
  left: 100%;
  border-top: none;
  transform: scaleY(0);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: top;
  opacity: 0;
}

@media (max-width: 992px) {
  .dropdown .dropdown-content .dropdown-items .dropdown .dropdown-content {
    position: static;
    top: 0;
    left: 0;
    border-top: none;
    transform: scaleY(1);
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: top;
    opacity: 1;
  }
}

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

.dropdown .dropdown-content .dropdown-items .dropdown .dropdown-icon i {
  transform: rotate(0deg);
}

.dropdown .dropdown-content .dropdown-items .dropdown:hover .dropdown-icon i {
  color: var(--primary-900);
  transform: rotate(180deg);
  transition: transform 0.3s ease, color 0.3s ease;
}

.dropdown .dropdown-content .dropdown-items li:not(:last-child)::after {
  display: none;
}

@media (min-width: 992px) {
  .dropdown
    .dropdown-content
    .dropdown-items
    .dropdown:hover
    > .dropdown-content {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: all;
  }
}

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

.dropdown-items {
  flex-direction: column;
  gap: 0 !important;
  width: 100%;
  padding: 10px 0 !important;
}

.dropdown-content .dropdown-items li {
  display: block;
  padding: 10px;
  width: 100%;
  transition: all 0.3s ease;
}

@media (max-width: 992px) {
  .dropdown-icon {
    padding: 15px;
    border-left: 1px solid gainsboro;
  }

  .dropdown-content .dropdown-items li {
    padding: 0px;
    border-bottom: none;
  }

  .dropdown-content .dropdown-items li a {
    color: black !important;
    font-weight: 300;
    border-top: 1px solid #81818133;
  }
}

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

.dropdown-icon i {
  transition: all 0.3s ease;
  font-size: 12px;
}

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

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

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

/* HEADER DROPDOWN END */

/* MOBILE HEADER START */

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

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

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

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

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

@media (max-width: 768px) {
  .mobile-top {
    justify-content: space-between;
  }
}

.hamburger {
  display: block;
  cursor: pointer;
  position: relative;
  left: 38%;
}

@media (max-width: 768px) {
  .hamburger {
    right: 0px;
    left: auto;
  }
}

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

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

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

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

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

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

.hamburger:not(.active):hover .bar:nth-child(1),
.hamburger:not(.active):hover .bar:nth-child(3) {
  width: 15px;
}

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

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

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

.header-wrapper {
  background-color: white;
  width: 50%;
  height: 100vh;
  position: fixed;
  left: -100%;
  top: 0;
  z-index: 12;
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow-y: scroll;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

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

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

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

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

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

.mobile-header nav {
  margin-bottom: 15px;
}

.mobile-header nav ul li {
  border-bottom: 1px solid #81818133;
}

.mobile-header nav ul li a {
  color: black;
  display: block;
  padding: 15px 0px 15px 30px !important;
  width: 100%;
}

.mobile-header .dropdown-icon i {
  font-size: 16px;
}

.mobile-form form {
  display: flex;
  align-items: center;
  padding: 10px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.mobile-form form input {
  width: 100%;
  border: none;
  padding: 10px;
  outline: none;
  background: transparent;
}

.mobile-form form button {
  background: none;
  border: none;
}

.mobile-form form button i {
  font-size: 22px;
  color: #777;
}

@media (max-width: 992px) {
  .menu-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .dropdown-content {
    display: none;
  }

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

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

.header-wrapper .languages a {
  background: #fff;
  border: 1px solid #e2e2e2;
  border-radius: 8px;
  padding: 5px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

/* MOBILE HEADER END */

/* HEADER END*/

/* HERO SECTION  START */

.slider {
  padding: 0;
}

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

  .desktop-slider {
    display: block;
  }
}

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

  .desktop-slider {
    display: none;
  }
}

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

.heroSlider {
  position: relative;
}

.heroSlider .swiper-button-next,
.heroSlider .swiper-button-prev {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.4s ease;
}

.heroSlider .swiper-button-prev {
  transform: translateX(-50px);
}

.heroSlider:hover .swiper-button-next,
.heroSlider:hover .swiper-button-prev {
  opacity: 1;
  transform: translateX(0);
}

.heroSlider .swiper-pagination-bullet {
  width: var(
    --swiper-pagination-bullet-width,
    var(--swiper-pagination-bullet-size, 15px)
  );
  height: var(
    --swiper-pagination-bullet-height,
    var(--swiper-pagination-bullet-size, 15px)
  );
  display: inline-block;
}

/* HERO SECTION  END */

/* ROUTER SECTION START */

.router {
  padding: 0 0 40px 0;
}

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

.router-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  gap: 20px;
  margin-bottom: 50px;
  color: var(--primary-800);
  padding: 40px 10px;
  border-radius: var(--border-radius);

  /* Hover için hızlı transition (scale/color/bg) */
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

/* Scroll animasyonu */
.router-box.animate-in {
  --scroll-rotate: -90deg;
  --scroll-translate: 30px;
  --hover-scale: 1;

  /* scroll için yavaş ve akıcı transform/opacity */
  transform: rotateY(var(--scroll-rotate)) translateY(var(--scroll-translate))
    scale(var(--hover-scale));
  opacity: 0;
  transition: transform 1.3s ease-out, opacity 1.3s ease-out;
  transform-style: preserve-3d;
}

/* Scroll tetiklendiğinde */
.router-box.animate-in.active {
  --scroll-rotate: 0deg;
  --scroll-translate: 0px;
  transform: rotateY(var(--scroll-rotate)) translateY(var(--scroll-translate))
    scale(var(--hover-scale));
  opacity: 1;
}

/* Hover geldiğinde sadece scale artıyor, scroll transform’u bozulmaz, hızlı */
.router-box.animate-in.active:hover {
  --hover-scale: 1.1;
  transform: rotateY(var(--scroll-rotate)) translateY(var(--scroll-translate))
    scale(var(--hover-scale));
  background-color: var(--primary-100);
  color: var(--primary-800);
  /* Hover scale hızlı geçiş için override */
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

@media (max-width: 992px) {
  .router-box {
    background-color: var(--primary-100);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    margin-bottom: 30px;
  }

  .router-box:hover {
    color: var(--primary-800);
    transform: scale(1);
  }
}

.router-box img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  padding: 10px;
  border: 2px solid gainsboro;
  transition: all 0.3s ease;
}

.router-box:hover img {
  border: 2px solid var(--primary-400);
}

@media (max-width: 992px) {
  .router-box img {
    border: 2px solid var(--primary-400);
  }
}

.router-box .title {
  font-size: 20px;
  font-weight: bold;
}

/* ROUTER SECTION END */

/* INFO SECTION START */

.info .section-title {
  font-size: 32px;
  text-align: center;
}

.info .content-wrapper {
  text-align: center;
}

.grid-container {
  display: grid;
  gap: 16px;
  align-items: stretch;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
  padding: 12px;
}

@media (min-width: 768px) {
  .grid-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 992px) {
  .grid-container {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1200px) {
  .grid-container {
    grid-template-columns: repeat(6, 1fr);
  }
}

.info-box {
  display: block;
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  color: var(--white-text);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.info-box:hover {
  color: var(--white-text);
}

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

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

.info-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgb(28 151 210));
  z-index: 2;
}

.info-box .info-box-content {
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 3;
  width: 100%;
}

.info-box .info-box-content .number {
  font-size: 40px;
  font-weight: 600;
  transform: translateY(-50px);
}

@media (max-width: 768px) {
  .info-box .info-box-content .number {
    transform: translateY(0px);
  }
}

@media (max-width: 425px) {
  .info-box .info-box-content .number {
    font-size: 24px;
  }
}

.info-box .info-box-content .title {
  font-size: 20px;
}

/* INFO SECTION END */

/* BOX GENERAL CSS START */

.box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  color: var(--primary-800);
  background-color: var(--primary-100);
  z-index: 1;
}

.box a::before,
.box a::after {
  pointer-events: none;
}

.box:hover {
  color: var(--primary-800);
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

@media (max-width: 992px) {
  .box:hover {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  }
}

.box-image {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.box-image::after {
  transition: all 0.5s ease;
}

.box:hover .box-image::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
}

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

.box-image img {
  width: 100%;
  transition: all 0.5s ease;
}

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

@media (max-width: 992px) {
  .box:hover .box-image img {
    transform: scale(1);
  }
}

.circle {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -5px;
  margin-left: -22px;
  text-align: center;
  z-index: 3;
}

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

/* Ortak stil */
.circle span,
.circle::after,
.circle::before {
  content: "";
  display: inline-block;
  margin-right: 7px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #fff;
  vertical-align: middle;
  opacity: 0;
  transform: translateX(-15px);
  /* baÅŸlangÄ±Ã§ta solda */
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.circle::after {
  margin-right: 0;
}

/* --- Hover olduÄŸunda sÄ±rayla gelsin --- */
.box:hover .circle::before {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0s;
  /* Ã¶nce bu gelsin */
}

.box:hover .circle span {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.1s;
  /* ikinci */
}

.box:hover .circle::after {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.2s;
  /* Ã¼Ã§Ã¼ncÃ¼ */
}

/* --- Hoverdan Ã§Ä±kÄ±nca saÄŸa doÄŸru gitsin --- */
.box:not(:hover) .circle::before {
  opacity: 0;
  transform: translateX(15px);
  transition-delay: 0.2s;
  /* en son gitsin */
}

.box:not(:hover) .circle span {
  opacity: 0;
  transform: translateX(15px);
  transition-delay: 0.1s;
}

.box:not(:hover) .circle::after {
  opacity: 0;
  transform: translateX(15px);
  transition-delay: 0s;
  /* Ã¶nce bu gitsin */
}

.box-bottom {
  padding: 25px;
  color: var(--black-text);
  min-height: 96px;
}

.box-bottom:hover {
  color: var(--black-text);
}

.box-title {
  font-size: 16px;
}

.box:hover .box-title {
  color: var(--primary-300);
}

@media (max-width: 992px) {
  .box:hover .box-title {
    color: var(--black-text);
  }
}

.box-desc {
  margin: 0 0 30px 0;
  font-size: 15px;
}

.box-btn {
  text-transform: uppercase;
  font-weight: 600;
}

.box:hover .box-btn {
  color: var(--primary-300);
}

@media (max-width: 992px) {
  .box .box-btn {
    color: var(--primary-300);
  }
}

.box-btn i {
  margin-left: 5px;
  transition: all 0.3s ease;
}

.box:hover .box-btn i {
  transform: translateX(10px);
}

@media (max-width: 992px) {
  .box:hover .box-btn i {
    transform: translateX(0);
  }
}

.date {
  text-align: left;
  padding: 0px 0px 30px 0px;
  width: 100%;
  font-size: 14px;
}

/* BOX GENERAL CSS END */

/* NEWS SECTION START */

.newsSlider {
  padding-inline: 15px !important;
  padding-bottom: 90px !important;
}

/* NEWS SECTION END */

/* EVENTS SECTION START */

.eventsSlider {
  padding-inline: 15px !important;
  padding-bottom: 70px !important;
}

.events .section-title {
  width: 75%;
}

@media (max-width: 992px) {
  .events .section-title {
    width: 100%;
  }
}

/* EVENTS SECTION END */

/* YOUTUBE SECTION START */

.youtube {
  background-color: #2d9cda0d;
  position: relative;
}

.youtube .title-wrapper .section-title img {
  width: 60px;
}

.youtube .content {
  padding: 0 0 50px 0;
}

.youtube .left-image {
  position: relative;
}

.youtube .left-image img {
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

@media (max-width: 992px) {
  .youtube .left-image img {
    margin-bottom: 30px;
  }
}

.youtube .left-image .play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 8px solid #d0ffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Pulse 1 */
.youtube .left-image .play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: rgba(208, 255, 255, 0.4);
  transform: translate(-50%, -50%);
  z-index: -1;
  animation: pulse1 3s infinite;
}

/* Pulse 2 */
.youtube .left-image .play::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: rgba(208, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  z-index: -1;
  animation: pulse2 1.5s infinite;
  animation-delay: 0.7s;
}

@media (max-width: 768px) {
  .youtube .left-image .play {
    width: 80px;
    height: 80px;
    border: 3px solid #d0ffff;
  }

  .youtube .left-image .play::before,
  .youtube .left-image .play::after {
    width: 80px;
    height: 80px;
  }
}

@keyframes pulse1 {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
  }

  70% {
    transform: translate(-50%, -50%) scale(1.6);
    opacity: 0;
  }

  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
  }
}

@keyframes pulse2 {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
  }

  70% {
    transform: translate(-50%, -50%) scale(1.6);
    opacity: 0;
  }

  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
  }
}

.youtube .left-image .play i {
  color: #d0ffff;
  font-size: 50px;
}

@media (max-width: 768px) {
  .youtube .left-image .play i {
    font-size: 25px;
  }
}

.absolute-img {
  width: 100%;
  position: absolute;
  bottom: 0;
}

.youtubeSlider {
  padding: 60px 0 !important;
}

@media (max-width: 992px) {
  .youtubeSlider {
    padding: 60px 80px !important;
  }
}

.reels-box {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--border-radius);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.reels-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(28, 152, 210, 0.879));
  width: 100%;
  height: 100%;
  z-index: 2;
}

@media (max-width: 992px) {
  .reels-box img {
    width: 100%;
  }
}

.youtube-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 80px;
  /* play-icon ile uyumlu */
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background-color: var(--primary-300);
}

/* Pulse 1 */
.youtube-logo::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  /* logo boyutu ile eşleşmeli */
  height: 50px;
  border-radius: 10px;
  background-color: var(--primary-300);
  /* kırmızı dalga */
  transform: translate(-50%, -50%);
  z-index: -1;
  animation: pulse1 2s infinite;
}

/* Pulse 2 */
.youtube-logo::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 50px;
  border-radius: 10px;
  background-color: var(--primary-300);
  transform: translate(-50%, -50%);
  z-index: -1;
  animation: pulse2 2s infinite;
  animation-delay: 0.7s;
}

.play-icon {
  background-color: var(--primary-300);
  width: 80px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}

.play-icon i {
  font-size: 24px;
  color: var(--primary-100);
}

.reels-title {
  position: absolute;
  bottom: 30px;
  left: 10px;
  right: 10px;
  text-align: center;
  z-index: 3;
  color: var(--white-text);
}

/* YOUTUBE SECTION END */

/* GALLERY SECTION START */

.gallery .section-title {
  text-align: center;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--primary-700);
  font-weight: 600;
}

.gallerySlider {
  padding: 30px 0px 60px 0 !important;
}

.gallery-box {
  display: block;
  border-radius: var(--border-radius);
  overflow: hidden;
}

@media (min-width: 992px) {
  .desktop-gallery {
    display: block;
  }

  .mobile-gallery {
    display: none;
  }
}

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

  .mobile-gallery {
    display: block;
  }
}

/* GALLERY SECTION END */

/* GUIDE SECTION START */

.guideSlider {
  padding: 0 0 70px 0 !important;
}

.guide-box {
  display: block;
  overflow: hidden;
  border-radius: var(--border-radius);
  position: relative;
  color: var(--white-text);
  font-weight: bold;
}

.guide-box:hover {
  color: var(--white-text);
}

.guide-box::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  pointer-events: none;
}

.guide-box:hover::after {
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}

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

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

.guide-box .guide-content {
  position: absolute;
  left: 50%;
  top: 80%;
  transform: translate(-50%, -50%);
  font-size: 18px;
  text-align: center;
  width: 85%;
  z-index: 2;
}

/* GUIDE SECTION END */

/* FOOTER START */

footer {
  padding: 60px 0;
  background: linear-gradient(
    48deg,
    rgba(28, 151, 210, 1) 0%,
    rgba(42, 59, 142, 1) 51%
  );
}

@media (max-width: 992px) {
  footer {
    padding: 60px 0 100px 0;
  }
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.footer-left .desc {
  color: var(--white-text);
}

.contact-link {
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: var(--white-text);
  font-weight: 600;
}

.contact-link:hover {
  opacity: 0.8;
  color: var(--white-text);
}

.contact-link span {
  font-weight: 400;
}

.footer-right {
  display: flex;
  flex-direction: column;
}

.footer-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 30px 0;
}

@media (max-width: 768px) {
  .footer-wrapper {
    flex-direction: column;
    gap: 15px;
  }
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-title {
  font-size: 20px;
  color: var(--white-text);
}

.footer-list {
  border-left: 1px solid #ffffff4f;
  padding-left: 20px !important;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (max-width: 768px) {
  .footer-list {
    border-left: none;
    border-top: 1px solid #ffffff4f;
    padding-left: 0px !important;
    padding-top: 20px !important;
  }
}

.footer-list li a {
  color: var(--white-text);
}

.footer-list li a:hover {
  color: var(--white-text);
  opacity: 0.8;
}

.footer-contact {
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  .footer-contact {
    flex-direction: column;
    align-items: flex-start;
    gap: 60px;
  }
}

.footer-contact-left {
  padding-top: 20px;
  border-top: 1px solid #ffffff4f;
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 992px) {
  .footer-contact-left {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 450px) {
  .footer-contact-left {
    width: 100%;
  }
}

.footer-contact-left .location {
  background-color: var(--primary-300);
  padding: 10px 15px;
  text-transform: uppercase;
  color: var(--white-text);
  border-radius: 5px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  display: flex;
  align-items: center;
  gap: 5px;
}

@media (max-width: 1400px) {
  .footer-contact-left .location {
    font-size: 14px;
  }
}

@media (max-width: 1200px) {
  .footer-contact-left .location {
    padding: 8px;
  }
}

@media (max-width: 992px) {
  .footer-contact-left .location {
    width: 100%;
    text-align: center;
    padding: 10px;
  }
}

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

.social-links {
  display: flex;
  align-items: center;
  gap: 15px;
}

.social-links a {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--border-radius);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.social-links a i {
  font-size: 27px;
}

.social-links a:nth-child(1) {
  background-color: #e1306c;
  color: var(--primary-100);
}

.social-links a:nth-child(2) {
  background-color: var(--primary-400);
  color: var(--primary-100);
}

.social-links a:nth-child(3) {
  background-color: var(--primary-300);
  color: var(--primary-100);
}

.footer-social .footer-phone {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--border-radius);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  background-color: var(--primary-400);
  color: var(--primary-100);
}

.footer-social .footer-phone i {
  font-size: 27px;
}

.year-logo {
  margin: 60px 0 0 140px;
  width: 250px;
}

@media (max-width: 1200px) {
  .year-logo {
    margin-left: 30px;
  }
}

@media (max-width: 768px) {
  .year-logo {
    margin-left: 0px;
  }
}

.copyright {
  padding-top: 30px;
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  gap: 10px;
  color: var(--white-text);
}

.copyright span {
  font-size: 14px;
}

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

/* FOOTER END */

/* FIXED LINKS START */

.fixed-links {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
}

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

.fixed-links a {
  display: flex;
  align-items: center;
  gap: 5px;
  position: relative;
  padding: 5px;
  color: var(--primary-100);
  border-radius: 15px;
}

.fixed-links a:hover {
  color: var(--primary-100);
}

.fixed-links a i {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}

.fixed-links a:hover > span {
  visibility: visible;
  right: 55px;
  opacity: 1;
}

.fixed-links a span {
  right: 60px;
  font-size: 14px;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 170px;
  height: 100%;
  visibility: hidden;
  transition-duration: 0.5s;
  z-index: 1;
  opacity: 0;
  color: var(--primary-100);
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-radius: 15px;
}

.fixed-links .appointment,
.fixed-links .appointment span {
  background-color: var(--primary-400);
}

.fixed-links .patient,
.fixed-links .patient span {
  background-color: var(--primary-400);
}

.fixed-links .check-list,
.fixed-links .check-list span {
  background-color: var(--primary-600);
}

.fixed-links .fixed-phone,
.fixed-links .fixed-phone span {
  background-color: var(--primary-500);
}

.fixed-links .messenger,
.fixed-links .messenger span {
  background-color: #1877f2;
}

.fixed-links .fixed-whatsapp,
.fixed-links .fixed-whatsapp span {
  background-color: var(--primary-500);
}

/* FIXED LINKS END */

/* BREADCRUMB START */

.breadcrumb-container {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  text-align: center;
}

.breadcrumb-container h1 {
  margin-bottom: 10px;
}

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

@media (max-width:450px) {
  .breadcrumb-container .links {
    gap: 15px;
  }
}

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

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

@media (max-width:450px) {
.breadcrumb-container .links li:not(:last-child)::after {
    right: -12px;
  }
}

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

/* BREADCRUMB END */

/* CONTACT PAGE START */

.contact-page .contact-left {
  border-right: 1px solid #81818133;
  padding-right: 30px;
  height: 100%;
}

@media (max-width: 992px) {
  .contact-page .contact-left {
    border-right: none;
    padding-right: 0;
    margin-bottom: 60px;
  }
}

.contact-page .form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 15px;
}

.contact-page .form-group input,
.contact-page .form-group textarea {
  padding: 5px;
  border: 1px solid #81818133;
}

.contact-left .section-title,
.contact-right .section-title {
  position: relative;
  font-size: 22px;
  margin-bottom: 20px;
}

.contact-left .section-title::after,
.contact-right .section-title::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 75%;
  right: 0;
  height: 1px;
  background-color: #81818133;
}

@media (max-width: 992px) {
  .contact-left .section-title::after,
  .contact-right .section-title::after {
    width: 0px;
  }
}

.contact-left form button {
  padding: 10px 30px;
  border-radius: var(--border-radius);
  border: 1px solid var(--primary-300);
  background-color: var(--primary-300);
  color: var(--white-text);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.contact-left form button:hover {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

@media (max-width: 992px) {
  .contact-left form button {
    width: 100%;
  }
}

.btn-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

@media (max-width: 992px) {
  .btn-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
}

.contact-right .contact-right-wrapper {
  border-bottom: 1px solid #81818133;
}

.contact-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 50px;
  color: var(--black-text);
}

.contact-box:hover {
  color: var(--black-text) !important;
}

.contact-box .contact-box-right {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-box .contact-box-right .contact-box-wrapper {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.contact-box .contact-box-right .contact-box-wrapper .title {
  font-weight: 600;
}

.contact-right-desc {
  padding-top: 50px;
}

.contact-right-desc .title {
  font-weight: 600;
}

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

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

/* CONTACT PAGE END */

/* ABOUT PAGE START */

.about-page {
  background-color: var(--gray-background);
  position: relative;
  z-index: -2;
}

.about-page .grid-container {
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.about-page .grid-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

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

.about-page .grid-row .grid-content .content-wrapper h2,
.about-page .grid-row .grid-content .content-wrapper h3 {
  color: var(--primary-300);
}

/* Çift satırları sağdan sola çeviriyoruz */
.about-page .grid-row:nth-child(even) {
  direction: rtl;
}

/* Yazı yönünü normale çekiyoruz */
.about-page .grid-row:nth-child(even) .grid-content {
  direction: ltr;
}

/* Tek satır (odd) -> content sağda */
.grid-row:nth-child(odd) .grid-content {
  padding-right: 175px;
  padding-left: 0;
  text-align: left;
}

@media (max-width: 992px) {
  .about-page .grid-row:nth-child(odd) .grid-content {
    padding-right: 0;
    padding-left: 0;
  }
}

/* Çift satır (even) -> content solda */
.about-page .grid-row:nth-child(even) .grid-content {
  padding-left: 175px;
  padding-right: 0;
  text-align: right;
}

@media (max-width: 992px) {
  .about-page .grid-row:nth-child(even) .grid-content {
    padding-left: 0;
    padding-right: 0;
  }
}

.grid-image {
  display: flex;
  justify-content: flex-end;
  position: relative;
}

.grid-image .grid-absolute {
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  top: 0;
  z-index: -1;
}

.grid-image img {
  object-fit: contain;
}

/* ABOUT PAGE END */

/* PARTNER PAGE START */

.partner-page {
  background-color: var(--gray-background);
}

.partner-page .partners {
  margin-bottom: 30px;
}

.partner-page .partners .title {
  margin-bottom: 15px;
  font-weight: bold;
  color: var(--primary-300);
  position: relative;
  padding-right: 30px;
}

.partner-page .partners .title::after {
  content: "";
  position: absolute;
  width: 55%;
  left: 0;
  bottom: -5px;
  height: 1px;
  background-color: #81818133;
}

.partner-page .partners ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* PARTNER PAGE END */

/* FAQ SECTION START */

.faq-wrapper {
  margin-bottom: 60px;
}

.faq-wrapper .faq-title {
  font-size: 24px;
  color: var(--primary-300);
  margin-bottom: 30px;
}

.faq-list {
  margin-bottom: 60px;
}

.faq-item {
  border-bottom: 1px solid #f0f0f0;
  padding: 10px;
  color: #666;
  transition: all 0.3s ease;
}

.faq-item:hover {
  background-color: #f0f0f0;
}

.faq-number {
  font-size: 18px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
}

.faq-number span {
  font-size: 18px;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 12px 0 12px 30px;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

/* + simgesi oluşturmak için */
.faq-question::before,
.faq-question::after {
  content: "";
  position: absolute;
  background-color: #666;
  transition: all 0.3s ease;
}

/* Yatay çizgi */
.faq-question::before {
  top: 50%;
  left: 0;
  width: 16px;
  height: 2px;
  transform: translateY(-50%);
}

/* Dikey çizgi */
.faq-question::after {
  top: 50%;
  left: 7px;
  width: 2px;
  height: 16px;
  transform: translateY(-50%);
}

/* Açıldığında dikey çizgiyi gizle (yani + → -) */
.faq-question.active::after {
  height: 0;
  opacity: 0;
}

.faq-answer {
  height: 0;
  overflow-y: scroll;
  padding-left: 30px;
  opacity: 0;
  color: #666;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE/Edge eski sürüm */
}

.faq-answer::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari */
}

.faq-question i {
  font-size: 15px;
}

/* CUSTOM FAQ START */

.guide-page .faq-item {
  background-color: transparent;
  color: var(--white-text);
  border-bottom: none;
  padding: 0;
}

.guide-page .faq-question::before,
.guide-page .faq-question::after {
  display: none;
}

.guide-page .faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 20px;
  background-color: var(--primary-400);
  border-radius: var(--border-radius);
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.guide-page .faq-question:hover {
  background-color: var(--primary-300);
}

.faq-question .icon {
  width: 28px;
  height: 28px;
  border: 3px solid var(--primary-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-question .icon i {
  font-size: 15px;
}

.guide-page .faq-answer {
  padding-left: 0;
  padding: 0 20px;
}

.guide-page .content-wrapper ul {
  padding-left: 15px !important;
  margin-bottom: 20px !important;
}

/* ikon dönüş animasyonları */
@keyframes rotateOpen {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(180deg);
  }
}

@keyframes rotateClose {
  from {
    transform: rotate(180deg);
  }

  to {
    transform: rotate(0deg);
  }
}

/* CUSTOM FAQ END */

/* FAQ SECTION END */

/* FRIENDLY HOSPITAL PAGE START */
.friendly-hospital-page .wrapper {
  margin-bottom: 60px;
}

.friendly-hospital-page .wrapper .section-title {
  margin-bottom: 30px;
  color: var(--primary-300);
  font-weight: normal;
  font-size: 40px;
  text-align: left;
}

.column-reverse:not(:last-child) {
  margin-bottom: 60px;
}

.column-reverse:nth-child(even) {
  flex-direction: row;
  display: flex;
}

.column-reverse:nth-child(odd) {
  flex-direction: row-reverse;
  display: flex;
}

.column-reverse img {
  border-radius: var(--border-radius);
}

.column-reverse .title {
  font-size: 26px;
  color: var(--primary-300);
}

@media (max-width: 992px) {
  .purpose-box,
  .responsibility-box {
    margin-bottom: 30px;
  }

  .column-reverse .title {
    font-size: 20px;
  }
}

.purpose-box .title,
.responsibility-box .title {
  font-size: 15px;
  color: var(--primary-300);
  margin-bottom: 15px;
  position: relative;
}

.purpose-box .title::after,
.responsibility-box .title::after {
  content: "";
  position: absolute;
  left: 0;
  width: 75%;
  height: 2px;
  border-radius: 30px;
  background-color: var(--border-color);
  bottom: -5px;
}

.last-content .row .col-lg-12 .title {
  font-size: 40px;
  color: var(--primary-300);
}

.last-content .row .col-lg-6 .title {
  font-size: 15px;
  color: var(--primary-300);
  position: relative;
}

.last-content .row .col-lg-6 .title::after {
  content: "";
  position: absolute;
  left: 0;
  width: 75%;
  height: 2px;
  border-radius: 30px;
  background-color: var(--border-color);
  bottom: -5px;
}

.last-content .row .col-lg-6 .content-wrapper a {
  color: var(--primary-300);
}

/* FRIENDLY HOSPITAL PAGE END */

/* COMPANY INFORMATION PAGE START */

@media (max-width: 992px) {
  .company-information-box {
    margin-bottom: 30px;
  }
}

.company-information-box .title {
  font-size: 15px;
  color: var(--primary-300);
  margin-bottom: 30px;
  position: relative;
}

.company-information-box .title::after {
  content: "";
  position: absolute;
  left: 0;
  width: 75%;
  height: 2px;
  border-radius: 30px;
  background-color: var(--border-color);
  bottom: -5px;
}

/* COMPANY INFORMATION PAGE END */

/* TAB SECTION START */

.tab {
  background: #2d9cda0d;
  position: relative;
  padding: 80px 0 120px 0;
}

.tab .tab-button {
  padding: 15px 0;
  width: 25%;
  border: none;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
}

@media (max-width: 992px) {
  .tab .tab-button {
    width: 100%;
  }
}

.tab .tab-button i {
  margin-right: 3px;
}

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

.tab .tab-button.active {
  background-color: var(--primary-400);
  color: var(--white-text);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  border-radius: var(--border-radius);
}

.tab .tab-button.not-active:hover {
  background-color: #f0f0f0;
}

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

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

  .tab-select {
    display: block;
    width: 100%;
    margin-bottom: 30px;
    padding: 10px;
    border: 1px solid gainsboro;
  }
}

.tabs-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 60px;
}

@media (max-width: 992px) {
  .tabs-wrapper {
    flex-direction: column;
  }
}

.tab .tab-content {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.tab .tab-content .tab-content-right {
  padding-left: 30px;
}

@media (max-width: 992px) {
  .tab .tab-content .tab-content-right {
    padding-left: 0px;
  }
}

.tab .tab-content-right .content-wrapper {
  padding: 0;
}

@media (max-width: 992px) {
  .tab .tab-content .tab-content-left {
    margin-bottom: 30px;
  }
}

.tab .tab-content .tab-content-left img {
  border-radius: var(--border-radius);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

/* TAB SECTION END */

/* QUALITY MANAGEMENT PAGE START */

.quality-desc .content-wrapper ul,
.quality-box-desc .content-wrapper ul {
  padding-left: 20px !important;
}

.quality-desc .content-wrapper h2 {
  color: var(--primary-300);
}

.quality-box .quality-box-title {
  color: var(--primary-300);
  position: relative;
  border-bottom: 2px solid var(--border-color);
}

.quality-box .quality-box-desc .content-wrapper a {
  color: var(--primary-300);
  font-weight: bold;
}

.quality-box {
  margin-bottom: 30px;
}

/* QUALITY MANAGEMENT PAGE END */

/* MEDICAL DEPARTMENTS PAGE START */

.departments-grid {
  display: grid;
  gap: 16px;
  align-items: stretch;
  grid-template-columns: repeat(1, 1fr);
  width: 100%;
  padding: 12px;
}

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

@media (min-width: 992px) {
  .departments-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .departments-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.departments-item-group {
  display: flex;
  flex-direction: column;
  border: 2px solid var(--primary-400);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  margin-bottom: 15px;
}

.departments-item-group .letter {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 10px;
  background-color: var(--primary-400);
  text-align: center;
  color: white;
}

.departments-item {
  padding: 5px 20px;
}

.departments-item a {
  display: block;
  margin-bottom: 8px;
  color: var(--black-text);
  text-align: left;
  transition: all 0s ease;
  position: relative;
}

.departments-item:hover a {
  font-weight: 600;
}

.departments-item a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50%;
  height: 1px;
  background-color: var(--border-color);
}

.departments-item a:hover {
  color: var(--primary-300);
}

/* MEDICAL DEPARTMENTS PAGE END */

/* DOCTORS PAGE START */

@media (max-width: 992px) {
  .doctors {
    padding: 60px 15px;
  }
}

.doctor-menu {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 20px;
  background-color: var(--primary-400);
  border-radius: var(--border-radius);
  margin-bottom: 15px;
  font-size: 20px;
  transition: all 0.3s ease;
  cursor: pointer;
  color: var(--white-text);
}

.doctor-menu:hover {
  background-color: var(--primary-300);
}

.doctor-menu .icon {
  width: 26px;
  height: 26px;
  border: 3px solid var(--primary-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.doctor-menu .icon i {
  font-size: 15px;
  color: var(--white-text);
}

.doctor-wrapper {
  display: grid;
  gap: 15px;
  align-items: stretch;
  grid-template-columns: repeat(1, 1fr);
  width: 100%;
}

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

@media (min-width: 992px) {
  .doctor-wrapper {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1200px) {
  .doctor-wrapper {
    grid-template-columns: repeat(5, 1fr);
  }
}

.doctor-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  text-align: center;
  color: var(--black-text);
  font-weight: 600;
  transition: all 0.3s ease;
  overflow: hidden;
  border-radius: var(--border-radius);
  margin-bottom: 0px !important;
  transition: all 0.3s ease !important;
}

.doctor-item:hover {
  color: var(--primary-300);
  transform: scale(1.1);
  background-color: var(--primary-100);
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

@media (max-width: 992px) {
  .doctor-item:hover {
    transform: scale(1);
  }

  .doctor-item {
    background-color: var(--primary-100);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  }
  .doctor-item:hover {
    color: var(--black-text);
  }
}

.doctor-item-img {
  position: relative;
  display: inline-block;
  transition: all 0.3s ease;
}

.doctor-item-img img {
  display: block;
  width: 100%;
  transition: transform 0.3s ease;
  border-radius: var(--border-radius);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

/* DOCTORS PAGE END */

/* DEPARTMENTS DETAIL PAGE START */

.departments-detail .content-wrapper {
  background-color: var(--primary-100);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  padding: 20px;
  border-radius: var(--border-radius);
  margin-bottom: 30px;
}

.departments-detail .wrapper {
  background-color: var(--primary-100);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  padding: 20px;
  border-radius: var(--border-radius);
  margin-bottom: 30px;
}

.departments-detail .section-title {
  margin-bottom: 15px;
}

.departments-detail .doctor-wrapper {
  padding: 0px;
  display: grid !important;
}

.doctor-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
  color: var(--black-text);
  font-weight: 600;
}

.doctor-box:hover {
  color: var(--primary-300);
}

.doctor-box-img {
  position: relative;
  display: inline-block;
}

.doctor-box-img img {
  display: block;
  width: 100%;
  transition: transform 0.3s ease;
  border-radius: var(--border-radius);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

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

.doctor-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  text-align: center;
  color: var(--black-text);
  font-weight: 600;
  transition: all 0.3s ease;
  overflow: hidden;
  border-radius: var(--border-radius);
  margin-bottom: 0px !important;
  transition: all 0.3s ease !important;
}

.doctor-box:hover {
  color: var(--primary-300);
  transform: scale(1.03);
  background-color: var(--primary-100);
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

@media (max-width: 992px) {
  .doctor-box:hover {
    transform: scale(1);
  }

  .doctor-box {
    color: var(--black-text);
    background-color: var(--primary-100);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  }

  .doctor-box:hover {
    color: var(--black-text);
  }
}

.doctor-box-img {
  position: relative;
  display: inline-block;
  transition: all 0.3s ease;
}

.doctor-box-img img {
  display: block;
  width: 100%;
  transition: transform 0.3s ease;
  border-radius: var(--border-radius);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

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

.guide-news {
  padding: 0;
}

/* DEPARTMENTS DETAIL PAGE END */

/* NEWS PAGE START */

.news-page .box,
.events-page .box,
.health-guide-page .box {
  margin-bottom: 30px;
}

.box-router {
  width: 95%;
  margin: 0 auto;
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  text-align: center;
  background-color: var(--primary-300);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5px;
  color: var(--white-text);
  border-radius: var(--border-radius);
  padding: 5px 0;
}

.box-router a {
  color: var(--white-text);
}

.box-router a:hover {
  color: var(--white-text);
  opacity: 0.8;
}

/* NEWS PAGE END */

/* FOOTER STICKY START */

.footer-sticky {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: white;
  padding: 10px 0;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  display: none;
  justify-content: space-around;
  z-index: 9;
}

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

.footer-sticky-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: black;
  gap: 5px;
}

@media (max-width: 450px) {
  .footer-sticky-item {
    font-size: 14px;
  }
}

.footer-sticky-item img {
  width: 40px;
  height: 30px;
}

/* FOOTER STICKY END */

/* DOCTOR DETAIL PAGE START */

.doctor-profile-info .section-title {
  margin-bottom: 30px;
}

@media (max-width: 992px) {
  .doctor-img {
    margin-bottom: 30px;
  }

  .doctor-img img {
    width: 100%;
  }
}

.doctor-img img {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border-radius: var(--border-radius);
}

.doctor-img .online-btn {
  width: 100%;
  background-color: var(--primary-100);
  color: var(--primary-300);
  font-weight: 600;
  display: inline-block;
  text-align: center;
  padding: 15px;
  border-radius: var(--border-radius);
  margin-top: -30px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.doctor-profile-info .profile-col {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 10px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 450px) {
  .doctor-profile-info .profile-col .profile-col-left,
  .doctor-profile-info .profile-col .profile-col-right {
    font-size: 14px;
  }
}

.doctor-profile-info .profile-col .profile-col-right {
  width: 60%;
}

@media (max-width: 992px) {
  .doctor-profile-info .profile-col .profile-col-right {
    width: auto;
  }
}

.doctor-info-col {
  margin-bottom: 30px;
}

.doctor-info-col .title {
  color: var(--primary-300);
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 15px;
}

.doctor-info-col .info {
  margin-bottom: 15px;
}

.doctor-info-form .title {
  color: var(--primary-300);
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 15px;
}

.doctor-info-form .form-group {
  position: relative;
  font-family: inherit;
}

.doctor-info-form .form-group input,
.doctor-info-form .form-group textarea {
  width: 100%;
  padding: 12px 10px;
  font-size: 16px;
  border: 2px solid #81818133;
  border-radius: var(--border-radius);
  outline: none;
  background: none;
  margin-bottom: 15px;
}

.doctor-info-form .form-group label {
  position: absolute;
  top: 12px;
  left: 10px;
  color: #888;
  background: #f9f9f9;
  padding: 0 4px;
  pointer-events: none;
  transition: 0.2s ease all;
}

/* Odaklanınca veya input doluysa label yukarı kayar */
.doctor-info-form .form-group input:focus + label,
.doctor-info-form .form-group input:not(:placeholder-shown) + label {
  top: -8px;
  left: 8px;
  font-size: 12px;
  color: var(--primary-300);
}

.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
  top: -8px;
  left: 8px;
  font-size: 12px;
  color: var(--primary-300);
}

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

.checkbox-group label {
  cursor: pointer;
}

.custom-checkbox {
  appearance: none;
  /* varsayılan checkbox stilini kaldırır */
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #ccc;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
  bottom: -5px;
}

/* Seçildiğinde arka plan kırmızı, tik beyaz */
.custom-checkbox:checked {
  background-color: var(--primary-300);
  border-color: var(--primary-300);
}

/* Tik işareti */
.custom-checkbox:checked::after {
  content: "✓";
  position: absolute;
  color: white;
  font-size: 14px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.doctor-info-form form button {
  padding: 15px 60px;
  text-transform: uppercase;
  font-weight: 600;
  background-color: var(--primary-300);
  border: 1px solid var(--primary-300);
  color: var(--white-text);
  border-radius: var(--border-radius);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.doctor-info-form .recaptha {
  margin-bottom: 15px;
}

.doctor-info-form form button:hover {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.doctor-profile-news .title {
  color: var(--primary-300);
  border-bottom: 1px solid var(--border-color);
}

.doctorDetailSlider {
  padding: 20px 0 60px 0 !important;
}

.before-after .section-title {
  color: var(--primary-400);
  margin-bottom: 30px;
  border-bottom: 1px solid var(--primary-400);
  padding-bottom: 5px;
}

.beforeAfterSlider {
  padding-bottom: 50px !important;
}

.before-after-box {
  margin-bottom: 30px;
}

.before-after-box {
  position: relative;
}

.before-after-box .swiper-button-next:after,
.before-after-box .swiper-button-prev:after {
  font-size: 27px !important;
  color: var(--primary-900);
}

.before-after-box .swiper-button-next,
.before-after-box .swiper-button-prev {
  opacity: 1;
  transform: translateX(0);
  transition: all 0.4s ease;
}

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

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

/* DOCTOR DETAIL PAGE END */

/* SERVICES DETAIL PAGE START */

.services-detail-slider {
  padding: 0;
}

.servicesSlider .swiper-button-prev,
.swiper-rtl .swiper-button-next {
  background: var(--primary-800);
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  left: var(--swiper-navigation-sides-offset, 20px);
}

.servicesSlider .swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after,
.servicesSlider .swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  color: var(--primary-100);
  font-size: 20px !important;
}

.servicesSlider .swiper-button-next,
.swiper-rtl .swiper-button-prev {
  background: var(--primary-800);
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  right: var(--swiper-navigation-sides-offset, 60px);
}

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

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

  .mobile-services-slider {
    display: block;
  }
}

.services-slide {
  pointer-events: none;
}

.services-slide img {
  width: 100%;
}

.cta-banner a img {
  width: 100%;
}

.services-about-text {
  background-color: #f7f1e3;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.services-about-text .section-title {
  color: var(--black-text);
  border-bottom: 1px solid var(--primary-900);
}

.section-nav {
  padding: 10px 0;
  text-align: center;
  position: sticky;
  top: 87px;
  z-index: 3;
  background-color: var(--primary-400);
  box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.35);
}

@media (max-width: 992px) {
  .section-nav {
    top: 67px;
  }
}

.section-nav .sticky-grid .section-link {
  padding: 5px 15px;
  color: var(--white-text);
  text-transform: uppercase;
  position: relative;
}

.section-nav .sticky-grid .section-link:not(:last-child)::after {
  content: "|";
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
}

.section-nav .sticky-grid .section-link:hover {
  opacity: 0.7;
}

.form-select {
  background-color: var(--primary-400) !important;
  color: var(--white-text) !important;
}

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

@media (max-width: 992px) {
  .desktop-grid {
    display: none;
  }
  .mobile-select {
    display: block;
  }
}

.services-detail-contact {
  padding: 30px 0 60px 0;
}

.services-detail-contact .title {
  background-color: #0c739e;
  font-size: 24px;
  text-align: center;
  padding: 30px;
  border-radius: var(--border-radius);
  color: var(--white-text);
  margin-bottom: 15px;
}

.services-detail-contact a {
  width: 100%;
  text-align: center;
  padding: 15px;
  display: inline-block;
  color: var(--white-text);
  border-radius: var(--border-radius);
}

.services-detail-contact a:hover {
  color: var(--white-text);
  opacity: 0.7;
}

@media (max-width: 992px) {
  .services-detail-contact a {
    margin-bottom: 15px;
  }
}

.services-detail-contact .whatsapp-btn {
  background-color: var(--whatsapp-btn);
}

.services-detail-contact .call-btn {
  background-color: var(--call-btn);
}

.services-detail-contact .messenger-btn {
  background-color: var(--messenger-btn);
}

.services-detail-video .section-title {
  color: var(--primary-300);
  margin-bottom: 30px;
  padding-bottom: 5px;
  border-bottom: 2px solid var(--primary-900);
}

.services-detail-video .section-title span {
  color: var(--primary-300);
  font-size: 32px;
}

@media (max-width: 768px) {
  .services-detail-video .section-title span {
    font-size: 24px;
  }
}

@media (max-width: 992px) {
  .services-detail-beginning-info .column-reverse img {
    margin-bottom: 30px;
  }
}

.videoBlogSlider {
  padding-bottom: 50px !important;
}

.packages .section-title {
  margin-bottom: 30px;
  text-align: center;
}

.packages .packages-img {
  width: 100%;
  margin-bottom: 30px;
  border-radius: var(--border-radius);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.cta-map {
  border-right: 2px solid var(--border-color);
  padding-right: 40px;
}

@media (max-width: 992px) {
  .cta-map {
    padding-right: 0;
    margin-bottom: 30px;
    border-right: none;
  }
}

.cta-right {
  padding-left: 10px;
}

@media (max-width: 992px) {
  .cta-right {
    padding-left: 0;
  }
}

.cta-right .cta-title {
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 5px;
  margin-bottom: 30px;
  font-size: 20px;
}

.services-detail-bottom-info .column-reverse:nth-child(even) {
  flex-direction: row;
  display: flex;
  align-items: flex-start;
}

.services-detail-bottom-info .column-reverse:nth-child(odd) {
  flex-direction: row-reverse;
  display: flex;
  align-items: flex-start;
}

.services-top-faq .faq-title span {
  color: var(--primary-400);
}

.services-bottom-faq .faq-title span {
  color: var(--primary-400);
}

.services-process-faq .faq-title span {
  color: var(--primary-700);
}

.services-top-faq .faq-title,
.services-bottom-faq .faq-title,
.services-process-faq .faq-title {
  font-size: 32px;
  margin-bottom: 30px;
}

.services-top-faq .faq-title span,
.services-bottom-faq .faq-title span,
.services-process-faq .faq-title span {
  font-size: 32px;
}

@media (max-width: 768px) {
  .services-top-faq .faq-title,
  .services-bottom-faq .faq-title,
  .services-process-faq .faq-title {
    font-size: 24px;
  }

  .services-top-faq .faq-title span,
  .services-bottom-faq .faq-title span,
  .services-process-faq .faq-title span {
    font-size: 24px;
  }
}

.services-top-faq .faq-item,
.services-bottom-faq .faq-item,
.services-process-faq .faq-item {
  color: var(--white-text);
  border-radius: var(--border-radius);
}

.services-top-faq .faq-answer,
.services-bottom-faq .faq-answer,
.services-process-faq .faq-answer {
  color: var(--white-text);
}

.services-top-faq .faq-question,
.services-bottom-faq .faq-question,
.services-process-faq .faq-question {
  padding: 5px 0 5px 30px;
}

.services-top-faq .faq-question::before,
.services-top-faq .faq-question::after,
.services-bottom-faq .faq-question::before,
.services-bottom-faq .faq-question::after,
.services-process-faq .faq-question::before,
.services-process-faq .faq-question::after {
  background-color: var(--primary-100);
}

.services-top-faq .faq-item {
  background-color: var(--primary-400);
  margin-bottom: 10px;
}

.services-bottom-faq .faq-item {
  background-color: var(--primary-400);
  margin-bottom: 10px;
}

.services-process-faq .faq-item {
  background-color: var(--primary-700);
  margin-bottom: 10px;
}

.services-process-faq .faq-answer {
  padding: 0 30px;
}

.services-process-faq .faq-answer .faq-content .faq-img {
  border-radius: var(--border-radius);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.doctors-standard .section-title {
  margin-bottom: 15px;
  padding-bottom: 5px;
  border-bottom: 2px solid var(--primary-900);
  padding-left: 20px;
}

.doctors-grid {
  display: grid;
  gap: 16px;
  align-items: stretch;
  grid-template-columns: repeat(1, 1fr);
  width: 100%;
  padding: 12px;
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .doctors-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 992px) {
  .doctors-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1200px) {
  .doctors-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.doctors-detail .doctor-box:hover {
  transform: scale(1);
}

.doctors-detail .section-title {
  margin-bottom: 15px;
  padding-bottom: 5px;
  border-bottom: 2px solid var(--primary-900);
  padding-left: 20px;
}

.services-detail-top-info .section-title,
.services-detail-bottom-info .section-title {
  margin-bottom: 30px;
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 5px;
}

.image {
  display: flex;
  justify-content: center;
}

.services-top-desc {
  padding: 0 0 60px 0;
}

.services-top-desc .section-title {
  text-align: center;
}

.clinical-department-title {
  padding: 0;
  margin-bottom: 15px;
}

.clinical-department-title .section-title {
  text-align: center;
  position: relative;
}

.clinical-department-title .section-title::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  transform: translateX(-50%);
  height: 2px;
  width: 20%;
  background-color: var(--primary-900);
}

.servicesNewsSlider {
  padding: 30px 10px 60px 10px !important;
}

.special-services {
  padding: 15px 0;
}

/* SERVICES DETAIL PAGE END */

/* HR PAGE START */

@media (max-width: 992px) {
  .hr-page-left {
    margin-bottom: 60px;
  }
}

.hr-page-left .hr-link {
  text-align: center;
}

.hr-page-left .hr-link a {
  padding: 15px 60px;
  background-color: gainsboro;
  color: var(--primary-800);
  border-radius: var(--border-radius);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

@media (max-width: 992px) {
  .hr-page-left .hr-link a {
    width: 100%;
    padding: 15px 0;
  }
}

.hr-page-left .hr-link a:hover {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.hr-page-right img {
  border-radius: var(--border-radius);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.hr-faq {
  padding: 60px 0 0 0;
}

/* HR PAGE END */

/* NEWS DETAIL PAGE START */

.news-detail {
  background-color: white;
}

.breadcrumb-default .links {
  display: none;
}

.news-detail-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.news-detail-left .title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 30px;
}

@media (max-width: 992px) {
  .news-detail-left .title {
    font-size: 24px;
  }
}

.news-detail-left .detail-router {
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-detail-left .detail-router .detail-router-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-bottom: 30px;
  background-color: var(--primary-300);
  color: var(--white-text);
  padding: 5px 10px;
}

.news-detail-left .detail-router a {
  color: var(--white-text);
}

.news-detail-right .title {
  text-transform: uppercase;
  font-size: 20px;
  margin-bottom: 30px;
  font-weight: bold;
  color: var(--primary-300);
  position: relative;
}

.news-detail-right .title::after {
  content: "";
  position: absolute;
  left: 0;
  width: 35%;
  bottom: -5px;
  height: 1px;
  background-color: var(--primary-300);
}

.other-news {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 30px;
  color: var(--black-text);
}

.other-news:hover {
  color: var(--primary-300);
}

.other-news:not(:last-child) {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
}

.other-news img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: var(--border-radius);
}

.other-news-title {
  font-size: 14px;
}

.news-detail-gallery {
  padding-bottom: 40px;
}


.detail-gallery-item {
  display: block;
  margin-bottom: 30px;
}


.detail-gallery-item img {
  border-radius: var(--border-radius);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.news-detail-videos {
  width: 100%;
}

.news-detail-videos iframe {
  border-radius: var(--border-radius);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.content-info  .section-title{
    text-align: left;
    margin-bottom: 10px;
}

.content-info .content-grid {
  display: grid;
  grid-template-columns: repeat(12,1fr);
}

.content-info .content-grid .doctor-box {
  grid-column: span 3;
}

@media (max-width:992px) {
.content-info .content-grid {
  margin-bottom: 30px;
}

.content-info .content-grid .doctor-box {
  grid-column: span 12;
}
}

.news-detail-before-after {
    padding: 30px 0;
    width: 100%;
}

/* NEWS DETAIL PAGE END */

/* ANIMATION CSS START */

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

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

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

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

/* ANIMATION CSS END */

/* HR FORM PAGE START */

.hr-form-page .form-file {
  display: flex;
  flex-direction: column;
}

@media (max-width: 992px) {
  .hr-form-page .form-file {
    margin-bottom: 30px;
  }
}

.hr-form-page .section-title {
  margin: 30px 0;
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 10px;
  font-size: 24px;
}

@media (max-width: 768px) {
  .hr-form-page .section-title {
    font-size: 20px;
  }
}

.hr-form-page .form-group {
  position: relative;
  font-family: inherit;
}

.hr-form-page .form-group input,
.hr-form-page .form-group textarea {
  width: 100%;
  padding: 12px 10px;
  font-size: 16px;
  border: 2px solid #81818133;
  border-radius: var(--border-radius);
  outline: none;
  background: none;
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .hr-form-page .form-group input,
  .hr-form-page .form-group textarea {
    font-size: 12px;
  }
}

.hr-form-page .form-group select {
  padding: 12px;
  border: 2px solid #81818133;
  border-radius: var(--border-radius);
  margin-bottom: 15px;
  color: #888;
  width: 100%;
  outline: none;
  background: none;
}

@media (max-width: 768px) {
  .hr-form-page .form-group select {
    font-size: 12px;
  }
}

.hr-form-page .form-group label {
  position: absolute;
  top: 12px;
  left: 10px;
  color: #888;
  background: #f9f9f9;
  padding: 0 4px;
  pointer-events: none;
  transition: 0.2s ease all;
}

@media (max-width: 768px) {
  .hr-form-page .form-group label {
    font-size: 12px;
  }
}

/* Odaklanınca veya input doluysa label yukarı kayar */
.hr-form-page .form-group input:focus + label,
.hr-form-page .form-group input:not(:placeholder-shown) + label {
  top: -8px;
  left: 8px;
  font-size: 12px;
  color: var(--primary-300);
}

.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
  top: -8px;
  left: 8px;
  font-size: 12px;
  color: var(--primary-300);
}

.hr-form-page .form-checkbox {
  color: #888;
}

.hr-form-page .form-checkbox .title {
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .hr-form-page .form-checkbox .title {
    font-size: 12px;
  }
}

.hr-form-page .checkbox-options {
  display: flex;
  align-items: center;
  gap: 15px;
}

@media (max-width: 992px) {
  .hr-form-page .checkbox-options {
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .hr-form-page .checkbox-options label {
    font-size: 12px;
  }
}

.hr-form-page .form-desc {
  margin: 15px 0;
  padding: 30px 10px;
  background-color: white;
}

.hr-form-page button {
  padding: 15px 60px;
  border-radius: var(--border-radius);
  border: 1px solid var(--primary-300);
  background-color: var(--primary-300);
  color: var(--white-text);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  cursor: pointer;
}

.hr-form-page button:hover {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.custom-file-upload {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 2px dashed var(--primary-300);
  border-radius: 8px;
  padding: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.custom-file-upload input[type="file"] {
  display: none;
  /* gizli */
}

.custom-file-upload label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  cursor: pointer;
  padding: 20px;
}

.custom-file-upload label i {
  font-size: 24px;
  margin-bottom: 10px;
  color: var(--primary-300);
  transition: transform 0.3s;
}

.custom-file-upload:hover {
  border-color: var(--primary-300);
}

.custom-file-upload:hover label i {
  transform: scale(1.2);
}

.file-name {
  margin-top: 10px;
  font-size: 14px;
  color: #333;
}

/* HR Form Validation Error Styles */
.hr-form-page .validation-error input,
.hr-form-page .validation-error textarea,
.hr-form-page .validation-error select {
  border-color: #dc3545 !important;
  background-color: #fff5f5 !important;
}

.hr-form-page .validation-error label {
  color: #dc3545 !important;
}

.hr-form-page .form-file.validation-error label {
  border-color: #dc3545 !important;
  background-color: #fff5f5 !important;
}

.hr-form-page .form-checkbox.validation-error,
.hr-form-page .checkbox-group.validation-error {
  color: #dc3545 !important;
}

.hr-form-page .checkbox-group.validation-error a {
  color: #dc3545 !important;
}

/* HR FORM PAGE END */

/* SURVEY PAGE START */

@media (max-width: 992px) {
  .survey-left {
    margin-bottom: 30px;
  }
}

.survey-right .survey-btn a {
  width: 100%;
  padding: 15px 0;
  display: block;
  text-align: center;
  background-color: var(--primary-400);
  color: var(--white-text);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border-radius: var(--border-radius);
}

.survey-right .survey-btn a:hover {
  background-color: var(--primary-300);
}

@media (max-width: 992px) {
  .survey-right .survey-btn a {
    margin-bottom: 30px;
  }
}

/* SURVEY PAGE END */

/* NEWSLETTER PAGE START */

.newsletter-box {
  display: block;
  margin-bottom: 30px;
  text-align: center;
  background-color: var(--primary-300);
  color: var(--white-text);
  padding: 15px 0;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border-radius: var(--border-radius);
}

.newsletter-box:hover {
  background-color: var(--primary-400);
  color: var(--white-text);
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

/* NEWSLETTER PAGE END */

/* NEWSLETTER DETAIL START */

.newsletter-detail .section-title {
  color: var(--primary-400);
  margin-bottom: 60px;
  position: relative;
}

.newsletter-detail .section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 1px;
  background-color: var(--primary-400);
}

@media (max-width: 992px) {
  .newsletter-detail .section-title {
    padding-left: 0px;
  }
}

.newsletter-detail .left-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 992px) {
  .newsletter-detail .left-image {
    margin-bottom: 30px;
  }
}

.newsletter-detail .left-image img {
  border-radius: var(--border-radius);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.newsletter-content {
  padding-bottom: 30px;
  margin-bottom: 60px;
  border-bottom: 1px solid var(--border-color);
}

.newsletter-content .right-content .title {
  font-size: 26px;
  position: relative;
}

.newsletter-content .right-content .title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  height: 2px;
  width: 20%;
  background-color: var(--primary-300);
  border-radius: 30px;
}

/* NEWSLETTER DETAIL END */

/* PROGRESS SCROLL BUTTON START */
.progress-wrap {
  right: 50px;
  bottom: 50px;
  color: white;
  position: fixed;
  height: 46px;
  width: 46px;
  cursor: pointer;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px white;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 200ms linear;
}

@media (max-width: 992px) {
  .progress-wrap {
    right: 35px;
    bottom: 100px;
  }
}

.progress-wrap input {
  z-index: 10001;
}

.progress-wrap input:checked + html {
  scroll-snap-type: unset;
}

.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.progress-wrap::after {
  position: absolute;
  content: "↓";
  text-align: center;
  line-height: 46px;
  font-size: 24px;
  color: var(--primary-400);
  left: 0;
  top: -2px;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 1;
  transition: all 200ms linear;
}

.progress-wrap:hover::after {
  transform: rotate(180deg);
  top: 2px;
}

.progress-wrap:hover::before {
  opacity: 1;
}

.progress-wrap svg path {
  fill: none;
}

.progress-wrap svg {
  stroke: var(--primary-400);
  stroke-width: 4;
  box-sizing: border-box;
  transition: all 200ms linear;
}

.progress-circle path {
  stroke: var(--primary-400);
  stroke-width: 4;
  box-sizing: border-box;
  transition: all 200ms linear;
}

/* PROGRESS SCROLL BUTTON END */

/* INTERNATIONAL PATIENTS PAGE START */

.patients-slider {
  padding: 0;
}

.patients-banner {
  padding: 0 0 30px 0;
}

.patients-banner img {
  border-radius: var(--border-radius);
}

.we-offer .section-title,
.choose-us .section-title,
.should-you .section-title,
.patients-video .section-title {
  text-align: center;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--primary-300);
}

.we-offer-box {
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.we-offer-box img {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border-radius: var(--border-radius);
}

.choose-us-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-bottom: 40px;
  gap: 10px;
}

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

.patients-gallery .section-title {
  border-bottom: 1px solid var(--primary-300);
  padding-bottom: 0;
}

.should-you-box {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 20px;
}

@media (max-width: 992px) {
  .should-you-box {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 15px;
  }
}

.should-you-box img {
  border-radius: var(--border-radius);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.should-you-box-info .title {
  font-weight: bold;
  margin-bottom: 30px;
}

@media (max-width: 992px) {
  .should-you-box-info .title {
    margin-bottom: 15px;
  }

  .patients-video .video-box {
    margin-bottom: 30px;
  }
}

.patients-video .video-box iframe {
  border-radius: var(--border-radius);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

/* INTERNATIONAL PATIENTS PAGE END */

/* HOME CARE PAGE START */

.home-care-hero {
  padding: 0;
}

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

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

  .home-care-mobile img {
    width: 100%;
  }

  .home-care-desktop {
    display: none;
  }
}

.home-care-category-section .section-title {
  color: var(--primary-400);
  margin-bottom: 30px;
  text-align: center;
}

.home-care-box {
  display: block;
  margin-bottom: 30px;
  text-align: center;
}

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

.home-care-box img {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  margin-bottom: 15px;
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
}

.home-care-box .title {
  font-size: 20px;
  color: var(--black-text);
}

.home-care-detail-left img {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border-radius: var(--border-radius);
}

.home-care-btn-wrapper {
  text-align: center;
}

.home-care-contact {
  padding: 15px 60px;
  background-color: var(--primary-500);
  color: var(--white-text);
  border-radius: var(--border-radius);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.home-care-contact:hover {
  color: var(--white-text);
}

/* HOME CARE PAGE END */

/* PAGINATION START */

.pagination-wrapper {
  margin-top: 40px;
}

.pagination {
  flex-wrap: wrap !important;
}

.page-link:hover {
  background-color: #eee;
  color: var(--black-text) !important;
}

li.page-item.active a {
  color: white;
  background-color: var(--primary-300);
}

.pagination li a,
.pagination li span {
  display: block;
  padding: 8px 15px;
  border: 1px solid #ddd;
  color: var(--primary-300);
  border-radius: 4px;
  transition: all 0.3s ease;
}




/* PAGINATION END */


/* GUIDDE DETAIL PAGE START */

.news-detail-left .wrapper .section-title {
  margin-bottom: 30px;
}


.news-detail-left .doctor-wrapper {
  display: grid !important;
}






/* GUIDDE DETAIL PAGE END */

/* SEARCH PAGE START */
.search-page {
  padding: 40px 0 20px;
}

.search-title {
  font-size: 28px;
  font-weight: 600;
  color: var(--primary-800);
  margin-bottom: 20px;
}

.search-no-results {
  text-align: center;
  padding: 60px 20px;
  background: white;
  border-radius: var(--border-radius);
  margin-bottom: 40px;
}

.search-no-results p {
  font-size: 18px;
  color: #666;
}

.search-results {
  padding: 40px 0;
}

.search-section-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--primary-300);
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--primary-300);
}

.search-results .row {
  margin-bottom: 20px;
}

.search-box {
  display: block;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.search-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.search-box-image {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
}

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

.search-box:hover .search-box-image img {
  transform: scale(1.05);
}

.search-box-title {
  padding: 20px;
  font-size: 16px;
  font-weight: 500;
  color: var(--primary-800);
  line-height: 1.4;
  text-align: center;
}
/* SEARCH PAGE END */

/* COOKIE CONSENT START */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  padding: 20px 30px;
  z-index: 9999;
  display: none;
  animation: slideUp 0.4s ease;
}

.cookie-consent-banner.show {
  display: block;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cookie-consent-content {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 15px;
}

.cookie-consent-icon {
  font-size: 24px;
  color: var(--primary-300);
  flex-shrink: 0;
}

.cookie-consent-text h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--primary-800);
}

.cookie-consent-text p {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  margin: 0;
}

.cookie-consent-text a {
  color: var(--primary-300);
  text-decoration: underline !important;
}

.cookie-consent-buttons {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 10px 24px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.cookie-btn-settings {
  background: transparent;
  border: 1px solid #ddd;
  color: #666;
}

.cookie-btn-settings:hover {
  background: #f5f5f5;
  border-color: #ccc;
}

.cookie-btn-reject {
  background: transparent;
  border: 1px solid var(--primary-300);
  color: var(--primary-300);
}

.cookie-btn-reject:hover {
  background: var(--primary-300);
  color: #fff;
}

.cookie-btn-accept {
  background: var(--primary-300);
  color: #fff;
}

.cookie-btn-accept:hover {
  background: #c41419;
}

/* Cookie Settings Modal */
.cookie-settings-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10000;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cookie-settings-overlay.show {
  display: block;
  opacity: 1;
}

.cookie-settings-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background: #fff;
  border-radius: 12px;
  width: 90%;
  max-width: 600px;
  max-height: 85vh;
  overflow: hidden;
  z-index: 10001;
  display: none;
  opacity: 0;
  transition: all 0.3s ease;
}

.cookie-settings-modal.show {
  display: block;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.cookie-settings-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  border-bottom: 1px solid #eee;
}

.cookie-settings-header h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  color: var(--primary-800);
}

.cookie-settings-close {
  background: none;
  border: none;
  font-size: 20px;
  color: #999;
  cursor: pointer;
  padding: 5px;
  transition: color 0.3s ease;
}

.cookie-settings-close:hover {
  color: var(--primary-300);
}

.cookie-settings-body {
  padding: 20px 25px;
  max-height: 50vh;
  overflow-y: auto;
}

.cookie-settings-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 20px;
}

.cookie-settings-desc a {
  color: var(--primary-300);
  text-decoration: underline !important;
}

.cookie-settings-item {
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
}

.cookie-settings-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background: #f9f9f9;
}

.cookie-settings-item-info h5 {
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 5px 0;
  color: var(--primary-800);
}

.cookie-toggle-details {
  background: none;
  border: none;
  font-size: 12px;
  color: var(--primary-400);
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 5px;
}

.cookie-toggle-details:hover {
  color: var(--primary-300);
}

.cookie-toggle-details i {
  transition: transform 0.3s ease;
}

.cookie-settings-item.active .cookie-toggle-details i {
  transform: rotate(180deg);
}

.cookie-always-active {
  font-size: 12px;
  color: #28a745;
  font-weight: 500;
}

.cookie-settings-item-details {
  padding: 0 15px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.cookie-settings-item.active .cookie-settings-item-details {
  padding: 15px;
  max-height: 200px;
}

.cookie-settings-item-details p {
  font-size: 13px;
  line-height: 1.6;
  color: #666;
  margin: 0;
}

/* Cookie Switch */
.cookie-switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
  flex-shrink: 0;
}

.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.3s;
  border-radius: 26px;
}

.cookie-slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
}

.cookie-switch input:checked + .cookie-slider {
  background-color: var(--primary-300);
}

.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(24px);
}

.cookie-settings-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 25px;
  border-top: 1px solid #eee;
  background: #f9f9f9;
}

.cookie-powered-by {
  font-size: 20px;
  color: #ccc;
  transition: color 0.3s ease;
}

.cookie-powered-by:hover {
  color: var(--primary-300);
}

.cookie-btn-save {
  background: var(--primary-300);
  color: #fff;
}

.cookie-btn-save:hover {
  background: #c41419;
}

/* Responsive */
@media (max-width: 768px) {
  .cookie-consent-banner {
    padding: 15px 20px;
  }

  .cookie-consent-content {
    flex-direction: column;
    gap: 10px;
  }

  .cookie-consent-buttons {
    justify-content: center;
  }

  .cookie-btn {
    padding: 10px 16px;
    font-size: 13px;
  }

  .cookie-settings-modal {
    width: 95%;
    max-height: 90vh;
  }

  .cookie-settings-item-header {
    flex-wrap: wrap;
    gap: 10px;
  }
}
/* COOKIE CONSENT END */
/* LIST PAGE */
.list-page {
  padding: 60px 0;
}

.list-page .date {
  margin-bottom: 30px;
  color: #666;
  font-size: 14px;
}

.list-page .content-wrapper {
  margin-bottom: 40px;
}

.list-page .list-items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.list-page .list-items li {
  width: calc(50% - 10px);
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
}

.list-page .list-items li:hover {
  border-color: var(--primary-300);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.list-page .list-items li a {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px 25px;
  color: var(--primary-800);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
}

.list-page .list-items li a i {
  color: var(--primary-300);
  font-size: 14px;
  transition: transform 0.3s ease;
}

.list-page .list-items li:hover a i {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .list-page {
    padding: 40px 0;
  }

  .list-page .list-items li {
    width: 100%;
  }

  .list-page .list-items li a {
    padding: 15px 20px;
    font-size: 15px;
  }
}
/* LIST PAGE END */



/* ERROR PAGE START */

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

.error-page .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 15px;
}

.error-page .container .title {
  font-size: 32px;
  color: var(--primary-300);
}

.error-search {
  display: flex;
  align-items: center;
  gap: 5px;
  border: 1px solid gainsboro;
  padding: 8px 15px;
}

.error-search input {
  background: transparent;
  border: none;
  outline: none;
}

.error-search button i {
  color: gray;
  font-size: 20px;
}




/* ERROR PAGE END */