@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Urbanist: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&display=swap");
body {
  font-family: "Urbanist";
  font-weight: 500;
}

select {
  font-family: "Urbanist";
  font-weight: 500;
}

:root {
  --app-height: 100%;
}

html {
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
}

a {
  font-weight: 500;
}

select,
button,
input[type=text],
input[type=email],
input[type=password],
textarea {
  font-family: "Urbanist", sans-serif;
  font-weight: 500;
}

strong,
b {
  font-weight: 900;
}

/*1199, 1366*/
.container {
  max-width: 1193px;
  margin: 0 auto;
}

@media (max-width: 1140px) {
  .container {
    max-width: 992px;
  }
}
@media (max-width: 992px) {
  .container {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}
header {
  position: relative;
  box-shadow: 0 13px 24px 0 rgba(34, 31, 25, 0.48);
  z-index: 10;
}
header .htop {
  background-color: #17395c;
  padding-top: 6px;
  padding-bottom: 6px;
}
header .htop .htcon {
  color: #fff;
  text-align: right;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
header .htop .htcon img {
  margin-left: 3px;
}
header .hbot {
  background-color: #fff;
  padding-top: 6px;
  padding-bottom: 6px;
}
header .hbot .hbotcon {
  display: flex;
  align-items: center;
}
header .hbot .hbotcon .hlogo {
  flex-grow: 1;
}
header .hbot .hbotcon .hlogo img {
  max-width: 100%;
  height: auto;
}
header .hbot .hbotcon .hmenu {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .hbot .hbotcon .hmenu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}
header .hbot .hbotcon .hmenu ul li {
  margin-right: 10px;
}
header .hbot .hbotcon .hmenu ul li a {
  color: #17395c;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease-in-out;
  font-size: 15px;
  position: relative;
}
header .hbot .hbotcon .hmenu ul li a::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: #1dc2d9;
  transition: width 0.3s;
}
header .hbot .hbotcon .hmenu ul li a:hover::after {
  width: 100%;
}
header .hbot .hbotcon .hmenu ul li a:hover {
  color: #1dc2d9;
}
header .hbot .hbotcon .hbtns {
  display: flex;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
header .hbot .hbotcon .hbtns .h-blue a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  background-color: #17395c;
  border-radius: 5px;
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  transition: all 0.3s ease-in-out;
  height: 37px;
}
header .hbot .hbotcon .hbtns .h-blue a:hover {
  background-color: #1dc2d9;
}
header .hbot .hbotcon .hbtns .h-blue a .icon {
  margin-right: 4px;
}
header .hbot .hbotcon .hbtns .h-gray {
  position: relative;
}
header .hbot .hbotcon .hbtns .h-gray > a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  background-color: #fff;
  border: 2px solid #b5b5b5;
  border-radius: 5px;
  color: #b5b5b5;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  transition: all 0.3s ease-in-out;
  height: 37px;
}
header .hbot .hbotcon .hbtns .h-gray > a:hover {
  background-color: #17395c;
  border: 2px solid #17395c;
  color: #fff;
}
header .hbot .hbotcon .hbtns .h-gray > a:hover .icon img {
  filter: brightness(0) invert(1);
}
header .hbot .hbotcon .hbtns .h-gray > a .icon {
  margin-right: 4px;
}
header .hbot .hbotcon .hbtns .h-gray .login-modal {
  position: absolute;
  top: 45px;
  right: 0;
  z-index: 100;
  width: 340px;
  background: transparent;
  box-shadow: none;
  display: flex;
  justify-content: flex-end;
  display: none;
}
header .hbot .hbotcon .hbtns .h-gray .login-modal.active {
  display: flex;
}
header .hbot .hbotcon .hbtns .h-gray .login-modal .login-modal-content {
  background: #fff;
  border-radius: 16px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  box-shadow: 0 20px 34px 0 rgba(23, 57, 92, 0.18);
  padding: 36px 28px 22px 28px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
@media (max-width: 600px) {
  header .hbot .hbotcon .hbtns .h-gray .login-modal .login-modal-content {
    min-width: 90vw;
    max-width: 98vw;
    padding: 24px 8px 20px 8px;
  }
}
header .hbot .hbotcon .hbtns .h-gray .login-modal .login-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
header .hbot .hbotcon .hbtns .h-gray .login-modal .login-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
header .hbot .hbotcon .hbtns .h-gray .login-modal .login-form .form-group label {
  font-size: 1rem;
  font-weight: 500;
  color: #17395c;
  margin-bottom: 2px;
}
header .hbot .hbotcon .hbtns .h-gray .login-modal .login-form .input-icon {
  display: flex;
  align-items: center;
  background: #f3f6fb;
  border-radius: 10px;
  padding: 0 12px;
  height: 44px;
  border: 1.5px solid #e9ecef;
}
header .hbot .hbotcon .hbtns .h-gray .login-modal .login-form .input-icon img {
  width: 20px;
  opacity: 0.7;
  margin-right: 8px;
}
header .hbot .hbotcon .hbtns .h-gray .login-modal .login-form .input-icon input {
  border: none;
  background: transparent;
  outline: none;
  font-size: 1rem;
  font-family: "Urbanist", sans-serif;
  font-weight: 500;
  width: 100%;
  color: #17395c;
}
header .hbot .hbotcon .hbtns .h-gray .login-modal .login-form .form-options {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 4px;
}
header .hbot .hbotcon .hbtns .h-gray .login-modal .login-form .form-options .forgot-password {
  font-size: 0.98rem;
  color: #222;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 2px;
  transition: color 0.2s;
}
header .hbot .hbotcon .hbtns .h-gray .login-modal .login-form .form-options .forgot-password:hover {
  color: #18b5ca;
}
header .hbot .hbotcon .hbtns .h-gray .login-modal .login-form .btn {
  width: 100%;
  border: none;
  border-radius: 10px;
  padding: 12px 0;
  height: 43px;
  font-size: 1.08rem;
  font-weight: 700;
  font-family: "Urbanist", sans-serif;
  cursor: pointer;
  margin-bottom: 0px;
  box-shadow: 0 2px 12px rgba(23, 57, 92, 0.1);
  transition: background 0.2s, color 0.2s;
}
header .hbot .hbotcon .hbtns .h-gray .login-modal .login-form .btn.btn-login {
  background: #18b5ca;
  color: #fff;
}
header .hbot .hbotcon .hbtns .h-gray .login-modal .login-form .btn.btn-login:hover {
  background: #1dc2d9;
}
header .hbot .hbotcon .hbtns .h-gray .login-modal .login-form .btn.btn-register {
  background: #17395c;
  color: #fff;
  text-align: center;
  display: block;
}
header .hbot .hbotcon .hbtns .h-gray .login-modal .login-form .btn.btn-register:hover {
  background: #1e4c7b;
}
header .hbot .hbotcon .hbtns .h-lang {
  position: relative;
}
header .hbot .hbotcon .hbtns .h-lang > a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  background-color: #fff;
  border: 2px solid #b5b5b5;
  border-radius: 5px;
  color: #b5b5b5;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  transition: all 0.3s ease-in-out;
  height: 37px;
}
header .hbot .hbotcon .hbtns .h-lang .lang-menu {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 2px;
  bottom: -38px;
  background-color: #fff;
  box-shadow: 0 8px 11px 0 rgba(0, 0, 0, 0.56);
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
}
header .hbot .hbotcon .hbtns .h-lang .lang-menu.active {
  opacity: 1;
  visibility: visible;
}
header .hbot .hbotcon .hbtns .h-lang .lang-menu ul li a {
  display: block;
  padding: 10px;
  color: #17395c;
  font-weight: 700;
  transition: all 0.3s ease-in-out;
}

.mslider .mscont {
  position: relative;
}
.mslider .mscont .item {
  position: relative;
}
.mslider .mscont .item img {
  width: 100%;
  height: initial;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 992px) {
  .mslider .mscont .item img {
    -o-object-fit: contain;
       object-fit: contain;
    height: initial;
  }
}
.mslider .slick-dots {
  display: none;
}

.home-icons {
  margin-top: 40px;
}
.home-icons .con {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  -moz-column-gap: 30px;
       column-gap: 30px;
  align-items: stretch;
}
.home-icons .item-first {
  border-radius: 32px;
  color: #fff;
  padding: 40px 0 32px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 265px;
  position: relative;
}
.home-icons .item-first::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 600px;
  height: 100%;
  background: url(../img/home-icons-bg.png) no-repeat right center;
  background-size: cover;
  opacity: 1;
  z-index: -1;
  border-radius: 20px;
}
.home-icons .item-first .title {
  font-size: 29px;
  font-weight: 300;
  line-height: 1.2;
}
.home-icons .item-first .title b {
  font-weight: 900;
  display: block;
  margin-top: 2px;
}
.home-icons .item-first .selfyup-logo {
  margin-top: auto;
}
.home-icons .item-first .selfyup-logo img {
  width: 90px;
  margin-bottom: 6px;
}
.home-icons .item-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 32px 0 rgba(23, 57, 92, 0.1);
  padding: 43px 4px 28px 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 265px;
  text-align: center;
  transition: box-shadow 0.3s;
}
.home-icons .item-card:hover {
  box-shadow: 0 12px 36px 0 rgba(23, 57, 92, 0.18);
}
.home-icons .item-card:hover .icon {
  transform: scale(1.18);
  box-shadow: 0 4px 18px rgba(23, 57, 92, 0.18);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s;
}
.home-icons .item-card .icon {
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s;
}
.home-icons .item-card .icon {
  width: 64px;
  height: 64px;
  background: #1dc2d9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.home-icons .item-card .icon img {
  max-width: 100%;
  display: block;
}
.home-icons .item-card .icon.dark {
  background: #17395c;
}
.home-icons .item-card .icon.dark img {
  filter: brightness(0) invert(1);
}
.home-icons .item-card .card-title {
  font-size: 1.15rem;
  font-weight: 400;
  color: #17395c;
  margin-bottom: 28px;
}
.home-icons .item-card .card-title b {
  font-weight: 900;
  font-size: 1.18rem;
}
.home-icons .item-card .card-title .hashtag {
  color: #1dc2d9;
  font-weight: 700;
  font-size: 1.1rem;
}
.home-icons .item-card .desc {
  font-size: 14px;
  color: #17395c;
  opacity: 0.8;
  margin-bottom: 0;
}
.home-icons .item-card.join .icon {
  background: #17395c;
}
.home-icons .item-card.join .card-title {
  color: #17395c;
  margin-bottom: 18px;
}
.home-icons .item-card.join .btn {
  margin-top: auto;
  display: inline-block;
  background: #17395c;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  border-radius: 8px;
  padding: 12px 22px;
  text-decoration: none;
  transition: background 0.2s;
}
.home-icons .item-card.join .btn:hover {
  background: #1dc2d9;
  color: #17395c;
}
@media (max-width: 992px) {
  .home-icons .con {
    grid-template-columns: 1fr;
    row-gap: 24px;
  }
  .home-icons .item-first,
  .home-icons .item-card {
    min-height: unset;
    padding: 24px 12px;
  }
}

.home-team {
  margin-top: 50px;
}
.home-team .con .title {
  background-image: url(../img/h-team-bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 35px;
  padding-bottom: 75px;
  padding-top: 40px;
}
.home-team .con .title h2 {
  font-size: 38px;
  color: #ffffff;
  font-weight: 900;
  text-align: center;
  margin-bottom: 7px;
}
.home-team .con .title p {
  font-size: 15px;
  color: #fff;
  opacity: 1;
  text-align: center;
}
.home-team .con .list {
  padding: 0px 27px;
  margin-top: -75px;
}
.home-team .con .list .team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 32px;
  margin-top: 32px;
}
.home-team .con .list .team-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 32px 0 rgba(23, 57, 92, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  padding: 0;
  min-height: 210px;
  overflow: hidden;
}
.home-team .con .list .team-card-left {
  display: flex;
  padding: 18px;
  flex: 1;
  gap: 18px;
}
.home-team .con .list .team-img {
  position: relative;
  width: 172px;
  height: 172px;
  border-radius: 16px;
}
.home-team .con .list .team-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
}
.home-team .con .list .team-img .team-video-btn {
  position: absolute;
  left: 50%;
  bottom: -15px;
  transform: translateX(-50%);
  background: #1dc2d9;
  border-radius: 50%;
  width: 43px;
  height: 43px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(23, 57, 92, 0.1);
}
.home-team .con .list .team-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex-grow: 1;
}
.home-team .con .list .team-info .team-name {
  font-size: 1.25rem;
  font-weight: 900;
  color: #17395c;
}
.home-team .con .list .team-info .team-name .team-verified {
  display: inline-block;
  width: 14px;
  height: 14px;
  background: url("../img/verified.png") no-repeat center center;
  background-size: contain;
  vertical-align: middle;
  margin-left: 6px;
}
.home-team .con .list .team-info .team-title {
  font-weight: 500;
  margin-bottom: 2px;
  font-size: 14px;
  color: #747474;
}
.home-team .con .list .team-info .team-date {
  font-size: 12px;
  color: #152e48;
  font-weight: 700;
}
.home-team .con .list .team-info .team-tags {
  display: flex;
  align-items: flex-end;
  flex-grow: 1;
  width: 100%;
}
.home-team .con .list .team-info .team-tags .tag-list {
  display: flex;
  flex-wrap: wrap;
  row-gap: 4px;
  -moz-column-gap: 7px;
  column-gap: 4px;
  border-top: 2px solid #e0e0e0;
  padding-top: 10px;
  width: 100%;
}
.home-team .con .list .team-info .team-tags .tag-list .team-tag {
  background: #ffffff;
  color: #747474;
  font-size: 11px;
  font-weight: 700;
  border-radius: 6px;
  padding: 4px 7px;
  border: 1px solid #e0e0e0;
}
.home-team .con .list .team-card-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  background: #f7f7f7;
  min-width: 100px;
}
.home-team .con .list .team-card-right .team-profile-btn,
.home-team .con .list .team-card-right .team-appointment-btn {
  display: block;
  width: 100%;
  background: none;
  color: rgba(50, 50, 50, 0.7215686275);
  font-weight: 700;
  font-size: 12px;
  text-align: right;
  text-decoration: none;
  padding: 18px 0;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-team .con .list .team-card-right .team-profile-btn {
  background-color: #f1f1f1;
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
}
.home-team .con .list .team-card-right .team-profile-btn:hover {
  background-color: #1dc2d9;
  color: #fff;
  box-shadow: 0 4px 18px rgba(23, 57, 92, 0.18);
}
.home-team .con .list .team-card-right .team-appointment-btn {
  background-color: #dadada;
}
.home-team .con .list .team-card-right .team-appointment-btn:hover {
  background-color: #17395c;
  color: #fff;
  box-shadow: 0 4px 18px rgba(23, 57, 92, 0.18);
}
@media (max-width: 992px) {
  .home-team .con .list .team-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .home-team .con .list .team-card {
    flex-direction: column;
  }
  .home-team .con .list .team-card-right {
    min-width: unset;
    width: 100%;
    align-items: stretch;
    padding: 0 12px;
  }
  .home-team .con .list .team-card-right .team-profile-btn,
  .home-team .con .list .team-card-right .team-appointment-btn {
    text-align: left;
    padding: 14px 0;
  }
}

.calendar-widget {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 18px;
  position: relative;
}
.calendar-widget .btn-go-prev,
.calendar-widget .btn-go-next {
  position: absolute;
  top: 60px;
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(23, 57, 92, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.calendar-widget .btn-go-prev a,
.calendar-widget .btn-go-next a {
  color: #17395c;
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: none;
  line-height: 1;
  transition: opacity 0.2s;
}
.calendar-widget .btn-go-prev a:hover,
.calendar-widget .btn-go-next a:hover {
  color: #18b5ca;
}
.calendar-widget .btn-go-prev a.disabled,
.calendar-widget .btn-go-next a.disabled {
  opacity: 0.5;
  pointer-events: none;
  cursor: not-allowed;
}
.calendar-widget .btn-go-prev {
  left: -20px;
}
.calendar-widget .btn-go-next {
  right: -20px;
}
.calendar-widget .calendar-year {
  font-size: 1.2rem;
  font-weight: 700;
  color: #17395c;
  margin-bottom: 18px;
}
.calendar-widget .calendar-days {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 12px;
  width: 100%;
}
@media (max-width: 600px) {
  .calendar-widget .calendar-days {
    grid-template-columns: 1fr;
  }
}
.calendar-widget .calendar-days .day {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.calendar-widget .calendar-days .day .day-title {
  font-weight: 700;
  font-size: 1.1rem;
  color: #17395c;
  margin-bottom: 8px;
  text-align: center;
}
.calendar-widget .calendar-days .day .day-title .date {
  font-size: 0.95rem;
  color: #888;
  font-weight: 400;
}
.calendar-widget .calendar-days .day .slots {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
  align-items: center;
}
.calendar-widget .calendar-days .day .slots .loading-slots {
  font-size: 0.9rem;
  color: #888;
  padding: 10px;
  font-style: italic;
}
.calendar-widget .calendar-days .day .slots .slot {
  width: 70px;
  height: 32px;
  background: #fff;
  border: none;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(23, 57, 92, 0.08);
  color: #17395c;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.calendar-widget .calendar-days .day .slots .slot:hover:not(.disabled):not(.selected) {
  background: #f0f9ff;
  box-shadow: 0 2px 6px rgba(23, 57, 92, 0.12);
}
.calendar-widget .calendar-days .day .slots .slot.active {
  background: #e5e5e5;
  color: #aaa;
  cursor: not-allowed;
}
.calendar-widget .calendar-days .day .slots .slot.disabled {
  background: #e5e5e5;
  color: #aaa;
  cursor: not-allowed;
}
.calendar-widget .calendar-days .day .slots .slot.selected {
  background: #18b5ca;
  color: #fff;
  box-shadow: 0 2px 8px rgba(23, 57, 92, 0.12);
}
.calendar-widget .calendar-info {
  font-size: 0.95rem;
  color: #888;
  margin: 10px 0 18px 0;
  text-align: center;
}
.calendar-widget .calendar-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #18b5ca;
  color: #fff;
  font-weight: 700;
  font-size: 1.15rem;
  border: none;
  border-radius: 12px;
  padding: 14px 0;
  width: 100%;
  max-width: 260px;
  margin: 0 auto;
  cursor: pointer;
  transition: background 0.2s;
  box-shadow: 0 2px 12px rgba(23, 57, 92, 0.1);
  letter-spacing: 1px;
}
.calendar-widget .calendar-btn:hover {
  background: #17395c;
}
.calendar-widget .calendar-btn svg,
.calendar-widget .calendar-btn img {
  margin-right: 8px;
}

.home-danisman {
  margin-top: 48px;
}
.home-danisman .danisman-banner {
  display: flex;
  align-items: center;
  background-image: url(../img/home-danisman-02.webp);
  background-size: 100% 100%;
  border-radius: 32px;
  padding: 32px 40px;
  padding-top: 82px;
}
@media (max-width: 992px) {
  .home-danisman .danisman-banner {
    flex-direction: column;
    padding: 24px 12px;
    background-size: cover;
  }
}
.home-danisman .danisman-banner .danisman-img {
  flex: 0 0 340px;
  max-width: 340px;
  margin-right: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.home-danisman .danisman-banner .danisman-img img {
  width: initial;
  max-width: 100%;
  border-radius: 24px;
  -o-object-fit: cover;
  object-fit: contain;
  max-height: 399px;
  position: relative;
  top: 33px;
}
@media (max-width: 992px) {
  .home-danisman .danisman-banner .danisman-img img {
    top: initial;
  }
}
@media (max-width: 992px) {
  .home-danisman .danisman-banner .danisman-img {
    margin-right: 0;
    margin-bottom: 24px;
    max-width: 220px;
  }
}
.home-danisman .danisman-banner .danisman-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.home-danisman .danisman-banner .danisman-content .danisman-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.home-danisman .danisman-banner .danisman-content .danisman-header h3 {
  font-size: 2rem;
  font-weight: 400;
  color: #17395c;
  margin: 0;
}
.home-danisman .danisman-banner .danisman-content .danisman-header h3 b {
  color: #17395c;
  font-weight: 900;
}
.home-danisman .danisman-banner .danisman-content .danisman-header .danisman-btn {
  background: #1dc2d9;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 8px;
  padding: 12px 28px;
  text-decoration: none;
  transition: background 0.2s;
}
.home-danisman .danisman-banner .danisman-content .danisman-header .danisman-btn:hover {
  background: #17395c;
  color: #fff;
}
@media (max-width: 600px) {
  .home-danisman .danisman-banner .danisman-content .danisman-header {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
  }
}
.home-danisman .danisman-banner .danisman-content .danisman-features {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.home-danisman .danisman-banner .danisman-content .danisman-features .feature {
  display: flex;
  align-items: flex-start;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(23, 57, 92, 0.06);
  padding: 18px 22px;
  gap: 18px;
}
.home-danisman .danisman-banner .danisman-content .danisman-features .feature .feature-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 46px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-danisman .danisman-banner .danisman-content .danisman-features .feature .feature-icon img {
  width: 32px;
  height: 32px;
  -o-object-fit: contain;
     object-fit: contain;
}
.home-danisman .danisman-banner .danisman-content .danisman-features .feature .feature-text b {
  font-size: 1.08rem;
  color: #17395c;
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
}
.home-danisman .danisman-banner .danisman-content .danisman-features .feature .feature-text div {
  font-size: 0.98rem;
  color: #17395c;
  opacity: 0.85;
}

.mutlu-danisanlar {
  margin-top: 48px;
}
.mutlu-danisanlar .mutlu-banner {
  position: relative;
  width: 100%;
  min-height: 130px;
  border-radius: 40px;
  overflow: hidden;
  background: url(../img/mutlu-danisanlar-bg.webp) no-repeat center center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 37px;
  padding-bottom: 37px;
}
.mutlu-danisanlar .mutlu-banner .mutlu-img {
  z-index: 1;
}
.mutlu-danisanlar .mutlu-banner .mutlu-img img {
  display: block;
}
.mutlu-danisanlar .mutlu-banner .mutlu-title {
  z-index: 3;
  color: #fff;
  font-size: 1.7rem;
  margin-top: 9px;
  font-weight: 900;
  letter-spacing: 1px;
  text-align: center;
  text-shadow: 0 2px 12px rgba(23, 57, 92, 0.18);
}
.mutlu-danisanlar .mutlu-banner .mutlu-title span {
  color: #fff;
  font-weight: 900;
}
@media (max-width: 992px) {
  .mutlu-danisanlar .mutlu-banner {
    min-height: 80px;
    border-radius: 18px;
  }
  .mutlu-danisanlar .mutlu-banner .mutlu-title {
    font-size: 1.2rem;
  }
}

.home-danisma-slider {
  margin-top: 32px;
}
.home-danisma-slider .danisma-slider .danisma-slide {
  padding: 24px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.home-danisma-slider .danisma-slider .danisma-card {
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 8px 32px 0 rgba(23, 57, 92, 0.12);
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
  padding: 23px 36px 21px 36px;
  display: flex;
  flex-direction: column;
  /* min-height: 260px; */
  position: relative;
}
@media (max-width: 600px) {
  .home-danisma-slider .danisma-slider .danisma-card {
    padding: 18px 10px;
    border-radius: 18px;
  }
}
.home-danisma-slider .danisma-slider .danisma-card .danisma-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.home-danisma-slider .danisma-slider .danisma-card .danisma-card-header .danisma-avatar {
  width: 51px;
  height: 51px;
  border-radius: 50%;
  background: #1dc2d9;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 9px;
}
.home-danisma-slider .danisma-slider .danisma-card .danisma-card-header .danisma-avatar img {
  height: 24px;
}
.home-danisma-slider .danisma-slider .danisma-card .danisma-card-header .danisma-user {
  flex: 1;
}
.home-danisma-slider .danisma-slider .danisma-card .danisma-card-header .danisma-user .danisma-name {
  font-weight: 700;
  font-size: 14px;
  color: #17395c;
  letter-spacing: 1px;
}
.home-danisma-slider .danisma-slider .danisma-card .danisma-card-header .danisma-user .danisma-role {
  font-size: 11px;
  color: #747474;
  font-weight: 600;
  margin-top: 3px;
}
.home-danisma-slider .danisma-slider .danisma-card .danisma-card-header .danisma-stars {
  min-width: 110px;
  text-align: right;
}
.home-danisma-slider .danisma-slider .danisma-card .danisma-card-header .danisma-stars .star {
  font-size: 22px;
  color: #e0e0e0;
}
.home-danisma-slider .danisma-slider .danisma-card .danisma-card-header .danisma-stars .star.active {
  color: #1dc2d9;
}
.home-danisma-slider .danisma-slider .danisma-card .danisma-card-body .danisma-text {
  font-size: 15px;
  color: #17395c;
  font-weight: 500;
  margin-bottom: 9px;
  height: 97px;
  line-height: 16px;
  max-height: 100px;
  text-align: justify;
  overflow-y: auto;
  padding-right: 13px;
}
.home-danisma-slider .danisma-slider .danisma-card .danisma-card-footer {
  border-top: 2px solid #e0e0e0;
  padding-top: 7px;
  font-size: 13px;
  color: #747474;
  font-weight: 700;
  opacity: 0.8;
}
.home-danisma-slider .danisma-slider .danisma-card .card-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: #fff;
  border-radius: 50%;
  border: none;
  box-shadow: 0 2px 12px rgba(23, 57, 92, 0.1);
  cursor: pointer;
  z-index: 5;
  font-size: 0;
}
.home-danisma-slider .danisma-slider .danisma-card .card-arrow.left {
  left: -21px;
}
.home-danisma-slider .danisma-slider .danisma-card .card-arrow.left:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin: 9px;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-right: 10px solid #7f7f7f;
}
.home-danisma-slider .danisma-slider .danisma-card .card-arrow.right {
  right: -21px;
}
.home-danisma-slider .danisma-slider .danisma-card .card-arrow.right:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin: 13px;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 10px solid #7f7f7f;
}
.home-danisma-slider .danisma-slider .danisma-card .danisma-card {
  position: relative;
}
.home-danisma-slider .slick-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 48px;
  height: 48px;
  background: #fff;
  border-radius: 50%;
  border: none;
  font-size: 0;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(23, 57, 92, 0.1);
  transform: translateY(-50%);
}
.home-danisma-slider .slick-arrow.slick-prev {
  left: -24px;
}
.home-danisma-slider .slick-arrow.slick-prev:before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  margin: 15px;
  border-left: 4px solid #1dc2d9;
  border-bottom: 4px solid #1dc2d9;
  transform: rotate(45deg);
}
.home-danisma-slider .slick-arrow.slick-next {
  right: -24px;
}
.home-danisma-slider .slick-arrow.slick-next:before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  margin: 15px;
  border-right: 4px solid #1dc2d9;
  border-top: 4px solid #1dc2d9;
  transform: rotate(45deg);
}
.home-danisma-slider .slick-list {
  overflow: visible;
}
.home-danisma-slider .slick-slide {
  opacity: 0.3;
  transition: opacity 0.3s;
}
.home-danisma-slider .slick-center {
  opacity: 1;
}

.home-bottom-banner {
  margin-top: 50px;
  margin-bottom: 50px;
}
.home-bottom-banner .con a {
  display: block;
}
.home-bottom-banner .con a img {
  width: 100%;
}

footer .con {
  background-color: #f6f6f6;
  padding: 90px 73px 53px 73px;
  border-radius: 20px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
footer .con .ftop {
  display: flex;
  -moz-column-gap: 136px;
       column-gap: 136px;
}
footer .con .ftop .fleft .logo a {
  display: block;
}
footer .con .ftop .fleft .logo a img {
  width: 100%;
  height: 70px;
}
footer .con .ftop .fleft .support-box {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
footer .con .ftop .fleft .support-box .support-title {
  font-size: 21px;
  font-weight: 500;
  color: #17395c;
  margin-bottom: 14px;
}
footer .con .ftop .fleft .support-box .support-phone {
  display: flex;
  align-items: center;
  font-size: 28px;
  font-weight: 900;
  color: #17395c;
  margin-bottom: 18px;
}
footer .con .ftop .fleft .support-box .support-phone .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
}
footer .con .ftop .fleft .support-box .support-phone .icon img {
  display: block;
}
footer .con .ftop .fleft .support-box .social-icons {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}
footer .con .ftop .fleft .support-box .social-icons a {
  width: 27px;
  height: 27px;
  background: #17395c;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
footer .con .ftop .fleft .support-box .social-icons a img {
  max-width: 100%;
  filter: brightness(0) invert(1);
  height: 15px;
}
footer .con .ftop .fleft .support-box .social-icons a:hover {
  background: #1dc2d9;
}
footer .con .ftop .fright {
  flex-grow: 1;
}
footer .con .ftop .fright .menu {
  display: flex;
  -moz-column-gap: 100px;
  justify-content: space-between;
}
footer .con .ftop .fright .menu .item .head {
  font-size: 19px;
  font-weight: 700;
  color: #17395c;
  margin-bottom: 15px;
}
footer .con .ftop .fright .menu .item .list ul li a {
  font-size: 15px;
  color: #0f0f0f;
  display: block;
  padding: 4px 0px;
}
footer .con .ftop .fright .menu .item .list ul li a:hover {
  color: #1dc2d9;
}
footer .con .fbottom {
  padding-top: 80px;
}
footer .con .fbottom .fbtext {
  text-align: center;
  font-size: 16px;
  color: #747474;
  font-weight: 500;
  line-height: 20px;
  opacity: 0.85;
}
footer .con .fbottom .fbtext p {
  margin-bottom: 20px;
}
footer .con .fbottom .fbtext p:last-child {
  margin-bottom: 0;
}
footer .con .fbottom .flogos {
  text-align: center;
  padding-top: 42px;
}
footer .con .fbottom .flogos img {
  max-width: 100%;
}

.page-top {
  background-image: url(../img/page-top-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  height: 220px;
  margin-bottom: 30px;
}
.page-top > .container {
  height: 100%;
}
.page-top .con {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  padding-bottom: 16px;
  padding-left: 43px;
}
.page-top .con::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -21px;
  background-image: url(../img/page-bread-icon.png);
  background-repeat: no-repeat;
  background-position: left bottom;
  width: 193px;
  height: 122px;
}
.page-top .con::after {
  content: "";
  position: absolute;
  left: 100px;
  bottom: -15px;
  right: 0;
  background-color: #16b5ca;
  height: 15px;
  border-radius: 8px;
}
.page-top .con h1 {
  font-size: 33px;
  color: #ffffff;
  font-weight: 900;
  position: relative;
  z-index: 2;
}
.page-top .con .bread {
  position: relative;
  z-index: 2;
}
.page-top .con .bread ul {
  display: flex;
}
.page-top .con .bread ul li {
  font-size: 13px;
  color: #ffffff;
  font-weight: 400;
  display: block;
  background-image: url(../img/page-bread-arrow.png);
  background-repeat: no-repeat;
  background-position: left center;
  padding: 4px;
  padding-left: 20px;
}
.page-top .con .bread ul li:first-child {
  background-image: none;
  padding-left: 0;
  padding-right: 10px;
}
.page-top .con .bread ul li a {
  color: #ffffff;
  display: block;
}
.page-content {
  padding: 40px 0;
  background: #fff;
}
.page-content .container {
  max-width: 1200px;
  margin: 0 auto;
}
.page-content .con {
  display: flex;
  flex-direction: row;
  gap: 40px;
}
@media (max-width: 992px) {
  .page-content .con {
    flex-direction: column;
    gap: 24px;
  }
}
.page-content .sidebar {
  flex: 0 0 260px;
}
.page-content .sidebar .sidebarcon {
  border: 1px solid #cbcbcb;
  border-radius: 18px;
  padding: 32px 24px;
}
.page-content .sidebar .sidebarcon ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.page-content .sidebar .sidebarcon ul li {
  display: flex;
  align-items: center;
  font-size: 17px;
  font-weight: 700;
  color: #252525;
  margin-bottom: 18px;
  opacity: 1;
  transition: opacity 0.2s;
}
.page-content .sidebar .sidebarcon ul li.active {
  color: #17395c;
  opacity: 1;
  font-weight: 900;
}
.page-content .sidebar .sidebarcon ul li.active a {
  color: #17395c;
  font-weight: 800;
}
.page-content .sidebar .sidebarcon ul li.active::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #17395c;
  border-radius: 50%;
  margin-right: 10px;
}
.page-content .sidebar .sidebarcon ul li:not(.active) {
  color: #b5b5b5;
  font-weight: 500;
}
.page-content .sidebar .sidebarcon ul li:not(.active)::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #b5b5b5;
  border-radius: 50%;
  margin-right: 10px;
}
.page-content .sidebar .sidebarcon ul li a {
  color: #252525;
  display: block;
}
@media (max-width: 992px) {
  .page-content .sidebar {
    flex: 1 1 100%;
    padding: 18px 12px;
  }
}
.page-content .main-content {
  flex: 1;
  padding: 0 10px;
}
.page-content .main-content h1 {
  font-size: 2.1rem;
  font-weight: 900;
  color: #17395c;
  margin-bottom: 24px;
  line-height: 1.2;
}
.page-content .main-content .paragraph {
  font-size: 1.08rem;
  color: #17395c;
  opacity: 1;
  line-height: 1.7;
  margin-bottom: 18px;
  font-weight: 400;
}
.page-content .main-content .paragraph p {
  margin-bottom: 18px;
}
.page-content .main-content .paragraph p:last-child {
  margin-bottom: 0;
}

.page-top-psikolog {
  background-image: url(../img/page-top-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  height: 220px;
  margin-bottom: 30px;
}
.page-top-psikolog > .container {
  height: 100%;
}

.page-psikolog .con {
  display: flex;
  margin-top: -129px;
  -moz-column-gap: 40px;
       column-gap: 40px;
}
.page-psikolog .con .pleft .plcon .profile-picture {
  position: relative;
}
.page-psikolog .con .pleft .plcon .profile-picture .img img {
  border: 10px solid #fff;
  width: 206px;
  height: 206px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-psikolog .con .pleft .plcon .profile-picture .video-icon {
  position: absolute;
  bottom: 13px;
  left: 50%;
  transform: translate(-50%, 50%);
}
.page-psikolog .con .pleft .plcon .profile-picture .video-icon a {
  width: 56px;
  height: 56px;
  background-color: #16b5ca;
  padding: 12px;
  display: block;
  border-radius: 50%;
}
.page-psikolog .con .pleft .plcon .profile-picture .video-icon a:hover {
  background-color: #17395c;
}
.page-psikolog .con .pleft .plcon .profile-picture .video-icon a img {
  max-width: 100%;
}
.page-psikolog .con .pleft .plcon .listings {
  margin-top: 30px;
  position: relative;
  padding-left: 16px;
}
.page-psikolog .con .pleft .plcon .listings::before, .page-psikolog .con .pleft .plcon .listings::after {
  content: "";
  position: absolute;
  top: 0;
  width: 2px;
  height: 100%;
  pointer-events: none;
}
.page-psikolog .con .pleft .plcon .listings::before {
  left: 0px;
  background: linear-gradient(to bottom, #e0e0e0 0%, transparent 100%);
  border-radius: 2px;
}
.page-psikolog .con .pleft .plcon .listings::after {
  right: 0px;
  background: linear-gradient(to bottom, #e0e0e0 0%, transparent 100%);
  border-radius: 2px;
}
.page-psikolog .con .pleft .plcon .listings .item {
  margin-bottom: 30px;
  max-width: 190px;
}
.page-psikolog .con .pleft .plcon .listings .item .ihead {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.page-psikolog .con .pleft .plcon .listings .item .ihead .idesc {
  margin-left: 7px;
  font-size: 14px;
  color: #16b5ca;
  font-weight: 900;
}
.page-psikolog .con .pleft .plcon .listings .item .list p {
  position: relative;
  padding-left: 22px;
  margin-bottom: 19px;
  font-size: 13px;
  color: #2d2d2d;
  font-weight: 700;
  line-height: 14px;
}
.page-psikolog .con .pleft .plcon .listings .item .list p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 10px;
  height: 10px;
  background: #00bcd4;
  border-radius: 50%;
  margin-right: 12px;
  margin-top: 2px;
  flex-shrink: 0;
}
.page-psikolog .con .pleft .plcon .listings .item .list p::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 20px;
  width: 2px;
  height: calc(59% + 0px);
  background: #e0e0e0;
}
.page-psikolog .con .pleft .plcon .listings .item .list p:last-child::after {
  display: none;
}
.page-psikolog .con .pright {
  display: flex;
  -moz-column-gap: 30px;
       column-gap: 30px;
}
.page-psikolog .con .pright .plcont {
  padding-top: 27px;
}
.page-psikolog .con .pright .plcont .plctop .name {
  display: flex;
  align-items: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
  margin-bottom: 10px;
}
.page-psikolog .con .pright .plcont .plctop .name h2 {
  color: #fff;
  font-weight: 800;
  font-size: 26px;
}
.page-psikolog .con .pright .plcont .plctop .name span {
  opacity: 1;
  font-size: 11px;
  color: #8f8f8f;
  font-weight: 900;
  display: flex;
  align-items: center;
  -moz-column-gap: 8px;
       column-gap: 8px;
}
.page-psikolog .con .pright .plcont .plctop .gorev {
  display: flex;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
  color: #fff;
  font-size: 18px;
}
.page-psikolog .con .pright .plcont .plcbot {
  margin-top: 40px;
}
.page-psikolog .con .pright .plcont .plcbot .tags {
  margin-bottom: 20px;
}
.page-psikolog .con .pright .plcont .plcbot .tags .tag {
  display: inline-block;
  background: #f3f3f3;
  color: #b5b5b5;
  font-size: 13px;
  font-weight: 800;
  border-radius: 7px;
  padding: 6px 6px;
  margin-right: 10px;
  margin-bottom: 6px;
  border: 2px solid #dbdbdb;
  letter-spacing: 0.2px;
  transition: background 0.2s, color 0.2s;
}
.page-psikolog .con .pright .plcont .plcbot .tags .tag:last-child {
  margin-right: 0;
}
.page-psikolog .con .pright .plcont .plcbot .psihead {
  display: flex;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
  margin-bottom: 20px;
}
.page-psikolog .con .pright .plcont .plcbot .psihead .idesc {
  font-size: 20px;
  color: #16b5ca;
  font-weight: 900;
}
.page-psikolog .con .pright .plcont .plcbot .psitext {
  margin-bottom: 10px;
}
.page-psikolog .con .pright .plcont .plcbot .psitext p {
  margin-bottom: 15px;
  font-size: 15px;
  color: #151515;
  font-weight: 600;
  line-height: 19px;
}
.page-psikolog .con .pright .plcont .plcbot .psitext p:last-child {
  margin-bottom: 0;
}
.page-psikolog .con .pright .plcont .plcbot .psiwork {
  padding: 35px;
  padding-top: 0;
  padding-bottom: 24px;
  position: relative;
  border: 1px solid #e0e0e0;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  border-top: 0;
}
.page-psikolog .con .pright .plcont .plcbot .psiwork .head {
  font-size: 20px;
  color: #18395c;
  font-weight: 900;
  margin-bottom: 20px;
}
.page-psikolog .con .pright .plcont .plcbot .psiwork .list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.page-psikolog .con .pright .plcont .plcbot .psiwork .list p {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
  color: #151515;
  gap: 12px;
}
.page-psikolog .con .pright .plcont .plcbot .psiwork .list p .check-icon {
  /*width: 28px;
  height: 28px;
  background: #17395c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  img {
    width: 16px;
    height: 16px;
    display: block;
    filter: brightness(0) invert(1);
  }*/
}
.page-psikolog .con .pright .plcalendar .calcon {
  width: 315px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 32px 0 rgba(23, 57, 92, 0.12);
  padding: 23px 24px 22px 24px;
}
.page-psikolog .con .pright .plcalendar .calcon .head {
  text-align: center;
  margin-bottom: 18px;
  border-bottom: 2px solid #e0e0e0;
  padding-bottom: 16px;
  margin-bottom: 10px;
}
.page-psikolog .con .pright .plcalendar .calcon .head .title {
  font-size: 1.6rem;
  font-weight: 900;
  color: #17395c;
  margin-bottom: 7px;
}
.page-psikolog .con .pright .plcalendar .calcon .head .subs {
  font-size: 13px;
  color: #787878;
  opacity: 1;
  margin-bottom: 0;
  font-weight: 500;
}
.page-psikolog .con .pright .plcalendar .calcon .mycalendar .calendar-widget {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 18px;
  position: relative;
}
.page-psikolog .con .pright .plcalendar .calcon .mycalendar .calendar-widget .btn-go-prev {
  position: absolute;
  left: -53px;
  top: -11px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 2px 12px rgba(23, 57, 92, 0.2);
  font-size: 36px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #676767;
}
.page-psikolog .con .pright .plcalendar .calcon .mycalendar .calendar-widget .btn-go-prev a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #676767;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.page-psikolog .con .pright .plcalendar .calcon .mycalendar .calendar-widget .btn-go-prev a:hover {
  background-color: #f0f0f0;
}
.page-psikolog .con .pright .plcalendar .calcon .mycalendar .calendar-widget .btn-go-next {
  position: absolute;
  right: -53px;
  top: -11px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 2px 12px rgba(23, 57, 92, 0.1);
  font-size: 20px;
  font-size: 36px;
  background-color: #fff;
}
.page-psikolog .con .pright .plcalendar .calcon .mycalendar .calendar-widget .btn-go-next a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #676767;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.page-psikolog .con .pright .plcalendar .calcon .mycalendar .calendar-widget .btn-go-next a:hover {
  background-color: #f0f0f0;
}
.page-psikolog .con .pright .plcalendar .calcon .mycalendar .calendar-widget .calendar-year {
  text-align: center;
  font-size: 20px;
  font-weight: 900;
  color: #17395c;
  margin-bottom: 15px;
}
.page-psikolog .con .pright .plcalendar .calcon .mycalendar .calendar-widget .calendar-days {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 12px;
  width: 100%;
}
@media (max-width: 600px) {
  .page-psikolog .con .pright .plcalendar .calcon .mycalendar .calendar-widget .calendar-days {
    grid-template-columns: 1fr;
  }
}
.page-psikolog .con .pright .plcalendar .calcon .mycalendar .calendar-widget .calendar-days .day {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page-psikolog .con .pright .plcalendar .calcon .mycalendar .calendar-widget .calendar-days .day .day-title {
  font-weight: 900;
  font-size: 20px;
  color: #17395c;
  margin-bottom: 8px;
  text-align: center;
}
.page-psikolog .con .pright .plcalendar .calcon .mycalendar .calendar-widget .calendar-days .day .day-title .date {
  font-size: 11px;
  color: #888;
  font-weight: 500;
  white-space: nowrap;
}
.page-psikolog .con .pright .plcalendar .calcon .mycalendar .calendar-widget .calendar-days .day .slots {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
  align-items: center;
}
.page-psikolog .con .pright .plcalendar .calcon .mycalendar .calendar-widget .calendar-days .day .slots .slot {
  width: 100%;
  height: 26px;
  background: #fff;
  border: none;
  border-radius: 8px;
  border: 2px solid #dcdcdc;
  color: #17395c;
  font-weight: 900;
  font-size: 13px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.page-psikolog .con .pright .plcalendar .calcon .mycalendar .calendar-widget .calendar-days .day .slots .slot:hover {
  background: #f0f0f0;
  color: #17395c;
}
.page-psikolog .con .pright .plcalendar .calcon .mycalendar .calendar-widget .calendar-days .day .slots .slot.active {
  background: #e5e5e5;
  color: #aaa;
  cursor: not-allowed;
}
.page-psikolog .con .pright .plcalendar .calcon .mycalendar .calendar-widget .calendar-days .day .slots .slot.disabled {
  background: #e5e5e5;
  color: #aaa;
  cursor: not-allowed;
}
.page-psikolog .con .pright .plcalendar .calcon .mycalendar .calendar-widget .calendar-days .day .slots .slot.selected {
  background: #18b5ca;
  color: #fff;
  border: 2px solid #18b5ca;
}
.page-psikolog .con .pright .plcalendar .calcon .mycalendar .calendar-widget .calendar-info {
  font-size: 11px;
  font-weight: 500;
  color: #888;
  margin: 10px 0 18px 0;
  text-align: center;
}
.page-psikolog .con .pright .plcalendar .calcon .mycalendar .calendar-widget .calendar-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #18b5ca;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  border: none;
  border-radius: 12px;
  padding: 14px 0;
  width: 100%;
  max-width: 260px;
  margin: 0 auto;
  cursor: pointer;
  transition: background 0.2s;
  box-shadow: 0 2px 12px rgba(23, 57, 92, 0.1);
}
.page-psikolog .con .pright .plcalendar .calcon .mycalendar .calendar-widget .calendar-btn:hover {
  background: #17395c;
}
.page-psikolog .con .pright .plcalendar .calcon .mycalendar .calendar-widget .calendar-btn svg,
.page-psikolog .con .pright .plcalendar .calcon .mycalendar .calendar-widget .calendar-btn img {
  margin-right: 8px;
}
.page-psikolog .con .pright .plcalendar .cal-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 30px;
}
.page-psikolog .con .pright .plcalendar .cal-gallery .item a {
  display: block;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(23, 57, 92, 0.1);
  transition: box-shadow 0.2s;
}
.page-psikolog .con .pright .plcalendar .cal-gallery .item a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 24px;
  display: block;
}
.page-psikolog .con .pright .plcalendar .cal-gallery .item a:hover {
  box-shadow: 0 4px 18px rgba(23, 57, 92, 0.18);
}

.psikolog-randevu-page {
  padding: 60px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  min-height: 80vh;
}
.psikolog-randevu-page .con {
  margin: 0 auto;
}
.psikolog-randevu-page .appointment-summary {
  background: white;
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid #e9ecef;
}
.psikolog-randevu-page .appointment-summary .psychologist-info {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #e9ecef;
}
.psikolog-randevu-page .appointment-summary .psychologist-info .psychologist-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 20px;
  border: 3px solid #17395c;
}
.psikolog-randevu-page .appointment-summary .psychologist-info .psychologist-avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.psikolog-randevu-page .appointment-summary .psychologist-info .psychologist-details h3 {
  margin: 0 0 5px 0;
  color: #2c3e50;
  font-size: 20px;
  font-weight: 600;
}
.psikolog-randevu-page .appointment-summary .psychologist-info .psychologist-details .specialty {
  margin: 0;
  color: #6c757d;
  font-size: 14px;
}
.psikolog-randevu-page .appointment-summary .appointment-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.psikolog-randevu-page .appointment-summary .appointment-details .appointment-date,
.psikolog-randevu-page .appointment-summary .appointment-details .appointment-time {
  display: flex;
  align-items: center;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 12px;
  border-left: 4px solid #17395c;
}
.psikolog-randevu-page .appointment-summary .appointment-details .appointment-date i,
.psikolog-randevu-page .appointment-summary .appointment-details .appointment-time i {
  font-size: 24px;
  color: #17395c;
  margin-right: 15px;
}
.psikolog-randevu-page .appointment-summary .appointment-details .appointment-date .date-info .label,
.psikolog-randevu-page .appointment-summary .appointment-details .appointment-date .time-info .label,
.psikolog-randevu-page .appointment-summary .appointment-details .appointment-time .date-info .label,
.psikolog-randevu-page .appointment-summary .appointment-details .appointment-time .time-info .label {
  display: block;
  font-size: 12px;
  color: #6c757d;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}
.psikolog-randevu-page .appointment-summary .appointment-details .appointment-date .date-info .value,
.psikolog-randevu-page .appointment-summary .appointment-details .appointment-date .time-info .value,
.psikolog-randevu-page .appointment-summary .appointment-details .appointment-time .date-info .value,
.psikolog-randevu-page .appointment-summary .appointment-details .appointment-time .time-info .value {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #2c3e50;
}
.psikolog-randevu-page .appointment-form-container {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid #e9ecef;
}
.psikolog-randevu-page .appointment-form-container .form-header {
  text-align: center;
  margin-bottom: 40px;
}
.psikolog-randevu-page .appointment-form-container .form-header h2 {
  margin: 0 0 10px 0;
  color: #2c3e50;
  font-size: 28px;
  font-weight: 600;
}
.psikolog-randevu-page .appointment-form-container .form-header p {
  margin: 0;
  color: #6c757d;
  font-size: 16px;
}
.psikolog-randevu-page .appointment-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media screen and (max-width: 992px) {
  .psikolog-randevu-page .appointment-form {
    display: block;
  }
}
.psikolog-randevu-page .appointment-form .form-group {
  margin-bottom: 25px;
}
.psikolog-randevu-page .appointment-form .form-group label {
  display: block;
  margin-bottom: 8px;
  color: #2c3e50;
  font-weight: 600;
  font-size: 14px;
}
.psikolog-randevu-page .appointment-form .form-group label .required {
  color: #dc3545;
  margin-left: 3px;
}
.psikolog-randevu-page .appointment-form .form-group input[type=text],
.psikolog-randevu-page .appointment-form .form-group input[type=tel],
.psikolog-randevu-page .appointment-form .form-group input[type=email],
.psikolog-randevu-page .appointment-form .form-group textarea {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  font-size: 16px;
  transition: all 0.3s ease;
  background: #f8f9fa;
}
.psikolog-randevu-page .appointment-form .form-group input[type=text]:focus,
.psikolog-randevu-page .appointment-form .form-group input[type=tel]:focus,
.psikolog-randevu-page .appointment-form .form-group input[type=email]:focus,
.psikolog-randevu-page .appointment-form .form-group textarea:focus {
  outline: none;
  border-color: #007bff;
  background: white;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}
.psikolog-randevu-page .appointment-form .form-group input[type=text].error,
.psikolog-randevu-page .appointment-form .form-group input[type=tel].error,
.psikolog-randevu-page .appointment-form .form-group input[type=email].error,
.psikolog-randevu-page .appointment-form .form-group textarea.error {
  border-color: #dc3545;
  background: #fff5f5;
}
.psikolog-randevu-page .appointment-form .form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.psikolog-randevu-page .appointment-form .form-group .error-message {
  display: block;
  color: #dc3545;
  font-size: 13px;
  margin-top: 5px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.psikolog-randevu-page .appointment-form .form-group .error-message.show {
  opacity: 1;
}
.psikolog-randevu-page .appointment-form .form-actions {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  margin-top: 40px;
  grid-column: auto/span 2;
  grid-row: auto/span 2;
}
.psikolog-randevu-page .appointment-form .form-actions .btn {
  padding: 15px 30px;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.psikolog-randevu-page .appointment-form .form-actions .btn i {
  font-size: 18px;
}
.psikolog-randevu-page .appointment-form .form-actions .btn.btn-secondary {
  background: #6c757d;
  color: white;
  flex: 0 0 auto;
}
.psikolog-randevu-page .appointment-form .form-actions .btn.btn-secondary:hover {
  background: #5a6268;
  transform: translateY(-2px);
}
.psikolog-randevu-page .appointment-form .form-actions .btn.btn-primary {
  background: #18b5ca;
  color: white;
}
.psikolog-randevu-page .appointment-form .form-actions .btn.btn-primary:hover {
  background: #17395c;
  transform: translateY(-2px);
}
.psikolog-randevu-page .appointment-form .form-actions .btn.btn-primary:disabled {
  background: #6c757d;
  cursor: not-allowed;
  transform: none;
}
.psikolog-randevu-page .appointment-payment-form .payment-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}
@media screen and (max-width: 992px) {
  .psikolog-randevu-page .appointment-payment-form .payment-form-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.psikolog-randevu-page .appointment-payment-form .payment-form-grid .form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.psikolog-randevu-page .appointment-payment-form .payment-form-grid .form-group.full-width {
  grid-column: 1/-1;
}
.psikolog-randevu-page .appointment-payment-form .payment-form-grid .form-group label {
  color: #2c3e50;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 4px;
}
.psikolog-randevu-page .appointment-payment-form .payment-form-grid .form-group label .required {
  color: #dc3545;
  margin-left: 2px;
}
.psikolog-randevu-page .appointment-payment-form .payment-form-grid .form-group input,
.psikolog-randevu-page .appointment-payment-form .payment-form-grid .form-group select {
  padding: 14px 16px;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  font-size: 16px;
  font-family: "Urbanist", sans-serif;
  transition: all 0.3s ease;
  background: white;
  color: #2c3e50;
}
.psikolog-randevu-page .appointment-payment-form .payment-form-grid .form-group input:focus,
.psikolog-randevu-page .appointment-payment-form .payment-form-grid .form-group select:focus {
  outline: none;
  border-color: #17395c;
  box-shadow: 0 0 0 3px rgba(23, 57, 92, 0.1);
  transform: translateY(-1px);
}
.psikolog-randevu-page .appointment-payment-form .payment-form-grid .form-group input.error,
.psikolog-randevu-page .appointment-payment-form .payment-form-grid .form-group select.error {
  border-color: #dc3545;
  background-color: #ffeaea;
}
.psikolog-randevu-page .appointment-payment-form .payment-form-grid .form-group input::-moz-placeholder, .psikolog-randevu-page .appointment-payment-form .payment-form-grid .form-group select::-moz-placeholder {
  color: #adb5bd;
  font-weight: 400;
}
.psikolog-randevu-page .appointment-payment-form .payment-form-grid .form-group input::placeholder,
.psikolog-randevu-page .appointment-payment-form .payment-form-grid .form-group select::placeholder {
  color: #adb5bd;
  font-weight: 400;
}
.psikolog-randevu-page .appointment-payment-form .payment-form-grid .form-group .expiry-date-group {
  display: flex;
  gap: 12px;
}
.psikolog-randevu-page .appointment-payment-form .payment-form-grid .form-group .expiry-date-group select {
  flex: 1;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
  padding-right: 40px;
}
.psikolog-randevu-page .appointment-payment-form .payment-form-grid .form-group .error-message {
  color: #dc3545;
  font-size: 12px;
  font-weight: 500;
  margin-top: 4px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.psikolog-randevu-page .appointment-payment-form .payment-form-grid .form-group .error-message.show {
  opacity: 1;
}
.psikolog-randevu-page .appointment-payment-form .payment-amount {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 30px;
  text-align: center;
  border: 1px solid #dee2e6;
}
.psikolog-randevu-page .appointment-payment-form .payment-amount .amount-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}
.psikolog-randevu-page .appointment-payment-form .payment-amount .amount-info .amount-label {
  font-size: 18px;
  font-weight: 600;
  color: #2c3e50;
}
.psikolog-randevu-page .appointment-payment-form .payment-amount .amount-info .amount-value {
  font-size: 28px;
  font-weight: 800;
  color: #17395c;
  background: linear-gradient(135deg, #17395c 0%, #1e4c7b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.psikolog-randevu-page .appointment-payment-form .form-actions {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.psikolog-randevu-page .appointment-payment-form .form-actions .btn-payment {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  color: white;
  border: none;
  padding: 18px 40px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 250px;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
  position: relative;
  overflow: hidden;
}
.psikolog-randevu-page .appointment-payment-form .form-actions .btn-payment::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}
.psikolog-randevu-page .appointment-payment-form .form-actions .btn-payment:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
  background: linear-gradient(135deg, #218838 0%, #1abc9c 100%);
}
.psikolog-randevu-page .appointment-payment-form .form-actions .btn-payment:hover::before {
  left: 100%;
}
.psikolog-randevu-page .appointment-payment-form .form-actions .btn-payment:active {
  transform: translateY(0);
}
.psikolog-randevu-page .appointment-payment-form .form-actions .btn-payment:disabled {
  background: #6c757d;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.psikolog-randevu-page .appointment-payment-form .form-actions .btn-payment:disabled:hover {
  transform: none;
  box-shadow: none;
}
.psikolog-randevu-page .appointment-payment-form .form-actions .btn-payment i {
  font-size: 20px;
}
.psikolog-randevu-page .success-message {
  background: white;
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid #e9ecef;
}
.psikolog-randevu-page .success-message .success-icon {
  margin-bottom: 20px;
}
.psikolog-randevu-page .success-message .success-icon i {
  font-size: 60px;
  color: #28a745;
}
.psikolog-randevu-page .success-message h3 {
  margin: 0 0 15px 0;
  color: #2c3e50;
  font-size: 24px;
  font-weight: 600;
}
.psikolog-randevu-page .success-message p {
  margin: 0 0 30px 0;
  color: #6c757d;
  font-size: 16px;
}
.psikolog-randevu-page .success-message .btn {
  padding: 15px 30px;
  background: #16b5ca;
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}
.psikolog-randevu-page .success-message .btn:hover {
  background: #17395c;
  transform: translateY(-2px);
}
.psikolog-randevu-page .loading {
  opacity: 0.6;
  pointer-events: none;
}
.psikolog-randevu-page .loading .btn {
  position: relative;
}
.psikolog-randevu-page .loading .btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid transparent;
  border-top: 2px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media (max-width: 768px) {
  .psikolog-randevu-page {
    padding: 30px 0;
  }
  .psikolog-randevu-page .con {
    padding: 0 15px;
  }
  .psikolog-randevu-page .appointment-summary {
    padding: 20px;
  }
  .psikolog-randevu-page .appointment-summary .psychologist-info {
    flex-direction: column;
    text-align: center;
  }
  .psikolog-randevu-page .appointment-summary .psychologist-info .psychologist-avatar {
    margin: 0 0 15px 0;
  }
  .psikolog-randevu-page .appointment-summary .appointment-details {
    grid-template-columns: 1fr;
  }
  .psikolog-randevu-page .appointment-form-container {
    padding: 25px;
  }
  .psikolog-randevu-page .appointment-form-container .form-header h2 {
    font-size: 24px;
  }
  .psikolog-randevu-page .appointment-form .form-actions {
    flex-direction: column;
  }
  .psikolog-randevu-page .appointment-form .form-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

.page-kurumsal {
  padding: 40px 0;
  padding-bottom: 0;
}
.page-kurumsal .kurumsal-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}
.page-kurumsal .kurumsal-left {
  flex: 1 1 55%;
  min-width: 320px;
}
.page-kurumsal .kurumsal-left h2 {
  color: #18405a;
  font-size: 2.2rem;
  font-weight: 400;
  margin-bottom: 18px;
  line-height: 1.2;
}
.page-kurumsal .kurumsal-left p {
  color: #1a1a1a;
  font-size: 1rem;
  margin-bottom: 22px;
  font-weight: 400;
}
.page-kurumsal .kurumsal-left .kurumsal-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
}
.page-kurumsal .kurumsal-left .kurumsal-checklist li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
}
.page-kurumsal .kurumsal-left .kurumsal-checklist li .icon {
  display: flex;
  align-items: center;
}
.page-kurumsal .kurumsal-left .kurumsal-checklist li .icon span {
  color: #16b5ca;
  font-size: 1.2rem;
  font-weight: 600;
  padding-left: 7px;
}
.page-kurumsal .kurumsal-left .kurumsal-checklist li p {
  color: #1a1a1a;
  font-size: 1rem;
  font-weight: 400;
  margin: 4px 0 0 0;
}
.page-kurumsal .kurumsal-left .kurumsal-info-box {
  position: relative;
  margin-top: 30px;
}
.page-kurumsal .kurumsal-left .kurumsal-info-box .kurumsal-info-bg {
  max-width: 100%;
  border-radius: 12px;
  opacity: 1;
  display: block;
}
.page-kurumsal .kurumsal-left .kurumsal-info-box .kurumsal-info-text {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  padding: 32px 24px;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 500;
}
.page-kurumsal .kurumsal-left .kurumsal-info-box .kurumsal-info-text span {
  background: rgba(0, 130, 201, 0.85);
  border-radius: 10px;
  padding: 18px 16px 10px 16px;
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 500;
}
.page-kurumsal .kurumsal-left .kurumsal-info-box .kurumsal-info-text small {
  margin-top: 10px;
  font-size: 0.95rem;
  opacity: 0.85;
}
.page-kurumsal .kurumsal-right {
  flex: 1 1 38%;
  min-width: 280px;
}
.page-kurumsal .kurumsal-right .kurumsal-image {
  width: 100%;
  margin-bottom: 22px;
}
.page-kurumsal .kurumsal-right .kurumsal-image img {
  width: 100%;
  border-radius: 14px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.page-kurumsal .kurumsal-right .kurumsal-service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.page-kurumsal .kurumsal-right .kurumsal-service-list li {
  display: flex;
  align-items: center;
  gap: 18px;
  border: 1px solid #dedede;
  border-radius: 10px;
  margin-bottom: 16px;
  padding: 7px 11px;
  font-size: 1.1rem;
  color: #18405a;
  font-weight: 500;
}
.page-kurumsal .kurumsal-right .kurumsal-service-list li img {
  width: 50px;
  height: 50px;
  background-color: #17395c;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  padding: 13px;
  border-radius: 6px;
}
.page-kurumsal .kurumsal-right .kurumsal-service-list li b {
  color: #18405a;
}
@media (max-width: 900px) {
  .page-kurumsal .kurumsal-flex {
    flex-direction: column;
    gap: 28px;
  }
  .page-kurumsal .kurumsal-left,
  .page-kurumsal .kurumsal-right {
    min-width: 0;
  }
}

.neden-selfyup {
  margin-top: 60px;
}
.neden-selfyup .con {
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding: 0 0 40px 0;
}
.neden-selfyup .neden-selfyup-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 36px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.neden-selfyup .neden-selfyup-header-text {
  flex: 1 1 350px;
  min-width: 260px;
  padding-top: 32px;
}
.neden-selfyup .neden-selfyup-header-text h2 {
  font-size: 2.2rem;
  font-weight: 400;
  color: #17395c;
  margin-bottom: 18px;
  line-height: 1.15;
}
.neden-selfyup .neden-selfyup-header-text h2 .hashtag {
  color: #17395c;
  font-weight: 900;
  font-size: 2.1rem;
  letter-spacing: 0.5px;
}
.neden-selfyup .neden-selfyup-header-text p {
  font-size: 1.1rem;
  color: #1a1a1a;
  opacity: 0.85;
  margin-bottom: 0;
}
.neden-selfyup .neden-selfyup-header-text p b {
  font-weight: 900;
  color: #1a1a1a;
}
.neden-selfyup .neden-selfyup-header-image {
  flex: 0 0 48%;
}
@media (max-width: 992px) {
  .neden-selfyup .neden-selfyup-header-image {
    flex: 0 0 100%;
  }
}
.neden-selfyup .neden-selfyup-header-image img {
  width: 100%;
  height: auto;
  border-radius: 24px;
}
.neden-selfyup .neden-selfyup-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 32px;
  margin-top: 10px;
}
@media (max-width: 992px) {
  .neden-selfyup .neden-selfyup-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.neden-selfyup .neden-selfyup-feature {
  display: flex;
  align-items: flex-start;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(23, 57, 92, 0.07);
  padding: 28px 28px 24px 28px;
  gap: 22px;
  min-height: 140px;
}
@media (max-width: 600px) {
  .neden-selfyup .neden-selfyup-feature {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 18px 12px;
    gap: 12px;
  }
}
.neden-selfyup .neden-selfyup-feature .icon {
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  background: #16b5ca;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
}
.neden-selfyup .neden-selfyup-feature .icon img {
  max-width: 100%;
}
.neden-selfyup .neden-selfyup-feature .feature-content {
  flex: 1;
}
.neden-selfyup .neden-selfyup-feature .feature-content h3 {
  font-size: 1.18rem;
  font-weight: 400;
  color: #17395c;
  margin-bottom: 8px;
}
.neden-selfyup .neden-selfyup-feature .feature-content h3 b {
  font-weight: 900;
  color: #17395c;
}
.neden-selfyup .neden-selfyup-feature .feature-content p {
  font-size: 0.98rem;
  color: #1a1a1a;
  opacity: 0.85;
  margin-bottom: 0;
}

.page-uzmanlik {
  margin-top: 60px;
  margin-bottom: 60px;
}
.page-uzmanlik .con .uzmanlik-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 24px;
}
.page-uzmanlik .con .uzmanlik-tabs {
  display: flex;
  gap: 24px;
}
.page-uzmanlik .con .uzmanlik-tab {
  display: flex;
  align-items: center;
  background: #fff;
  border: 3px solid #f1f1f1;
  border-radius: 12px;
  padding: 13px 23px 13px 23px;
  min-width: 180px;
  cursor: pointer;
  color: #bfc6ce;
  font-weight: 600;
  font-size: 1.1rem;
  transition: border 0.2s, color 0.2s, box-shadow 0.2s;
  background-color: #fff;
  position: relative;
  height: 60px;
}
.page-uzmanlik .con .uzmanlik-tab img {
  max-width: 100%;
  filter: grayscale(1) opacity(0.5);
  transition: filter 0.2s;
}
.page-uzmanlik .con .uzmanlik-tab span {
  padding-left: 10px;
}
.page-uzmanlik .con .uzmanlik-tab::before, .page-uzmanlik .con .uzmanlik-tab::after {
  content: "";
  display: block;
  position: absolute;
  width: 3px;
  height: 15px;
  background: #f1f1f1;
  top: 100%;
  opacity: 0;
  transition: opacity 0.2s;
}
.page-uzmanlik .con .uzmanlik-tab::before {
  left: -3px;
}
.page-uzmanlik .con .uzmanlik-tab::after {
  right: -3px;
}
.page-uzmanlik .con .uzmanlik-tab.active::before, .page-uzmanlik .con .uzmanlik-tab.active::after {
  opacity: 1;
}
.page-uzmanlik .con .uzmanlik-tab .uzmanlik-tab-content {
  display: flex;
  align-items: center;
  position: relative;
}
.page-uzmanlik .con .uzmanlik-tab .mycizgi {
  position: absolute;
  bottom: -16px;
  left: 0;
  right: 0;
  height: 3px;
  background-color: #fff;
}
.page-uzmanlik .con .uzmanlik-tab.active {
  color: #17395c;
  border-bottom: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  position: relative;
}
.page-uzmanlik .con .uzmanlik-tab.active img {
  filter: none;
}
.page-uzmanlik .con .uzmanlik-tab.active .uzmanlik-tab-content::after {
  content: "";
  display: block;
  height: 3px;
  width: 100%;
  background: #17395c;
  border-radius: 2px;
  position: absolute;
  left: 0;
  bottom: -12px;
}
.page-uzmanlik .con .uzmanlik-sort {
  margin-left: auto;
  display: flex;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
.page-uzmanlik .con .uzmanlik-sort .sort-dropdown-wrapper {
  position: relative;
  display: inline-block;
}
.page-uzmanlik .con .uzmanlik-sort .sort-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1.5px solid #444444;
  border-radius: 10px;
  color: #000;
  font-weight: 700;
  font-size: 1rem;
  padding: 8px 18px;
  outline: none;
  cursor: pointer;
  transition: border 0.2s, color 0.2s;
}
.page-uzmanlik .con .uzmanlik-sort .sort-btn.active, .page-uzmanlik .con .uzmanlik-sort .sort-btn:hover {
  border: 1.5px solid #17395c;
  color: #17395c;
}
.page-uzmanlik .con .uzmanlik-sort .sort-btn img {
  width: 20px;
  height: 20px;
  opacity: 1;
}
.page-uzmanlik .con .uzmanlik-sort .sort-btn svg {
  margin-left: 4px;
  opacity: 1;
}
.page-uzmanlik .con .uzmanlik-sort .sort-dropdown {
  position: absolute;
  top: 110%;
  left: 0;
  min-width: 180px;
  background: #fff;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(23, 57, 92, 0.08);
  z-index: 20;
  padding: 6px 0;
}
.page-uzmanlik .con .uzmanlik-sort .sort-dropdown .sort-option {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 10px 18px;
  font-size: 1rem;
  color: #17395c;
  cursor: pointer;
  transition: background 0.15s;
}
.page-uzmanlik .con .uzmanlik-sort .sort-dropdown .sort-option:hover {
  background: #f2f8fa;
}
.page-uzmanlik .con .uzmanlik-sort .sort-filter {
  position: relative;
}
.page-uzmanlik .con .uzmanlik-sort .sort-filter .filter-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1.5px solid #444444;
  border-radius: 10px;
  color: #000000;
  font-weight: 700;
  font-size: 1rem;
  padding: 8px 18px;
  outline: none;
  cursor: pointer;
  transition: border 0.2s, color 0.2s;
}
.page-uzmanlik .con .uzmanlik-sort .sort-filter .filter-btn.active, .page-uzmanlik .con .uzmanlik-sort .sort-filter .filter-btn:hover {
  border: 1.5px solid #17395c;
  color: #17395c;
}
.page-uzmanlik .con .uzmanlik-sort .sort-filter .filter-dropdown {
  padding: 30px 24px;
  padding-bottom: 20px;
  width: 290px;
  position: absolute;
  right: -130px;
  top: 60px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.28);
  background: #fff;
  border-radius: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  will-change: opacity, transform;
}
.page-uzmanlik .con .uzmanlik-sort .sort-filter .filter-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  animation: dropdown-up 0.32s cubic-bezier(0.2, 0.9, 0.2, 1);
}
@keyframes dropdown-up {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  60% {
    opacity: 1;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.page-uzmanlik .con .uzmanlik-sort .sort-filter .filter-dropdown form .item {
  margin-bottom: 15px;
}
.page-uzmanlik .con .uzmanlik-sort .sort-filter .filter-dropdown form .item .ihead {
  font-weight: 600;
  margin-bottom: 4px;
}
.page-uzmanlik .con .uzmanlik-sort .sort-filter .filter-dropdown form .item .select-control select {
  width: 100%;
  padding: 8px 12px;
  border: 1.5px solid #d1d5db;
  border-radius: 8px;
  outline: none;
  font-size: 1rem;
  color: #17395c;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: url("../img/dropdown-arrow.png") no-repeat right 12px center/16px 16px #fff;
}
.page-uzmanlik .con .uzmanlik-sort .sort-filter .filter-dropdown form .item .select-control select:focus {
  border-color: #17395c;
}
.page-uzmanlik .con .uzmanlik-sort .sort-filter .filter-dropdown form .filter-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 20px;
}
.page-uzmanlik .con .uzmanlik-sort .sort-filter .filter-dropdown form .filter-actions .filter-remove-btn {
  background: #f5f5f7;
  color: #222;
  border: none;
  border-radius: 8px;
  padding: 10px 15px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s;
  font-weight: 600;
}
.page-uzmanlik .con .uzmanlik-sort .sort-filter .filter-dropdown form .filter-actions .filter-remove-btn:hover {
  background: #e0e0e0;
}
.page-uzmanlik .con .uzmanlik-sort .sort-filter .filter-dropdown form .filter-actions .filter-apply-btn {
  background: #17395c;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 10px 15px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.page-uzmanlik .con .uzmanlik-sort .sort-filter .filter-dropdown form .filter-actions .filter-apply-btn:hover {
  background: #18b5ca;
}
@media (max-width: 900px) {
  .page-uzmanlik .con .uzmanlik-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .page-uzmanlik .con .uzmanlik-tabs {
    width: 100%;
    justify-content: flex-start;
    gap: 12px;
    display: block;
  }
  .page-uzmanlik .con .uzmanlik-tab {
    min-width: 120px;
    padding: 12px 10px 8px 10px;
    font-size: 0.98rem;
    margin-bottom: 10px;
  }
  .page-uzmanlik .con .uzmanlik-tab.active {
    border-bottom: 3px solid #f1f1f1;
  }
  .page-uzmanlik .con .uzmanlik-tab.active::before, .page-uzmanlik .con .uzmanlik-tab.active::after {
    display: none;
  }
  .page-uzmanlik .con .uzmanlik-sort {
    width: 100%;
    display: none;
  }
  .page-uzmanlik .con .uzmanlik-sort .sort-btn {
    width: 100%;
    justify-content: center;
  }
}
.page-uzmanlik .con .uzmanlik-search {
  display: flex;
  align-items: center;
  margin-top: -11px;
}
.page-uzmanlik .con .uzmanlik-search .search-box {
  display: flex;
  align-items: center;
  background: #fff;
  border: 3px solid #f1f1f1;
  border-radius: 8px;
  padding: 0 16px;
  height: 67px;
  width: 100%;
}
.page-uzmanlik .con .uzmanlik-search .search-box input[type=text] {
  border: none;
  outline: none;
  font-size: 16px;
  color: #6b7280;
  background: transparent;
  flex: 1;
  padding: 0 8px;
  font-weight: 600;
}
.page-uzmanlik .con .uzmanlik-search .search-box input[type=text]::-moz-placeholder {
  color: #a1a4a8;
  font-weight: 600;
}
.page-uzmanlik .con .uzmanlik-search .search-box input[type=text]::placeholder {
  color: #a1a4a8;
  font-weight: 600;
}
.page-uzmanlik .con .uzmanlik-search .search-box .search-icon {
  width: 24px;
  height: 24px;
  margin-right: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-uzmanlik .con .uzmanlik-search .search-box .search-btn {
  background: #17395c;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 0 20px;
  height: 36px;
  font-size: 15px;
  font-weight: 700;
  margin-left: 12px;
  cursor: pointer;
  transition: background 0.2s;
}
.page-uzmanlik .con .uzmanlik-search .search-box .search-btn:hover {
  background: #10263d;
}
.page-uzmanlik .con .uzmanlik-list .uzman-page {
  display: none;
}
.page-uzmanlik .con .uzmanlik-list .uzman-page.active {
  display: block;
}
.page-uzmanlik .con .uzmanlik-list .uzman-page .list .team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 32px;
  margin-top: 32px;
}
.page-uzmanlik .con .uzmanlik-list .uzman-page .list .team-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 32px 0 rgba(23, 57, 92, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  padding: 0;
  min-height: 210px;
  overflow: hidden;
}
.page-uzmanlik .con .uzmanlik-list .uzman-page .list .team-card-left {
  display: flex;
  padding: 18px;
  flex: 1;
  gap: 18px;
}
.page-uzmanlik .con .uzmanlik-list .uzman-page .list .team-img {
  position: relative;
  width: 172px;
  height: 172px;
  border-radius: 16px;
}
.page-uzmanlik .con .uzmanlik-list .uzman-page .list .team-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
}
.page-uzmanlik .con .uzmanlik-list .uzman-page .list .team-img .team-video-btn {
  position: absolute;
  left: 50%;
  bottom: -15px;
  transform: translateX(-50%);
  background: #1dc2d9;
  border-radius: 50%;
  width: 43px;
  height: 43px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(23, 57, 92, 0.1);
}
.page-uzmanlik .con .uzmanlik-list .uzman-page .list .team-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex-grow: 1;
}
.page-uzmanlik .con .uzmanlik-list .uzman-page .list .team-info .team-name {
  font-size: 1.25rem;
  font-weight: 900;
  color: #17395c;
}
.page-uzmanlik .con .uzmanlik-list .uzman-page .list .team-info .team-name .team-verified {
  display: inline-block;
  width: 14px;
  height: 14px;
  background: url("../img/verified.png") no-repeat center center;
  background-size: contain;
  vertical-align: middle;
  margin-left: 6px;
}
.page-uzmanlik .con .uzmanlik-list .uzman-page .list .team-info .team-title {
  font-weight: 500;
  margin-bottom: 2px;
  font-size: 14px;
  color: #747474;
}
.page-uzmanlik .con .uzmanlik-list .uzman-page .list .team-info .team-date {
  font-size: 12px;
  color: #152e48;
  font-weight: 700;
}
.page-uzmanlik .con .uzmanlik-list .uzman-page .list .team-info .team-tags {
  display: flex;
  align-items: flex-end;
  flex-grow: 1;
  width: 100%;
}
.page-uzmanlik .con .uzmanlik-list .uzman-page .list .team-info .team-tags .tag-list {
  display: flex;
  flex-wrap: wrap;
  row-gap: 4px;
  -moz-column-gap: 7px;
  column-gap: 4px;
  border-top: 2px solid #e0e0e0;
  padding-top: 10px;
  width: 100%;
}
.page-uzmanlik .con .uzmanlik-list .uzman-page .list .team-info .team-tags .tag-list .team-tag {
  background: #ffffff;
  color: #747474;
  font-size: 11px;
  font-weight: 700;
  border-radius: 6px;
  padding: 4px 7px;
  border: 1px solid #e0e0e0;
}
.page-uzmanlik .con .uzmanlik-list .uzman-page .list .team-card-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  background: #f7f7f7;
  min-width: 100px;
}
.page-uzmanlik .con .uzmanlik-list .uzman-page .list .team-card-right .team-profile-btn,
.page-uzmanlik .con .uzmanlik-list .uzman-page .list .team-card-right .team-appointment-btn {
  display: block;
  width: 100%;
  background: none;
  color: rgba(50, 50, 50, 0.7215686275);
  font-weight: 700;
  font-size: 12px;
  text-align: right;
  text-decoration: none;
  padding: 18px 0;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-uzmanlik .con .uzmanlik-list .uzman-page .list .team-card-right .team-profile-btn {
  background-color: #f1f1f1;
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
}
.page-uzmanlik .con .uzmanlik-list .uzman-page .list .team-card-right .team-profile-btn:hover {
  background-color: #1dc2d9;
  color: #fff;
  box-shadow: 0 4px 18px rgba(23, 57, 92, 0.18);
}
.page-uzmanlik .con .uzmanlik-list .uzman-page .list .team-card-right .team-appointment-btn {
  background-color: #dadada;
}
.page-uzmanlik .con .uzmanlik-list .uzman-page .list .team-card-right .team-appointment-btn:hover {
  background-color: #17395c;
  color: #fff;
  box-shadow: 0 4px 18px rgba(23, 57, 92, 0.18);
}
@media (max-width: 992px) {
  .page-uzmanlik .con .uzmanlik-list .uzman-page .list .team-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .page-uzmanlik .con .uzmanlik-list .uzman-page .list .team-card {
    flex-direction: column;
  }
  .page-uzmanlik .con .uzmanlik-list .uzman-page .list .team-card-right {
    min-width: unset;
    width: 100%;
    align-items: stretch;
    padding: 0 12px;
  }
  .page-uzmanlik .con .uzmanlik-list .uzman-page .list .team-card-right .team-profile-btn,
  .page-uzmanlik .con .uzmanlik-list .uzman-page .list .team-card-right .team-appointment-btn {
    text-align: left;
    padding: 14px 0;
  }
}
.page-uzmanlik .con .uzmanlik-list .no-result-message {
  text-align: center;
  color: #c00;
  background: #fff3f3;
  border: 1px solid #ffd6d6;
  padding: 24px 0;
  font-size: 1.2rem;
  border-radius: 8px;
  margin: 32px 0;
}

.multi-select {
  position: relative;
  min-height: 35px;
  border: 1px solid #b5b5b5;
  border-radius: 3px;
  padding: 4px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.selected-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.selected-tag {
  background: #f2f4f8;
  border-radius: 4px;
  padding: 0px 8px;
  display: flex;
  align-items: center;
  font-size: 15px;
}

.selected-tag .remove-tag {
  cursor: pointer;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 9px;
  padding: 0px 5px;
  border-radius: 1px;
}
.selected-tag .remove-tag:hover {
  background-color: #ff4d4f;
  color: #fff;
}

.multi-select-input {
  border: none;
  outline: none;
  flex: 1;
  min-width: 80px;
  font-size: 16px;
}

.multi-select-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #ddd;
  z-index: 10;
  max-height: 180px;
  overflow-y: auto;
}

.multi-select-option {
  padding: 6px 12px;
  cursor: pointer;
}

.multi-select-option:hover {
  background: #e6f0ff;
}

.page-tests .con .head {
  text-align: center;
  padding-top: 30px;
  padding-bottom: 20px;
}
.page-tests .con .head .title {
  font-size: 42px;
  color: #17395c;
  font-weight: 400;
  margin-bottom: 10px;
}
.page-tests .con .head .title b {
  font-weight: 800;
}
.page-tests .con .head .desc {
  font-size: 17px;
  color: #1a1a1a;
  font-weight: 400;
  font-family: "Urbanist";
  text-align: center;
  line-height: 19px;
}
.page-tests .con .testler-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
  margin-top: 24px;
}
@media (max-width: 1200px) {
  .page-tests .con .testler-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 900px) {
  .page-tests .con .testler-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .page-tests .con .testler-grid {
    grid-template-columns: 1fr;
  }
}
.page-tests .con .test-card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid #e9ebef;
  padding: 36px 18px 28px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 265px;
  text-align: center;
  position: relative;
  transition: box-shadow 0.3s, transform 0.2s;
}
.page-tests .con .test-card:hover {
  box-shadow: 0 12px 36px 0 rgba(23, 57, 92, 0.18);
  transform: translateY(-4px) scale(1.03);
}
.page-tests .con .test-card--highlight {
  background: linear-gradient(135deg, #17395c 80%, #1e4c7b 100%);
  color: #fff;
  box-shadow: 0 12px 36px 0 rgba(23, 57, 92, 0.18);
}
.page-tests .con .test-card--highlight .test-card__btn {
  background: #fff;
  color: #17395c;
}
.page-tests .con .test-card__icon {
  width: 100%;
  height: 160px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-tests .con .test-card__icon img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 12px;
  background: #f6f6f6;
  -o-object-fit: contain;
     object-fit: contain;
}
.page-tests .con .test-card__title {
  font-size: 1.18rem;
  font-weight: 700;
  margin-bottom: 10px;
  margin-top: 2px;
  color: #17395c;
  height: 37px;
}
.page-tests .con .test-card__desc {
  font-size: 14px;
  color: #959595;
  font-weight: 500;
  text-align: center;
  margin-bottom: 15px;
  height: 113px;
}
.page-tests .con .test-card__btn {
  display: inline-block;
  background: #fff;
  color: #959595;
  font-weight: 700;
  border-radius: 12px;
  padding: 12px 32px;
  text-decoration: none;
  border: 1px solid #e9ebef;
  font-size: 11px;
  letter-spacing: 0.5px;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
}
.page-tests .con .test-card__btn:hover {
  background: #17395c;
  color: #fff;
}
.page-tests .con .test-card__btn--highlight {
  background: #fff;
  color: #17395c;
}
.page-tests .con .test-card__btn--highlight:hover {
  background: #17395c;
  color: #fff;
}

.page-sss {
  padding: 40px 0 60px 0;
  background: #fff;
}
.page-sss .con {
  margin: 0 auto;
}
.page-sss .sss-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 32px;
}
.page-sss .sss-item {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  background: #f8f9fa;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(23, 57, 92, 0.06);
  padding: 0 0 0 0;
  position: relative;
  transition: box-shadow 0.2s;
}
.page-sss .sss-item:hover {
  box-shadow: 0 4px 18px rgba(23, 57, 92, 0.13);
}
.page-sss .sss-item .sss-toggle {
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.1rem;
  color: #17395c;
  font-weight: 700;
  margin-right: 12px;
  transition: color 0.2s, transform 0.2s;
}
.page-sss .sss-item .sss-toggle .sss-plus {
  display: block;
  transition: transform 0.2s;
}
.page-sss .sss-item .sss-toggle[aria-expanded=true] .sss-plus {
  transform: rotate(45deg);
}
.page-sss .sss-item .sss-question {
  font-size: 1.15rem;
  font-weight: 600;
  color: #17395c;
  padding: 16px 0;
  flex: 1;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.page-sss .sss-item .sss-answer {
  width: 100%;
  background: #fff;
  border-top: 1px solid #e9ecef;
  font-size: 1rem;
  color: #333;
  padding: 18px 18px 18px 60px;
  border-radius: 0 0 14px 14px;
  margin-top: -2px;
  animation: sss-fadein 0.25s;
}

@keyframes sss-fadein {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.page-bize-ulasin {
  padding: 40px 0 60px 0;
  background: #fff;
}
.page-bize-ulasin .bize-ulasin-flex {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
@media (max-width: 992px) {
  .page-bize-ulasin .bize-ulasin-flex {
    flex-direction: column;
    gap: 24px;
  }
}
.page-bize-ulasin .bize-ulasin-info {
  flex: 1 1 340px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 260px;
}
@media (max-width: 992px) {
  .page-bize-ulasin .bize-ulasin-info {
    flex: initial;
  }
}
.page-bize-ulasin .bize-ulasin-card {
  display: flex;
  align-items: flex-start;
  background: #fcfcfc;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(23, 57, 92, 0.07);
  border: 1.5px solid #e9ecef;
  padding: 24px 28px;
  gap: 18px;
  min-width: 260px;
}
.page-bize-ulasin .bize-ulasin-card .icon {
  font-size: 2.3rem;
  color: #17395c;
  margin-right: 10px;
  flex-shrink: 0;
  margin-top: 2px;
}
.page-bize-ulasin .bize-ulasin-card .content .title {
  font-size: 1.18rem;
  font-weight: 700;
  color: #17395c;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
}
.page-bize-ulasin .bize-ulasin-card .content .desc {
  font-size: 1rem;
  color: #222;
}
.page-bize-ulasin .bize-ulasin-card .content .desc strong {
  font-weight: 700;
  color: #17395c;
}
.page-bize-ulasin .bize-ulasin-map {
  flex: 1 1 420px;
  min-width: 260px;
}
@media (max-width: 992px) {
  .page-bize-ulasin .bize-ulasin-map {
    flex: 0 0 100%;
    width: 100%;
  }
}
.page-bize-ulasin .bize-ulasin-map iframe {
  width: 100%;
  height: 240px;
  border: 0;
  border-radius: 16px;
  min-width: 260px;
  box-shadow: 0 2px 12px rgba(23, 57, 92, 0.07);
}
.page-bize-ulasin .bize-ulasin-form {
  flex: 1 1 380px;
  background: #fcfcfc;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(23, 57, 92, 0.07);
  border: 1.5px solid #e9ecef;
  padding: 32px 32px 24px 32px;
  min-width: 280px;
  max-width: 440px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
@media (max-width: 992px) {
  .page-bize-ulasin .bize-ulasin-form {
    max-width: 100%;
    padding: 24px 12px;
  }
}
.page-bize-ulasin .bize-ulasin-form .bize-ulasin-contact-form {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.page-bize-ulasin .bize-ulasin-form .bize-ulasin-contact-form .form-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #17395c;
  margin-bottom: 8px;
  text-align: left;
}
.page-bize-ulasin .bize-ulasin-form .bize-ulasin-contact-form .form-group {
  display: flex;
  flex-direction: column;
}
.page-bize-ulasin .bize-ulasin-form .bize-ulasin-contact-form .form-group label {
  font-size: 1rem;
  font-weight: 600;
  color: #17395c;
  margin-bottom: 5px;
}
.page-bize-ulasin .bize-ulasin-form .bize-ulasin-contact-form .form-group label span {
  color: #ff6b35;
  margin-left: 2px;
}
.page-bize-ulasin .bize-ulasin-form .bize-ulasin-contact-form .form-group input,
.page-bize-ulasin .bize-ulasin-form .bize-ulasin-contact-form .form-group textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 10px 12px;
  border: 1.2px solid #dbe2ea;
  border-radius: 8px;
  background: #fff;
  color: #222;
  outline: none;
  transition: border 0.2s;
  resize: none;
}
.page-bize-ulasin .bize-ulasin-form .bize-ulasin-contact-form .form-group input:focus,
.page-bize-ulasin .bize-ulasin-form .bize-ulasin-contact-form .form-group textarea:focus {
  border-color: #18b5ca;
}
.page-bize-ulasin .bize-ulasin-form .bize-ulasin-contact-form .form-group textarea {
  min-height: 90px;
  max-height: 220px;
}
.page-bize-ulasin .bize-ulasin-form .bize-ulasin-contact-form .form-actions {
  margin-top: 8px;
  display: flex;
  justify-content: flex-end;
}
.page-bize-ulasin .bize-ulasin-form .bize-ulasin-contact-form .form-actions .btn-gonder {
  background: #17395c;
  color: #fff;
  font-weight: 700;
  font-size: 1.08rem;
  border: none;
  border-radius: 8px;
  padding: 12px 32px;
  cursor: pointer;
  transition: background 0.2s;
  box-shadow: 0 2px 8px rgba(23, 57, 92, 0.08);
  letter-spacing: 0.5px;
}
.page-bize-ulasin .bize-ulasin-form .bize-ulasin-contact-form .form-actions .btn-gonder:hover {
  background: #1dc2d9;
}

.page-sozluk {
  margin-top: 50px;
}
.page-sozluk .con .sozluk-search-wrapper {
  display: flex;
  align-items: center;
  max-width: 400px;
  margin: 0 auto 2rem auto;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 2px 12px rgba(23, 57, 92, 0.08);
  border: 1px solid #e3e6ea;
  padding: 4px 12px 4px 18px;
  position: relative;
}
.page-sozluk .con .sozluk-search-input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 1.1rem;
  padding: 10px 8px 10px 0;
  outline: none;
  font-family: inherit;
  color: #17395c;
}
.page-sozluk .con .sozluk-search-btn {
  background: none;
  border: none;
  color: #18b5ca;
  font-size: 1.3rem;
  cursor: pointer;
  padding: 6px 10px;
  transition: color 0.2s;
  display: flex;
  align-items: center;
}
.page-sozluk .con .sozluk-search-btn:hover {
  color: #17395c;
}
.page-sozluk .con .sozluk-search-btn:focus {
  outline: 2px solid #18b5ca;
}
.page-sozluk .con .sozluk-search-input::-moz-placeholder {
  color: #b0b8c1;
  opacity: 1;
}
.page-sozluk .con .sozluk-search-input::placeholder {
  color: #b0b8c1;
  opacity: 1;
}
.page-sozluk .con .sozluk-subhead {
  margin-top: 40px;
  margin-bottom: 20px;
}
.page-sozluk .con .sozluk-subhead h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #17395c;
  margin-bottom: 8px;
  line-height: 1.15;
  text-align: center;
}
.page-sozluk .con .page-sozluk-letters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.page-sozluk .con .page-sozluk-letters a {
  display: inline-block;
  padding: 12px 12px;
  border: 1px solid rgba(0, 0, 0, 0.21);
  border-radius: 3px;
  background: #f5f5f5;
  color: #333;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}
.page-sozluk .con .page-sozluk-letters a.active, .page-sozluk .con .page-sozluk-letters a:hover {
  background: #1dc2d9;
  color: #fff;
}
.page-sozluk .con .page-sozluk-list {
  margin-bottom: 2rem;
}
.page-sozluk .con .page-sozluk-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.page-sozluk .con .page-sozluk-list li {
  border-bottom: 1px solid #919191;
  transition: background 0.2s;
  margin-bottom: 16px;
  padding-bottom: 10px;
}
.page-sozluk .con .page-sozluk-list li .title {
  font-size: 26px;
  font-weight: 800;
  color: #17395c;
  margin-bottom: 4px;
}
.page-sozluk .con .page-sozluk-list li .desc {
  font-size: 1rem;
  color: #333;
  margin-bottom: 8px;
}
.page-sozluk .con .page-sozluk-detail {
  background: #f5f5f5;
  border-radius: 6px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}
.page-sozluk .con .page-sozluk-pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}
.page-sozluk .con .page-sozluk-pagination a {
  padding: 0.4rem 0.9rem;
  border-radius: 3px;
  background: #f5f5f5;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.2s;
}
.page-sozluk .con .page-sozluk-pagination a.active, .page-sozluk .con .page-sozluk-pagination a:hover {
  background: #1dc2d9;
  color: #fff;
}

.sozluk-random-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}
.sozluk-random-list .item {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(80, 60, 180, 0.08);
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #f2f2f2;
}
.sozluk-random-list .item:hover {
  box-shadow: 0 4px 24px rgba(80, 60, 180, 0.16);
  transform: translateY(-4px) scale(1.02);
}
.sozluk-random-list .item .item-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.sozluk-random-list .item .icon {
  margin-bottom: 1rem;
  color: #17395c;
}
.sozluk-random-list .item .icon i {
  color: inherit;
}
.sozluk-random-list .item .desc {
  text-align: center;
}
.sozluk-random-list .item .desc .letter-head {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  color: #22223b;
}
.sozluk-random-list .item .desc .letter-desc {
  font-size: 1.1rem;
  color: #4a4e69;
  font-weight: 600;
  margin-bottom: 1.2rem;
  min-height: 48px;
}
.sozluk-random-list .item .desc .letter-btn {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  border: 1.5px solid #17395c;
  border-radius: 8px;
  color: #17395c;
  background: #fff;
  font-weight: 500;
  font-size: 1rem;
  transition: background 0.15s, color 0.15s;
  cursor: pointer;
}
.sozluk-random-list .item .desc .letter-btn:hover {
  background: #17395c;
  color: #fff;
}

.page-sozluk-detay .con {
  padding-top: 40px;
}
.page-sozluk-detay .con .mycard {
  background-color: #fff;
  padding: 27px 28px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.24);
  border-radius: 7px;
  margin-bottom: 30px;
}
.page-sozluk-detay .con .text h1 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  color: #17395c;
  margin-bottom: 15px;
}
.page-sozluk-detay .con .text h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  color: #17395c;
  margin-bottom: 15px;
}
.page-sozluk-detay .con .text p {
  margin-bottom: 15px;
}
.page-sozluk-detay .con .text ul {
  margin-bottom: 15px;
  padding-left: 26px;
  list-style: none;
}
.page-sozluk-detay .con .text ul li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 2px;
}
.page-sozluk-detay .con .text ul li::before {
  content: "";
  position: absolute;
  left: -19px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background: #17395c;
  border-radius: 50%;
}
.page-sozluk-detay .con .other-items h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #17395c;
  margin-bottom: 15px;
}
.page-sozluk-detay .con .sozluk-navigation {
  margin-top: 32px;
}
.page-sozluk-detay .con .sozluk-navigation .snavcont {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.page-sozluk-detay .con .sozluk-navigation .snavcont a.btn {
  min-width: 200px;
  text-align: center;
  border: 2px solid #17395c;
  color: #17395c;
  background: #fff;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 12px 24px;
  transition: all 0.2s;
  box-shadow: none;
}
.page-sozluk-detay .con .sozluk-navigation .snavcont a.btn:hover {
  background: #17395c;
  color: #fff;
}
.page-sozluk-detay .con .share-section {
  margin: 32px 0 0 0;
  text-align: center;
}
.page-sozluk-detay .con .share-section .share-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.page-sozluk-detay .con .share-section .share-buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
}
.page-sozluk-detay .con .share-section .share-buttons .share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 2px solid #2b2b2b;
  border-radius: 12px;
  color: #2b2b2b;
  font-size: 1.5rem;
  background: #fff;
  transition: background 0.2s, color 0.2s;
}
.page-sozluk-detay .con .share-section .share-buttons .share-btn:hover {
  background: #2b2b2b;
  color: #fff;
}

.page-blog {
  padding: 40px 0 60px 0;
}
.page-blog .con .blog-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  align-items: start;
}
@media (max-width: 992px) {
  .page-blog .con .blog-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.blog-left .blog-slider-section {
  margin-bottom: 60px;
}
.blog-left .blog-slider-section .section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #17395c;
  margin-bottom: 30px;
  text-align: center;
}
.blog-left .blog-slider {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
}
.blog-left .blog-slider .blog-slide {
  outline: none;
}
.blog-left .blog-slider .blog-slide .blog-slide-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 40px rgba(23, 57, 92, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-left .blog-slider .blog-slide .blog-slide-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(23, 57, 92, 0.15);
}
.blog-left .blog-slider .blog-slide .blog-slide-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}
.blog-left .blog-slider .blog-slide .blog-slide-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.blog-left .blog-slider .blog-slide .blog-slide-image .blog-slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(23, 57, 92, 0.1) 0%, rgba(24, 181, 202, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.blog-left .blog-slider .blog-slide .blog-slide-image:hover img {
  transform: scale(1.05);
}
.blog-left .blog-slider .blog-slide .blog-slide-image:hover .blog-slide-overlay {
  opacity: 1;
}
.blog-left .blog-slider .blog-slide .blog-slide-content {
  padding: 30px;
}
.blog-left .blog-slider .blog-slide .blog-slide-content .blog-slide-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}
.blog-left .blog-slider .blog-slide .blog-slide-content .blog-slide-meta .blog-date {
  color: #888;
  font-size: 0.9rem;
  font-weight: 500;
}
.blog-left .blog-slider .blog-slide .blog-slide-content .blog-slide-meta .blog-category {
  background: #18b5ca;
  color: #fff;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.blog-left .blog-slider .blog-slide .blog-slide-content .blog-slide-title {
  margin-bottom: 15px;
}
.blog-left .blog-slider .blog-slide .blog-slide-content .blog-slide-title a {
  color: #17395c;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.3;
  transition: color 0.3s ease;
}
.blog-left .blog-slider .blog-slide .blog-slide-content .blog-slide-title a:hover {
  color: #18b5ca;
}
.blog-left .blog-slider .blog-slide .blog-slide-content .blog-slide-excerpt {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 1rem;
}
.blog-left .blog-slider .blog-slide .blog-slide-content .blog-slide-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #17395c 0%, #18b5ca 100%);
  color: #fff;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-left .blog-slider .blog-slide .blog-slide-content .blog-slide-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(24, 181, 202, 0.3);
}
.blog-left .blog-slider .blog-slide .blog-slide-content .blog-slide-btn svg {
  transition: transform 0.3s ease;
}
.blog-left .blog-slider .blog-slide .blog-slide-content .blog-slide-btn:hover svg {
  transform: translateX(3px);
}
.blog-left .blog-recent-posts .section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #17395c;
  margin-bottom: 40px;
  text-align: center;
  position: relative;
}
.blog-left .blog-recent-posts .section-title:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, #17395c 0%, #18b5ca 100%);
  border-radius: 2px;
}
.blog-left .blog-recent-posts .blog-recent-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .blog-left .blog-recent-posts .blog-recent-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
}
@media (max-width: 600px) {
  .blog-left .blog-recent-posts .blog-recent-grid {
    grid-template-columns: 1fr;
  }
}
.blog-left .blog-recent-posts .blog-recent-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(23, 57, 92, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #f0f0f0;
}
.blog-left .blog-recent-posts .blog-recent-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(23, 57, 92, 0.15);
}
.blog-left .blog-recent-posts .blog-recent-card .blog-recent-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.blog-left .blog-recent-posts .blog-recent-card .blog-recent-image a {
  display: block;
  height: 100%;
  position: relative;
}
.blog-left .blog-recent-posts .blog-recent-card .blog-recent-image a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.blog-left .blog-recent-posts .blog-recent-card .blog-recent-image a .blog-recent-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(23, 57, 92, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.blog-left .blog-recent-posts .blog-recent-card .blog-recent-image a .blog-recent-overlay svg {
  color: #fff;
  width: 32px;
  height: 32px;
}
.blog-left .blog-recent-posts .blog-recent-card .blog-recent-image a:hover img {
  transform: scale(1.1);
}
.blog-left .blog-recent-posts .blog-recent-card .blog-recent-image a:hover .blog-recent-overlay {
  opacity: 1;
}
.blog-left .blog-recent-posts .blog-recent-card .blog-recent-content {
  padding: 24px;
}
.blog-left .blog-recent-posts .blog-recent-card .blog-recent-content .blog-recent-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.blog-left .blog-recent-posts .blog-recent-card .blog-recent-content .blog-recent-meta .blog-date {
  color: #888;
  font-size: 0.85rem;
  font-weight: 500;
}
.blog-left .blog-recent-posts .blog-recent-card .blog-recent-content .blog-recent-meta .blog-read-time {
  color: #18b5ca;
  font-size: 0.85rem;
  font-weight: 600;
}
.blog-left .blog-recent-posts .blog-recent-card .blog-recent-content .blog-recent-title {
  margin-bottom: 12px;
}
.blog-left .blog-recent-posts .blog-recent-card .blog-recent-content .blog-recent-title a {
  color: #17395c;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.4;
  transition: color 0.3s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-left .blog-recent-posts .blog-recent-card .blog-recent-content .blog-recent-title a:hover {
  color: #18b5ca;
}
.blog-left .blog-recent-posts .blog-recent-card .blog-recent-content .blog-recent-excerpt {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-left .blog-recent-posts .blog-recent-card .blog-recent-content .blog-recent-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #18b5ca;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}
.blog-left .blog-recent-posts .blog-recent-card .blog-recent-content .blog-recent-link:hover {
  color: #17395c;
}
.blog-left .blog-recent-posts .blog-recent-card .blog-recent-content .blog-recent-link:hover svg {
  transform: translateX(3px);
}
.blog-left .blog-recent-posts .blog-recent-card .blog-recent-content .blog-recent-link svg {
  transition: transform 0.3s ease;
}
.blog-left .blog-recent-posts .blog-view-all {
  text-align: center;
  margin-top: 20px;
}
.blog-left .blog-recent-posts .blog-view-all .blog-view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #17395c 0%, #18b5ca 100%);
  color: #fff;
  padding: 16px 32px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-left .blog-recent-posts .blog-view-all .blog-view-all-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(24, 181, 202, 0.3);
}
.blog-left .blog-recent-posts .blog-view-all .blog-view-all-btn:hover svg {
  transform: translateX(3px);
}
.blog-left .blog-recent-posts .blog-view-all .blog-view-all-btn svg {
  transition: transform 0.3s ease;
}
.blog-left .slick-dots {
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
}
.blog-left .slick-dots li {
  margin: 0;
}
.blog-left .slick-dots li button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd;
  border: none;
  font-size: 0;
  transition: all 0.3s ease;
  cursor: pointer;
}
.blog-left .slick-dots li button::before {
  display: none;
}
.blog-left .slick-dots li button:hover {
  background: #18b5ca;
  transform: scale(1.2);
}
.blog-left .slick-dots li.slick-active button {
  background: #17395c;
  transform: scale(1.3);
}
.blog-left .slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 50px;
  height: 50px;
  background: #fff;
  border: none;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0;
}
.blog-left .slick-arrow:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-top: 2px solid #17395c;
  border-right: 2px solid #17395c;
}
.blog-left .slick-arrow:hover {
  background: #17395c;
  transform: translateY(-50%) scale(1.1);
}
.blog-left .slick-arrow:hover:before {
  border-color: #fff;
}
.blog-left .slick-arrow.slick-prev {
  left: -25px;
}
.blog-left .slick-arrow.slick-prev:before {
  transform: translate(-30%, -50%) rotate(-135deg);
}
.blog-left .slick-arrow.slick-next {
  right: -25px;
}
.blog-left .slick-arrow.slick-next:before {
  transform: translate(-70%, -50%) rotate(45deg);
}

.blog-right .blog-sidebar-widget {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 30px rgba(23, 57, 92, 0.08);
  border: 1px solid #f0f0f0;
}
.blog-right .blog-sidebar-widget .widget-title {
  color: #17395c;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid #f0f0f0;
  position: relative;
}
.blog-right .blog-sidebar-widget .widget-title:after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 50px;
  height: 2px;
  background: linear-gradient(135deg, #17395c 0%, #18b5ca 100%);
}
.blog-right .blog-categories {
  list-style: none;
  padding: 0;
  margin: 0;
}
.blog-right .blog-categories li {
  margin-bottom: 12px;
}
.blog-right .blog-categories li:last-child {
  margin-bottom: 0;
}
.blog-right .blog-categories li .category-link {
  display: block;
  color: #666;
  text-decoration: none;
  padding: 10px 15px;
  border-radius: 12px;
  transition: all 0.3s ease;
  font-weight: 500;
}
.blog-right .blog-categories li .category-link:hover, .blog-right .blog-categories li .category-link.active {
  background: linear-gradient(135deg, #17395c 0%, #18b5ca 100%);
  color: #fff;
  transform: translateX(5px);
}
.blog-right .blog-list .blog-list-item {
  display: flex;
  gap: 15px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #f0f0f0;
  transition: transform 0.3s ease;
}
.blog-right .blog-list .blog-list-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.blog-right .blog-list .blog-list-item:hover {
  transform: translateX(5px);
}
.blog-right .blog-list .blog-list-item .blog-list-image {
  flex: 0 0 80px;
}
.blog-right .blog-list .blog-list-item .blog-list-image a {
  display: block;
  border-radius: 12px;
  overflow: hidden;
}
.blog-right .blog-list .blog-list-item .blog-list-image a img {
  width: 80px;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.blog-right .blog-list .blog-list-item .blog-list-image a:hover img {
  transform: scale(1.1);
}
.blog-right .blog-list .blog-list-item .blog-list-content {
  flex: 1;
}
.blog-right .blog-list .blog-list-item .blog-list-content .blog-list-meta .blog-date {
  color: #888;
  font-size: 0.8rem;
  font-weight: 500;
}
.blog-right .blog-list .blog-list-item .blog-list-content .blog-list-title {
  margin: 5px 0 8px 0;
}
.blog-right .blog-list .blog-list-item .blog-list-content .blog-list-title a {
  color: #17395c;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
  transition: color 0.3s ease;
}
.blog-right .blog-list .blog-list-item .blog-list-content .blog-list-title a:hover {
  color: #18b5ca;
}
.blog-right .blog-list .blog-list-item .blog-list-content .blog-list-excerpt {
  color: #666;
  font-size: 0.85rem;
  line-height: 1.4;
  margin-bottom: 8px;
}
.blog-right .blog-list .blog-list-item .blog-list-content .blog-list-link {
  color: #18b5ca;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  transition: color 0.3s ease;
}
.blog-right .blog-list .blog-list-item .blog-list-content .blog-list-link:hover {
  color: #17395c;
}
.blog-right .newsletter-widget {
  background: linear-gradient(135deg, #17395c 0%, #18b5ca 100%);
  color: #fff;
}
.blog-right .newsletter-widget .widget-title {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.2);
}
.blog-right .newsletter-widget .widget-title:after {
  background: #fff;
}
.blog-right .newsletter-widget .newsletter-desc {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}
.blog-right .newsletter-widget .newsletter-form .newsletter-input-group {
  display: flex;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
}
.blog-right .newsletter-widget .newsletter-form .newsletter-input-group input {
  flex: 1;
  border: none;
  padding: 12px 15px;
  font-size: 0.9rem;
  outline: none;
}
.blog-right .newsletter-widget .newsletter-form .newsletter-input-group input::-moz-placeholder {
  color: #999;
}
.blog-right .newsletter-widget .newsletter-form .newsletter-input-group input::placeholder {
  color: #999;
}
.blog-right .newsletter-widget .newsletter-form .newsletter-input-group button {
  background: #17395c;
  border: none;
  padding: 12px 15px;
  cursor: pointer;
  transition: background 0.3s ease;
  color: #fff;
}
.blog-right .newsletter-widget .newsletter-form .newsletter-input-group button:hover {
  background: #0f2a42;
}
.blog-right .blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.blog-right .blog-tags .blog-tag {
  display: inline-block;
  background: #f8f9fa;
  color: #17395c;
  padding: 8px 16px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
}
.blog-right .blog-tags .blog-tag:hover {
  background: linear-gradient(135deg, #17395c 0%, #18b5ca 100%);
  color: #fff;
}
.blog-right .blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.blog-right .blog-tags .blog-tag {
  display: inline-block;
  background: #f8f9fa;
  color: #17395c;
  padding: 8px 16px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
}
.blog-right .blog-tags .blog-tag:hover {
  background: linear-gradient(135deg, #17395c 0%, #18b5ca 100%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(23, 57, 92, 0.2);
}
.blog-right .newsletter-widget {
  background: linear-gradient(135deg, #17395c 0%, #18b5ca 100%);
  color: #fff;
}
.blog-right .newsletter-widget .widget-title {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.2);
}
.blog-right .newsletter-widget .widget-title:after {
  background: #fff;
}
.blog-right .newsletter-widget .newsletter-desc {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}
.blog-right .newsletter-widget .newsletter-form .newsletter-input-group {
  display: flex;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
}
.blog-right .newsletter-widget .newsletter-form .newsletter-input-group input {
  flex: 1;
  border: none;
  padding: 12px 15px;
  font-size: 0.9rem;
  outline: none;
}
.blog-right .newsletter-widget .newsletter-form .newsletter-input-group input::-moz-placeholder {
  color: #999;
}
.blog-right .newsletter-widget .newsletter-form .newsletter-input-group input::placeholder {
  color: #999;
}
.blog-right .newsletter-widget .newsletter-form .newsletter-input-group button {
  background: #17395c;
  border: none;
  padding: 12px 15px;
  cursor: pointer;
  transition: background 0.3s ease;
  color: #fff;
}
.blog-right .newsletter-widget .newsletter-form .newsletter-input-group button:hover {
  background: #0f2a42;
}

.no-content {
  text-align: center;
  padding: 40px 20px;
  color: #888;
}
.no-content p {
  font-size: 1.1rem;
  margin: 0;
}

@media (max-width: 768px) {
  .blog-left .blog-slider .slick-arrow {
    display: none !important;
  }
  .blog-right .blog-list .blog-list-item {
    flex-direction: column;
  }
  .blog-right .blog-list .blog-list-item .blog-list-image {
    flex: none;
  }
  .blog-right .blog-list .blog-list-item .blog-list-image a img {
    width: 100%;
    height: 200px;
  }
}
.page-blog-detay {
  padding: 40px 0 60px 0;
}
.page-blog-detay .con .blog-detay-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  align-items: start;
}
@media (max-width: 992px) {
  .page-blog-detay .con .blog-detay-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.blog-detay-main .blog-article {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 30px rgba(23, 57, 92, 0.08);
  margin-bottom: 50px;
}
.blog-detay-main .blog-article .blog-header {
  padding: 40px 40px 0 40px;
}
@media (max-width: 768px) {
  .blog-detay-main .blog-article .blog-header {
    padding: 30px 20px 0 20px;
  }
}
.blog-detay-main .blog-article .blog-header .blog-category {
  margin-bottom: 20px;
}
.blog-detay-main .blog-article .blog-header .blog-category .category-tag {
  display: inline-block;
  background: linear-gradient(135deg, #17395c 0%, #18b5ca 100%);
  color: #fff;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.blog-detay-main .blog-article .blog-header .blog-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: #17395c;
  line-height: 1.2;
  margin-bottom: 25px;
}
@media (max-width: 768px) {
  .blog-detay-main .blog-article .blog-header .blog-title {
    font-size: 2rem;
  }
}
@media (max-width: 480px) {
  .blog-detay-main .blog-article .blog-header .blog-title {
    font-size: 1.7rem;
  }
}
.blog-detay-main .blog-article .blog-header .blog-meta {
  display: flex;
  align-items: center;
  gap: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #f0f0f0;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .blog-detay-main .blog-article .blog-header .blog-meta {
    gap: 20px;
    flex-wrap: wrap;
  }
}
.blog-detay-main .blog-article .blog-header .blog-meta .blog-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #666;
  font-size: 0.9rem;
  font-weight: 500;
}
.blog-detay-main .blog-article .blog-header .blog-meta .blog-meta-item svg {
  color: #18b5ca;
  flex-shrink: 0;
}
.blog-detay-main .blog-article .blog-image {
  margin: 0 40px 40px 40px;
  border-radius: 16px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .blog-detay-main .blog-article .blog-image {
    margin: 0 20px 30px 20px;
  }
}
.blog-detay-main .blog-article .blog-image img {
  width: 100%;
  height: auto;
  max-height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.blog-detay-main .blog-article .blog-image img:hover {
  transform: scale(1.02);
}
.blog-detay-main .blog-article .blog-content {
  padding: 0 40px 40px 40px;
}
@media (max-width: 768px) {
  .blog-detay-main .blog-article .blog-content {
    padding: 0 20px 30px 20px;
  }
}
.blog-detay-main .blog-article .blog-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 20px;
}
.blog-detay-main .blog-article .blog-content p:last-child {
  margin-bottom: 0;
}
.blog-detay-main .blog-article .blog-content h1,
.blog-detay-main .blog-article .blog-content h2,
.blog-detay-main .blog-article .blog-content h3,
.blog-detay-main .blog-article .blog-content h4,
.blog-detay-main .blog-article .blog-content h5,
.blog-detay-main .blog-article .blog-content h6 {
  color: #17395c;
  font-weight: 700;
  margin: 30px 0 15px 0;
  line-height: 1.3;
}
.blog-detay-main .blog-article .blog-content h1:first-child,
.blog-detay-main .blog-article .blog-content h2:first-child,
.blog-detay-main .blog-article .blog-content h3:first-child,
.blog-detay-main .blog-article .blog-content h4:first-child,
.blog-detay-main .blog-article .blog-content h5:first-child,
.blog-detay-main .blog-article .blog-content h6:first-child {
  margin-top: 0;
}
.blog-detay-main .blog-article .blog-content h2 {
  font-size: 1.8rem;
}
.blog-detay-main .blog-article .blog-content h3 {
  font-size: 1.5rem;
}
.blog-detay-main .blog-article .blog-content h4 {
  font-size: 1.3rem;
}
.blog-detay-main .blog-article .blog-content ul,
.blog-detay-main .blog-article .blog-content ol {
  margin: 20px 0;
  padding-left: 30px;
}
.blog-detay-main .blog-article .blog-content ul li,
.blog-detay-main .blog-article .blog-content ol li {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 8px;
  color: #333;
}
.blog-detay-main .blog-article .blog-content blockquote {
  background: #f8f9fa;
  border-left: 4px solid #18b5ca;
  padding: 20px 30px;
  margin: 30px 0;
  border-radius: 0 8px 8px 0;
  font-style: italic;
  font-size: 1.1rem;
  color: #555;
}
.blog-detay-main .blog-article .blog-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 20px 0;
}
.blog-detay-main .blog-article .blog-content a {
  color: #18b5ca;
  text-decoration: none;
  transition: color 0.3s ease;
}
.blog-detay-main .blog-article .blog-content a:hover {
  color: #17395c;
  text-decoration: underline;
}
.blog-detay-main .blog-article .blog-footer {
  padding: 30px 40px 40px 40px;
  border-top: 1px solid #f0f0f0;
}
@media (max-width: 768px) {
  .blog-detay-main .blog-article .blog-footer {
    padding: 25px 20px 30px 20px;
  }
}
.blog-detay-main .blog-article .blog-footer .blog-share h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #17395c;
  margin-bottom: 20px;
}
.blog-detay-main .blog-article .blog-footer .blog-share .share-buttons {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}
.blog-detay-main .blog-article .blog-footer .blog-share .share-buttons .share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
  color: #fff;
}
.blog-detay-main .blog-article .blog-footer .blog-share .share-buttons .share-btn.facebook {
  background: #3b5998;
}
.blog-detay-main .blog-article .blog-footer .blog-share .share-buttons .share-btn.facebook:hover {
  background: #2d4373;
  transform: translateY(-2px);
}
.blog-detay-main .blog-article .blog-footer .blog-share .share-buttons .share-btn.twitter {
  background: #212121;
}
.blog-detay-main .blog-article .blog-footer .blog-share .share-buttons .share-btn.twitter:hover {
  background: #212121;
  transform: translateY(-2px);
}
.blog-detay-main .blog-article .blog-footer .blog-share .share-buttons .share-btn.linkedin {
  background: #0077b5;
}
.blog-detay-main .blog-article .blog-footer .blog-share .share-buttons .share-btn.linkedin:hover {
  background: #005885;
  transform: translateY(-2px);
}
.blog-detay-main .blog-article .blog-footer .blog-share .share-buttons .share-btn.whatsapp {
  background: #25d366;
}
.blog-detay-main .blog-article .blog-footer .blog-share .share-buttons .share-btn.whatsapp:hover {
  background: #128c7e;
  transform: translateY(-2px);
}
.blog-detay-main .related-blogs .related-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #17395c;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
}
.blog-detay-main .related-blogs .related-title:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, #17395c 0%, #18b5ca 100%);
  border-radius: 2px;
}
.blog-detay-main .related-blogs .related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}
@media (max-width: 600px) {
  .blog-detay-main .related-blogs .related-grid {
    grid-template-columns: 1fr;
  }
}
.blog-detay-main .related-blogs .related-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(23, 57, 92, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #f0f0f0;
}
.blog-detay-main .related-blogs .related-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(23, 57, 92, 0.15);
}
.blog-detay-main .related-blogs .related-card .related-image {
  height: 180px;
  overflow: hidden;
}
.blog-detay-main .related-blogs .related-card .related-image a {
  display: block;
  height: 100%;
}
.blog-detay-main .related-blogs .related-card .related-image a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.blog-detay-main .related-blogs .related-card .related-image a:hover img {
  transform: scale(1.1);
}
.blog-detay-main .related-blogs .related-card .related-content {
  padding: 20px;
}
.blog-detay-main .related-blogs .related-card .related-content .related-card-title {
  margin-bottom: 15px;
}
.blog-detay-main .related-blogs .related-card .related-content .related-card-title a {
  color: #17395c;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.4;
  transition: color 0.3s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-detay-main .related-blogs .related-card .related-content .related-card-title a:hover {
  color: #18b5ca;
}
.blog-detay-main .related-blogs .related-card .related-content .related-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #18b5ca;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}
.blog-detay-main .related-blogs .related-card .related-content .related-link:hover {
  color: #17395c;
}
.blog-detay-main .related-blogs .related-card .related-content .related-link:hover svg {
  transform: translateX(3px);
}
.blog-detay-main .related-blogs .related-card .related-content .related-link svg {
  transition: transform 0.3s ease;
}

.blog-detay-sidebar .sidebar-widget {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 30px rgba(23, 57, 92, 0.08);
  border: 1px solid #f0f0f0;
}
.blog-detay-sidebar .sidebar-widget .widget-title {
  color: #17395c;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid #f0f0f0;
  position: relative;
}
.blog-detay-sidebar .sidebar-widget .widget-title:after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 50px;
  height: 2px;
  background: linear-gradient(135deg, #17395c 0%, #18b5ca 100%);
}
.blog-detay-sidebar .blog-categories {
  list-style: none;
  padding: 0;
  margin: 0;
}
.blog-detay-sidebar .blog-categories li {
  margin-bottom: 12px;
}
.blog-detay-sidebar .blog-categories li:last-child {
  margin-bottom: 0;
}
.blog-detay-sidebar .blog-categories li .category-link {
  display: block;
  color: #666;
  text-decoration: none;
  padding: 10px 15px;
  border-radius: 12px;
  transition: all 0.3s ease;
  font-weight: 500;
}
.blog-detay-sidebar .blog-categories li .category-link:hover {
  background: linear-gradient(135deg, #17395c 0%, #18b5ca 100%);
  color: #fff;
  transform: translateX(5px);
}
.blog-detay-sidebar .newsletter-widget {
  background: linear-gradient(135deg, #17395c 0%, #18b5ca 100%);
  color: #fff;
}
.blog-detay-sidebar .newsletter-widget .widget-title {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.2);
}
.blog-detay-sidebar .newsletter-widget .widget-title:after {
  background: #fff;
}
.blog-detay-sidebar .newsletter-widget .newsletter-desc {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}
.blog-detay-sidebar .newsletter-widget .newsletter-form .newsletter-input-group {
  display: flex;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
}
.blog-detay-sidebar .newsletter-widget .newsletter-form .newsletter-input-group input {
  flex: 1;
  border: none;
  padding: 12px 15px;
  font-size: 0.9rem;
  outline: none;
}
.blog-detay-sidebar .newsletter-widget .newsletter-form .newsletter-input-group input::-moz-placeholder {
  color: #999;
}
.blog-detay-sidebar .newsletter-widget .newsletter-form .newsletter-input-group input::placeholder {
  color: #999;
}
.blog-detay-sidebar .newsletter-widget .newsletter-form .newsletter-input-group button {
  background: #17395c;
  border: none;
  padding: 12px 15px;
  cursor: pointer;
  transition: background 0.3s ease;
  color: #fff;
}
.blog-detay-sidebar .newsletter-widget .newsletter-form .newsletter-input-group button:hover {
  background: #0f2a42;
}
.blog-detay-sidebar .blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.blog-detay-sidebar .blog-tags .blog-tag {
  display: inline-block;
  background: #f8f9fa;
  color: #17395c;
  padding: 8px 16px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
}
.blog-detay-sidebar .blog-tags .blog-tag:hover {
  background: linear-gradient(135deg, #17395c 0%, #18b5ca 100%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(23, 57, 92, 0.2);
}

@media (max-width: 768px) {
  .page-blog-detay .blog-detay-content {
    gap: 30px;
  }
  .page-blog-detay .blog-detay-main .related-blogs .related-grid {
    gap: 20px;
  }
}
.page-register {
  min-height: 70vh;
  background: #fff;
}
.page-register.page-register-corporate .register-progress .progress-bar::after {
  left: 214px;
  width: 30%;
}
.page-register .con {
  max-width: 700px;
  margin: 0 auto;
  padding: 40px 0 60px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page-register .register-tabs {
  display: flex;
  gap: 32px;
  margin-bottom: 18px;
  width: 100%;
}
.page-register .register-tabs .tab {
  background: none;
  border: none;
  outline: none;
  font-size: 1.25rem;
  font-weight: 700;
  color: #17395c;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.4;
  cursor: pointer;
  transition: opacity 0.2s;
}
.page-register .register-tabs .tab img {
  height: 32px;
}
.page-register .register-tabs .tab.active {
  opacity: 1;
  color: #17395c;
}
.page-register .register-progress {
  width: 100%;
  margin-bottom: 32px;
}
.page-register .register-progress .progress-bar {
  width: 100%;
  height: 10px;
  background: #e9ecef;
  border-radius: 8px;
  transition: width 0.3s;
  position: relative;
}
.page-register .register-progress .progress-bar::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 27%;
  height: 100%;
  background: #17395c;
  border-radius: 8px;
}
.page-register .register-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.page-register .register-form .form-row {
  display: flex;
  gap: 24px;
  width: 100%;
}
@media (max-width: 600px) {
  .page-register .register-form .form-row {
    flex-direction: column;
    gap: 0;
  }
}
.page-register .register-form .form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.page-register .register-form .form-group label {
  font-weight: 700;
  margin-bottom: 8px;
  color: #17395c;
  font-size: 1.05rem;
}
.page-register .register-form .form-group input {
  border: 1px solid #dbe2ea;
  border-radius: 14px;
  padding: 18px 18px;
  font-size: 1.1rem;
  font-family: "Urbanist", sans-serif;
  font-weight: 500;
  outline: none;
  transition: border 0.2s;
  background: #fff;
}
.page-register .register-form .form-group input:focus {
  border-color: #18b5ca;
}
.page-register .register-form .form-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}
.page-register .register-form .form-checkboxes .form-checkbox {
  display: flex;
  align-items: center;
}
.page-register .register-form .form-checkboxes .form-checkbox input[type=checkbox] {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}
.page-register .register-form .form-checkboxes .form-checkbox label {
  font-size: 1rem;
  color: #222;
}
.page-register .register-form .form-checkboxes .form-checkbox label a {
  color: #18b5ca;
  text-decoration: underline;
  font-weight: 700;
}
.page-register .register-form .register-submit {
  margin-top: 18px;
  width: 100%;
  background: #18b5ca;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  border: none;
  border-radius: 16px;
  padding: 18px 0;
  cursor: pointer;
  transition: background 0.2s;
  letter-spacing: 1px;
}
.page-register .register-form .register-submit:hover {
  background: #1499b0;
}
@media (max-width: 768px) {
  .page-register .con {
    padding: 20px 0 40px 0;
  }
  .page-register .register-form .form-row {
    flex-direction: column;
    gap: 0;
  }
}

.page-profile {
  padding: 40px 0 60px 0;
  background: #fff;
}
.page-profile .profile-box {
  max-width: 420px;
  margin: 40px auto 0 auto;
  background: #f8f9fa;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(23, 57, 92, 0.08);
  padding: 40px 32px 32px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page-profile .profile-welcome {
  text-align: center;
  width: 100%;
}
.page-profile .profile-welcome h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #17395c;
  margin-bottom: 18px;
}
.page-profile .profile-welcome .profile-user {
  margin-bottom: 24px;
}
.page-profile .profile-welcome .profile-user .profile-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: #222;
  background: #e9ecef;
  border-radius: 10px;
  padding: 10px 24px;
  display: inline-block;
}
.page-profile .profile-welcome .btn-logout {
  display: inline-block;
  background: #e74c3c;
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  padding: 12px 32px;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
  margin-top: 8px;
  box-shadow: 0 2px 8px rgba(23, 57, 92, 0.07);
}
.page-profile .profile-welcome .btn-logout:hover {
  background: #c0392b;
}
@media (max-width: 600px) {
  .page-profile .profile-box {
    padding: 24px 8px 20px 8px;
  }
  .page-profile .profile-welcome h2 {
    font-size: 1.3rem;
  }
  .page-profile .profile-user .profile-name {
    font-size: 1rem;
    padding: 8px 12px;
  }
  .page-profile .btn-logout {
    padding: 10px 18px;
    font-size: 0.95rem;
  }
}

.page-psikolog-login .con {
  padding-top: 40px;
}
.page-psikolog-login .con .psikolog-login-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 600px;
  margin: 0 auto;
  border: 1px solid #dadada;
  padding: 20px;
  border-radius: 11px;
}
.page-psikolog-login .con .psikolog-login-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.page-psikolog-login .con .psikolog-login-form .form-group label {
  font-size: 1rem;
  font-weight: 500;
  color: #17395c;
  margin-bottom: 2px;
}
.page-psikolog-login .con .psikolog-login-form .input-icon {
  display: flex;
  align-items: center;
  background: #f3f6fb;
  border-radius: 10px;
  padding: 0 12px;
  height: 44px;
  border: 1.5px solid #e9ecef;
}
.page-psikolog-login .con .psikolog-login-form .input-icon img {
  width: 20px;
  opacity: 0.7;
  margin-right: 8px;
}
.page-psikolog-login .con .psikolog-login-form .input-icon input {
  border: none;
  background: transparent;
  outline: none;
  font-size: 1rem;
  font-family: "Urbanist", sans-serif;
  font-weight: 500;
  width: 100%;
  color: #17395c;
}
.page-psikolog-login .con .psikolog-login-form .form-options {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 4px;
}
.page-psikolog-login .con .psikolog-login-form .form-options .forgot-password {
  font-size: 0.98rem;
  color: #222;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 2px;
  transition: color 0.2s;
}
.page-psikolog-login .con .psikolog-login-form .form-options .forgot-password:hover {
  color: #18b5ca;
}
.page-psikolog-login .con .psikolog-login-form .btn {
  width: 100%;
  border: none;
  border-radius: 10px;
  padding: 12px 0;
  height: 43px;
  font-size: 1.08rem;
  font-weight: 700;
  font-family: "Urbanist", sans-serif;
  cursor: pointer;
  margin-bottom: 0px;
  box-shadow: 0 2px 12px rgba(23, 57, 92, 0.1);
  transition: background 0.2s, color 0.2s;
}
.page-psikolog-login .con .psikolog-login-form .btn.btn-login {
  background: #18b5ca;
  color: #fff;
}
.page-psikolog-login .con .psikolog-login-form .btn.btn-login:hover {
  background: #1dc2d9;
}
.page-psikolog-login .con .psikolog-login-form .btn.btn-register {
  background: #17395c;
  color: #fff;
  text-align: center;
  display: block;
}
.page-psikolog-login .con .psikolog-login-form .btn.btn-register:hover {
  background: #1e4c7b;
}

.psikolog-navbar {
  display: flex;
  background: #f8f9fa;
  border-radius: 12px;
  padding: 6px;
  margin-bottom: 30px;
  gap: 6px;
}
.psikolog-navbar .tab-btn {
  flex: 1;
  background: transparent;
  border: none;
  padding: 16px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  color: #6c757d;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.psikolog-navbar .tab-btn:hover {
  background: rgba(23, 57, 92, 0.1);
  color: #17395c;
}
.psikolog-navbar .tab-btn.active {
  background: #17395c;
  color: #fff;
  box-shadow: 0 2px 8px rgba(23, 57, 92, 0.3);
}
.psikolog-navbar .tab-btn i {
  font-size: 18px;
}
@media (max-width: 768px) {
  .psikolog-navbar {
    flex-direction: column;
  }
  .psikolog-navbar .tab-btn {
    text-align: center;
  }
}

.randevu-tabs {
  display: flex;
  background: #f8f9fa;
  border-radius: 12px;
  padding: 6px;
  margin-bottom: 30px;
  gap: 6px;
}
.randevu-tabs .tab-btn {
  flex: 1;
  background: transparent;
  border: none;
  padding: 16px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  color: #6c757d;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.randevu-tabs .tab-btn.active {
  background: #17395c;
  color: #fff;
  box-shadow: 0 2px 8px rgba(23, 57, 92, 0.3);
}

.page-psikolog-randevular {
  padding: 40px 0 60px 0;
  background: #fff;
}
.page-psikolog-randevular .con {
  margin: 0 auto;
}
.page-psikolog-randevular .empty-state {
  text-align: center;
  padding: 60px 20px;
  color: #6c757d;
  background: #f8f9fa;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page-psikolog-randevular .empty-state i {
  font-size: 48px;
  color: #16b5ca;
  margin-bottom: 18px;
}
.page-psikolog-randevular .empty-state h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #17395c;
}
.page-psikolog-randevular .empty-state p {
  font-size: 1.05rem;
  color: #6c757d;
  margin-bottom: 0;
}
.page-psikolog-randevular .tab-content {
  display: none;
  animation: fadeIn 0.3s ease-in-out;
}
.page-psikolog-randevular .tab-content.active {
  display: block;
}
.page-psikolog-randevular .randevu-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.page-psikolog-randevular .randevu-item {
  background: #fff;
  border: 2px solid #e9ecef;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.page-psikolog-randevular .randevu-item:hover {
  border-color: #17395c;
  box-shadow: 0 4px 16px rgba(23, 57, 92, 0.1);
  transform: translateY(-2px);
}
.page-psikolog-randevular .randevu-item.completed {
  border-color: #28a745;
  background: linear-gradient(135deg, #f8fff9 0%, #e8f5e8 100%);
}
.page-psikolog-randevular .randevu-item.cancelled {
  border-color: #dc3545;
  background: linear-gradient(135deg, #fff8f8 0%, #f8e8e8 100%);
  opacity: 0.8;
}
@media (max-width: 768px) {
  .page-psikolog-randevular .randevu-item {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    padding: 20px;
  }
}
.page-psikolog-randevular .randevu-info {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
}
@media (max-width: 768px) {
  .page-psikolog-randevular .randevu-info {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
}
.page-psikolog-randevular .randevu-date {
  background: linear-gradient(135deg, #17395c 0%, #1e4c7b 100%);
  color: #fff;
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  min-width: 80px;
  box-shadow: 0 4px 12px rgba(23, 57, 92, 0.3);
}
.page-psikolog-randevular .randevu-date .date-day {
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
}
.page-psikolog-randevular .randevu-date .date-month {
  font-size: 12px;
  font-weight: 500;
  opacity: 0.9;
  line-height: 1;
  margin-bottom: 2px;
}
.page-psikolog-randevular .randevu-date .date-year {
  font-size: 11px;
  opacity: 0.8;
  line-height: 1;
}
@media (max-width: 768px) {
  .page-psikolog-randevular .randevu-date {
    min-width: 70px;
    padding: 12px;
  }
}
.page-psikolog-randevular .randevu-details {
  flex: 1;
}
.page-psikolog-randevular .randevu-details h4 {
  font-size: 18px;
  font-weight: 700;
  color: #17395c;
  margin: 0 0 8px 0;
}
.page-psikolog-randevular .randevu-details p {
  margin: 4px 0;
  font-size: 14px;
  color: #6c757d;
  display: flex;
  align-items: center;
  gap: 8px;
}
.page-psikolog-randevular .randevu-details p i {
  color: #17395c;
  width: 16px;
}
.page-psikolog-randevular .randevu-details .randevu-status {
  font-weight: 600;
  margin-top: 8px;
}
.page-psikolog-randevular .randevu-details .randevu-status.completed {
  color: #28a745;
}
.page-psikolog-randevular .randevu-details .randevu-status.cancelled {
  color: #dc3545;
}
@media (max-width: 768px) {
  .page-psikolog-randevular .randevu-details {
    text-align: center;
  }
  .page-psikolog-randevular .randevu-details p {
    justify-content: center;
  }
}
.page-psikolog-randevular .randevu-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .page-psikolog-randevular .randevu-actions {
    justify-content: center;
    flex-wrap: wrap;
  }
}
.page-psikolog-randevular .btn {
  padding: 10px 20px;
  border-radius: 8px;
  border: none;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 100px;
}
.page-psikolog-randevular .btn.btn-primary {
  background: #18b5ca;
  color: #fff;
}
.page-psikolog-randevular .btn.btn-primary:hover {
  background: #16a2b5;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(24, 181, 202, 0.3);
}
.page-psikolog-randevular .btn.btn-secondary {
  background: #6c757d;
  color: #fff;
}
.page-psikolog-randevular .btn.btn-secondary:hover {
  background: #5a6268;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(108, 117, 125, 0.3);
}
.page-psikolog-randevular .btn.btn-outline {
  background: transparent;
  color: #17395c;
  border: 2px solid #17395c;
}
.page-psikolog-randevular .btn.btn-outline:hover {
  background: #17395c;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(23, 57, 92, 0.3);
}
@media (max-width: 768px) {
  .page-psikolog-randevular .btn {
    padding: 8px 16px;
    font-size: 13px;
    min-width: 90px;
  }
}
.page-psikolog-randevular .empty-state {
  text-align: center;
  padding: 60px 20px;
  color: #6c757d;
}
.page-psikolog-randevular .empty-state i {
  font-size: 48px;
  color: #dee2e6;
  margin-bottom: 16px;
}
.page-psikolog-randevular .empty-state h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: #495057;
}
.page-psikolog-randevular .empty-state p {
  font-size: 16px;
  margin-bottom: 24px;
}
.page-psikolog-randevular .empty-state .btn {
  margin-top: 16px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.psikolog-profil {
  padding: 40px 0 60px 0;
}
.psikolog-profil .psikolog-form {
  animation: fadeIn 0.3s ease-in-out;
}
.psikolog-profil .psikolog-form .profile-card .form-area {
  background: #fff;
  border-radius: 24px;
  padding: 28px 28px 36px 28px;
  border: 1px solid rgba(23, 57, 92, 0.06);
  box-shadow: 0 8px 30px rgba(23, 57, 92, 0.04);
  margin-bottom: 15px;
}
.psikolog-profil .psikolog-form .profile-card h3 {
  color: #17395c;
  font-weight: 800;
  margin: 0 0 18px 0;
  font-size: 1.05rem;
}
.psikolog-profil .psikolog-form .profile-card .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 32px;
  align-items: start;
}
@media (max-width: 992px) {
  .psikolog-profil .psikolog-form .profile-card .form-grid {
    grid-template-columns: 1fr;
  }
}
.psikolog-profil .psikolog-form .profile-card .form-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}
.psikolog-profil .psikolog-form .profile-card .btn-save {
  background: #163e5a;
  color: #fff;
  padding: 14px 64px;
  height: 60px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 17px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: 0;
}
.psikolog-profil .psikolog-form .profile-card .btn-save:hover {
  background: #1dc2d9;
  color: #17395c;
}
.psikolog-profil .psikolog-form .profile-card .item > label {
  display: block;
  color: #667085;
  font-size: 0.9rem;
  margin: 14px 0 8px 0;
  font-weight: 600;
}
.psikolog-profil .psikolog-form .profile-card .form-col {
  /* customJsonForm styles for profile (Eğitim Geçmişi) */
  /* placeholder shown while sorting (jQuery UI) */
}
.psikolog-profil .psikolog-form .profile-card .form-col .input-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border: 1px solid rgba(23, 57, 92, 0.08);
  border-radius: 12px;
  padding: 14px 14px;
  min-height: 52px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
  position: relative;
}
.psikolog-profil .psikolog-form .profile-card .form-col .input-pill .value {
  color: #17395c;
  font-weight: 800;
  font-size: 1rem;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: calc(100% - 44px);
}
.psikolog-profil .psikolog-form .profile-card .form-col .input-pill .value-input {
  border: none;
  outline: none;
  background: transparent;
  color: #17395c;
  font-weight: 800;
  font-size: 1rem;
  width: 100%;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.psikolog-profil .psikolog-form .profile-card .form-col .input-pill .value-select {
  border: none;
  outline: none;
  background: transparent;
  color: #17395c;
  font-weight: 800;
  font-size: 1rem;
  width: 100%;
  padding-right: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: default;
}
.psikolog-profil .psikolog-form .profile-card .form-col .input-pill .btn-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(23, 57, 92, 0.08);
  background: #fff;
  color: #17395c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.15s, transform 0.12s;
}
.psikolog-profil .psikolog-form .profile-card .form-col .input-pill .btn-icon.add {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #fff;
  font-weight: 800;
}
.psikolog-profil .psikolog-form .profile-card .form-col .input-pill .btn-icon:hover {
  background: rgba(23, 57, 92, 0.04);
  transform: translateY(-1px);
}
.psikolog-profil .psikolog-form .profile-card .form-col .input-pill .field-error {
  position: absolute;
  left: 14px;
  bottom: -20px;
  color: #d32;
  font-size: 0.9rem;
  line-height: 1;
  pointer-events: none;
}
.psikolog-profil .psikolog-form .profile-card .form-col .customJsonForm {
  width: 100%;
}
.psikolog-profil .psikolog-form .profile-card .form-col .customJsonForm .cj-list {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.psikolog-profil .psikolog-form .profile-card .form-col .customJsonForm .cj-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: #ffffff;
  border: 1px solid rgba(23, 57, 92, 0.06);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(23, 57, 92, 0.04);
}
.psikolog-profil .psikolog-form .profile-card .form-col .customJsonForm .cj-item .cj-handle {
  cursor: grab;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #f1f5f9;
  color: #17395c;
  font-size: 18px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.psikolog-profil .psikolog-form .profile-card .form-col .customJsonForm .cj-item .cj-text {
  flex: 1 1 auto;
  color: #17395c;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.psikolog-profil .psikolog-form .profile-card .form-col .customJsonForm .cj-item .cj-edit-input {
  width: 100%;
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid rgba(23, 57, 92, 0.08);
}
.psikolog-profil .psikolog-form .profile-card .form-col .customJsonForm .cj-item a.cj-edit,
.psikolog-profil .psikolog-form .profile-card .form-col .customJsonForm .cj-item a.cj-del {
  color: #17395c;
  background: transparent;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 13px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background 0.15s, color 0.15s;
}
.psikolog-profil .psikolog-form .profile-card .form-col .customJsonForm .cj-item a.cj-edit:hover {
  background: rgba(23, 57, 92, 0.06);
}
.psikolog-profil .psikolog-form .profile-card .form-col .customJsonForm .cj-item a.cj-del {
  color: #c53030;
  border-color: rgba(197, 48, 48, 0.06);
}
.psikolog-profil .psikolog-form .profile-card .form-col .customJsonForm .cj-form {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
}
.psikolog-profil .psikolog-form .profile-card .form-col .customJsonForm .cj-form .input {
  flex: 1 1 auto;
}
.psikolog-profil .psikolog-form .profile-card .form-col .customJsonForm .cj-form .cj-input {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(23, 57, 92, 0.08);
  background: #fff;
}
.psikolog-profil .psikolog-form .profile-card .form-col .customJsonForm .cj-form .btnControl {
  display: flex;
  align-items: center;
}
.psikolog-profil .psikolog-form .profile-card .form-col .customJsonForm .cj-form .cj-add {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #17395c;
  color: #fff;
  font-size: 20px;
  text-decoration: none;
  border: none;
  box-shadow: 0 8px 20px rgba(23, 57, 92, 0.12);
}
@media (max-width: 600px) {
  .psikolog-profil .psikolog-form .profile-card .form-col .customJsonForm .cj-item {
    padding: 10px;
  }
  .psikolog-profil .psikolog-form .profile-card .form-col .customJsonForm .cj-handle {
    width: 32px;
    height: 32px;
  }
  .psikolog-profil .psikolog-form .profile-card .form-col .customJsonForm .cj-add {
    width: 40px;
    height: 40px;
  }
}
.psikolog-profil .psikolog-form .profile-card .form-col .cj-item-placeholder {
  background: rgba(23, 57, 92, 0.03);
  border: 1px dashed rgba(23, 57, 92, 0.08);
  height: 48px;
  border-radius: 12px;
  margin: 0;
}
.psikolog-profil .upload_alani.egitim_belgeler {
  border: 2px dashed #ddd;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  background: #fafafa;
  margin-top: 10px;
}
.psikolog-profil .upload_alani.egitim_belgeler .upload-btn {
  display: inline-block;
  background: #17395c;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}
.psikolog-profil .upload_alani.egitim_belgeler .upload-btn:hover {
  background: #2a5a8a;
}
.psikolog-profil .upload_alani.egitim_belgeler .upload-btn.disabled {
  background: #ccc;
  cursor: not-allowed;
}
.psikolog-profil .upload_alani.egitim_belgeler .upload-btn.disabled:hover {
  background: #ccc;
}
.psikolog-profil .upload_alani.egitim_belgeler .upload-btn i {
  margin-right: 8px;
}
.psikolog-profil .upload_alani.egitim_belgeler .progress_bar {
  margin: 15px 0;
  background: #e0e0e0;
  border-radius: 5px;
  overflow: hidden;
  height: 6px;
  position: relative;
}
.psikolog-profil .upload_alani.egitim_belgeler .progress_bar div {
  height: 100%;
  background: linear-gradient(90deg, #17395c, #2a5a8a);
  width: 0%;
  transition: width 0.3s;
}
.psikolog-profil .upload_alani.egitim_belgeler .progress_bar .percent {
  position: absolute;
  top: -25px;
  right: 0;
  font-size: 12px;
  color: #666;
}
.psikolog-profil .upload_alani.egitim_belgeler .file-info {
  margin: 10px 0;
  color: #666;
  font-size: 14px;
}
.psikolog-profil .uploaded-documents {
  margin-top: 15px;
}
.psikolog-profil .uploaded-documents .document-list h4 {
  color: #17395c;
  font-size: 16px;
  margin-bottom: 10px;
}
.psikolog-profil .uploaded-documents .document-list .document-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  margin-bottom: 8px;
}
.psikolog-profil .uploaded-documents .document-list .document-item .doc-info {
  display: flex;
  align-items: center;
  flex: 1;
}
.psikolog-profil .uploaded-documents .document-list .document-item .doc-info .file-ext {
  background: #17395c;
  color: white;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: bold;
  margin-right: 10px;
  min-width: 35px;
  text-align: center;
}
.psikolog-profil .uploaded-documents .document-list .document-item .doc-info .doc-name-link {
  flex: 1;
  text-decoration: none;
  color: #17395c;
  transition: color 0.3s;
}
.psikolog-profil .uploaded-documents .document-list .document-item .doc-info .doc-name-link:hover {
  color: #2a5a8a;
  text-decoration: underline;
}
.psikolog-profil .uploaded-documents .document-list .document-item .doc-info .doc-name-link .doc-name {
  color: inherit;
  font-size: 14px;
  cursor: pointer;
}
.psikolog-profil .uploaded-documents .document-list .document-item .remove-doc {
  background: #dc3545;
  color: white;
  border: none;
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 12px;
  cursor: pointer;
  transition: background 0.3s;
}
.psikolog-profil .uploaded-documents .document-list .document-item .remove-doc:hover {
  background: #c82333;
}
.psikolog-profil .uploaded-documents .document-list .no-documents {
  text-align: center;
  padding: 20px;
  color: #666;
  font-style: italic;
}

.uzmanlik-grid {
  /*display: grid;
  grid-template-columns: repeat(1, 1fr);*/
  gap: 10px;
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 992px) {
  .uzmanlik-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .uzmanlik-grid {
    grid-template-columns: 1fr;
  }
}
.uzmanlik-grid .uzmanlik-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 7px 9px 7px 8px;
  background: #fff;
  border: 1px solid #e6e9ee;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.18s ease-in-out;
  font-weight: 700;
  color: #17395c;
  /* when checkbox is checked, style the square and the title */
  /* draw a white checkmark using borders */
}
.uzmanlik-grid .uzmanlik-item .uzmanlik-checkbox {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.uzmanlik-grid .uzmanlik-item .checkbox-square {
  width: 22px;
  height: 22px;
  border: 2px solid #cfd8e3;
  border-radius: 4px;
  background: #fff;
  display: inline-block;
  flex: 0 0 auto;
  transition: all 0.12s ease-in-out;
  box-sizing: border-box;
  position: relative;
}
.uzmanlik-grid .uzmanlik-item .uzmanlik-title {
  display: inline-block;
  padding-left: 6px;
}
.uzmanlik-grid .uzmanlik-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(23, 57, 92, 0.08);
}
.uzmanlik-grid .uzmanlik-item input:checked + .checkbox-square {
  background: linear-gradient(135deg, #17395c 0%, #1e4c7b 100%);
  border-color: transparent;
}
.uzmanlik-grid .uzmanlik-item input:checked + .checkbox-square::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 3px;
  width: 6px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  box-sizing: border-box;
}
.uzmanlik-grid .uzmanlik-item input:checked + .checkbox-square + .uzmanlik-title {
  color: #17395c;
  font-weight: 800;
}

.register-test {
  padding-top: 100px;
  padding-bottom: 70px;
}

.question-card {
  max-width: 690px;
  margin: 0 auto;
  background: #fff;
  border-radius: 6px;
  box-shadow: -1px 0 20px rgba(37, 38, 37, 0.05), 0 1px 5px rgba(37, 38, 37, 0.1);
  padding: 38px 24px 30px;
}

.question-card-inner {
  padding: 8px 12px;
}

.question {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 22px;
  color: #1f2937;
  text-align: center;
}

.question-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: auto;
  padding-right: 6px;
}

.question-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 14px;
  border: 1px solid #17b5cb;
  border-radius: 10px;
  cursor: pointer;
}

.question-row {
  position: relative;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.question-row input[type=radio] {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  opacity: 0;
  z-index: 2;
  display: none;
}

.question-row .question-title {
  position: relative;
  padding-left: 28px;
}

.question-row .question-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid #17b5cb;
  background: transparent;
  box-sizing: border-box;
  transition: background-color 180ms ease, border-color 180ms ease;
}

.question-row:hover {
  background: #17b5cb;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.12);
}

.question-row:hover .question-title,
.question-row:hover .question-title::before {
  color: #fff;
  border-color: #fff;
}

.question-row .question-title::after {
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.85);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  opacity: 0;
  transition: opacity 140ms ease, transform 140ms ease;
}

.question-row:hover .question-title::after,
.question-row input[type=radio]:checked + .question-title::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.question-row input[type=radio]:focus + .question-title::before {
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.14);
}

.question-row input[type=radio]:checked + .question-title {
  color: inherit;
}

.question-title {
  font-size: 16px;
  color: #0f172a;
}

.question-actions {
  margin-top: 16px;
  text-align: right;
}

.btn.btn-primary {
  background: #2563eb;
  color: #fff;
  border: none;
  padding: 8px 14px;
  border-radius: 8px;
}

@media (max-width: 480px) {
  .question-card {
    padding: 16px;
  }
  .question {
    font-size: 18px;
  }
}
.question-card-inner {
  padding: 8px 12px;
  position: relative;
}

/* Geri dön butonu */
.back-button {
  position: absolute;
  left: -41px;
  top: 15px;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: #17395c;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(23, 181, 203, 0.2);
  font-size: 16px;
  line-height: 1;
  padding: 0;
}

.back-button .chev {
  display: inline-block;
  transform: translateX(1px);
  font-weight: 700;
}

/* küçük ekranlarda kartın kenarına sığdır */
@media (max-width: 480px) {
  .back-button {
    left: 8px;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    font-size: 18px;
  }
}
/* Text input styles for type_id == 3 questions */
.text-input-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 8px 0;
}

.question-text-input {
  width: 100%;
  padding: 16px 18px;
  border: 2px solid #17b5cb;
  border-radius: 10px;
  font-size: 16px;
  font-family: inherit;
  background: #fff;
  color: #1f2937;
  transition: border-color 180ms ease, box-shadow 180ms ease;
  outline: none;
  box-sizing: border-box;
}

.question-text-input:focus {
  border-color: #0ea5e9;
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.question-text-input::-moz-placeholder {
  color: #94a3b8;
}

.question-text-input::placeholder {
  color: #94a3b8;
}

.btn-text-submit {
  align-self: flex-end;
  background: #17b5cb;
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 180ms ease, transform 120ms ease;
  min-width: 120px;
  width: 100%;
}

.btn-text-submit:hover {
  background: #1396b0;
  transform: translateY(-1px);
}

.btn-text-submit:active {
  transform: translateY(0);
}

@media (max-width: 480px) {
  .text-input-wrapper {
    gap: 12px;
  }
  .question-text-input {
    padding: 14px 16px;
    font-size: 16px;
  }
  .btn-text-submit {
    align-self: stretch;
    padding: 14px 20px;
  }
}
/* Checkbox (çoklu seçim) için özel stiller */
.question-row-checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 14px;
  border: 1px solid #17b5cb;
  border-radius: 10px;
  cursor: pointer;
}

.question-row-checkbox {
  position: relative;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.question-row-checkbox:hover {
  background: #17b5cb;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.12);
}

.question-row-checkbox:hover .question-title,
.question-row-checkbox:hover .question-title::before {
  color: #fff;
  border-color: #fff;
}

.question-row-checkbox input[type=checkbox] {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  opacity: 0;
  z-index: 2;
  display: block;
}

.question-row-checkbox .question-title.checkbox {
  position: relative;
  padding-left: 28px;
}

.question-row-checkbox .question-title.checkbox::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 5px;
  border: 1.5px solid #17b5cb;
  background: transparent;
  box-sizing: border-box;
  transition: background-color 180ms ease, border-color 180ms ease;
}

.question-row-checkbox .question-title.checkbox::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 50%;
  width: 6px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: translateY(-60%) rotate(45deg);
  opacity: 0;
  transition: opacity 140ms ease;
  pointer-events: none;
}

.question-row-checkbox input[type=checkbox]:checked + .question-title.checkbox::after {
  opacity: 1;
}

.question-row-checkbox input[type=checkbox]:checked + .question-title.checkbox::before {
  border-color: #17b5cb;
  background: #17b5cb;
}

.question-row-checkbox input[type=checkbox]:focus + .question-title.checkbox::before {
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.14);
}

.question-row-checkbox input[type=checkbox]:checked + .question-title.checkbox {
  color: inherit;
}

.question-row-checkbox:hover .question-title.checkbox::before {
  background: #17b5cb;
  border-color: #fff;
}

.btn-multi-submit {
  align-self: flex-end;
  background: #17b5cb;
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 180ms ease, transform 120ms ease;
  min-width: 120px;
  width: 100%;
}

.btn-multi-submit:hover {
  background: #1396b0;
  transform: translateY(-1px);
}

.btn-multi-submit:active {
  transform: translateY(0);
}

@media (max-width: 480px) {
  .btn-multi-submit {
    align-self: stretch;
    padding: 14px 20px;
  }
}
/* Country select styles */
.country-select-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 8px 0;
}

.country-select {
  width: 100%;
  padding: 16px 18px;
  border: 2px solid #17b5cb;
  border-radius: 10px;
  font-size: 16px;
  font-family: inherit;
  background: #fff;
  color: #1f2937;
  transition: border-color 180ms ease, box-shadow 180ms ease;
  outline: none;
  box-sizing: border-box;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%2317b5cb' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 16px;
  padding-right: 40px;
}

.country-select:focus {
  border-color: #0ea5e9;
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.country-select option {
  padding: 12px;
  background: #fff;
  color: #1f2937;
}

.country-select option:hover {
  background: #f1f5f9;
}

.btn-country-submit {
  align-self: flex-end;
  background: #17b5cb;
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 180ms ease, transform 120ms ease;
  min-width: 120px;
  width: 100%;
}

.btn-country-submit:hover {
  background: #1396b0;
  transform: translateY(-1px);
}

.btn-country-submit:active {
  transform: translateY(0);
}

@media (max-width: 480px) {
  .country-select-wrapper {
    gap: 12px;
  }
  .country-select {
    padding: 14px 16px;
    padding-right: 40px;
    font-size: 16px;
  }
  .btn-country-submit {
    align-self: stretch;
    padding: 14px 20px;
  }
}
.test-app {
  /* Geri dön butonu */
  /* küçük ekranlarda kartın kenarına sığdır */
  /* Text input styles for type_id == 3 questions */
  /* Checkbox (çoklu seçim) için özel stiller */
  /* Country select styles */
}
.test-app .my-test {
  padding-top: 100px;
  padding-bottom: 70px;
}
.test-app .question-card {
  max-width: 690px;
  margin: 0 auto;
  background: #fff;
  border-radius: 6px;
  box-shadow: -1px 0 20px rgba(37, 38, 37, 0.05), 0 1px 5px rgba(37, 38, 37, 0.1);
  padding: 38px 24px 30px;
}
.test-app .question-card-inner {
  padding: 8px 12px;
}
.test-app .question {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 22px;
  color: #1f2937;
  text-align: center;
}
.test-app .question-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: auto;
  padding-right: 6px;
}
.test-app .question-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 14px;
  border: 1px solid #17b5cb;
  border-radius: 10px;
  cursor: pointer;
}
.test-app .question-row {
  position: relative;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}
.test-app .question-row input[type=radio] {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  opacity: 0;
  z-index: 2;
  display: none;
}
.test-app .question-row .question-title {
  position: relative;
  padding-left: 28px;
}
.test-app .question-row .question-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid #17b5cb;
  background: transparent;
  box-sizing: border-box;
  transition: background-color 180ms ease, border-color 180ms ease;
}
.test-app .question-row:hover {
  background: #17b5cb;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.12);
}
.test-app .question-row:hover .question-title,
.test-app .question-row:hover .question-title::before {
  color: #fff;
  border-color: #fff;
}
.test-app .question-row .question-title::after {
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.85);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  opacity: 0;
  transition: opacity 140ms ease, transform 140ms ease;
}
.test-app .question-row:hover .question-title::after,
.test-app .question-row input[type=radio]:checked + .question-title::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.test-app .question-row input[type=radio]:focus + .question-title::before {
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.14);
}
.test-app .question-row input[type=radio]:checked + .question-title {
  color: inherit;
}
.test-app .question-title {
  font-size: 16px;
  color: #0f172a;
}
.test-app .question-actions {
  margin-top: 16px;
  text-align: right;
}
.test-app .btn.btn-primary {
  background: #2563eb;
  color: #fff;
  border: none;
  padding: 8px 14px;
  border-radius: 8px;
}
@media (max-width: 480px) {
  .test-app .question-card {
    padding: 16px;
  }
  .test-app .question {
    font-size: 18px;
  }
}
.test-app .question-card-inner {
  padding: 8px 12px;
  position: relative;
}
.test-app .back-button {
  position: absolute;
  left: -41px;
  top: 15px;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: #17395c;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(23, 181, 203, 0.2);
  font-size: 16px;
  line-height: 1;
  padding: 0;
}
.test-app .back-button .chev {
  display: inline-block;
  transform: translateX(1px);
  font-weight: 700;
}
@media (max-width: 480px) {
  .test-app .back-button {
    left: 8px;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    font-size: 18px;
  }
}
.test-app .text-input-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 8px 0;
}
.test-app .question-text-input {
  width: 100%;
  padding: 16px 18px;
  border: 2px solid #17b5cb;
  border-radius: 10px;
  font-size: 16px;
  font-family: inherit;
  background: #fff;
  color: #1f2937;
  transition: border-color 180ms ease, box-shadow 180ms ease;
  outline: none;
  box-sizing: border-box;
}
.test-app .question-text-input:focus {
  border-color: #0ea5e9;
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}
.test-app .question-text-input::-moz-placeholder {
  color: #94a3b8;
}
.test-app .question-text-input::placeholder {
  color: #94a3b8;
}
.test-app .btn-text-submit {
  align-self: flex-end;
  background: #17b5cb;
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 180ms ease, transform 120ms ease;
  min-width: 120px;
  width: 100%;
}
.test-app .btn-text-submit:hover {
  background: #1396b0;
  transform: translateY(-1px);
}
.test-app .btn-text-submit:active {
  transform: translateY(0);
}
@media (max-width: 480px) {
  .test-app .text-input-wrapper {
    gap: 12px;
  }
  .test-app .question-text-input {
    padding: 14px 16px;
    font-size: 16px;
  }
  .test-app .btn-text-submit {
    align-self: stretch;
    padding: 14px 20px;
  }
}
.test-app .question-row-checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 14px;
  border: 1px solid #17b5cb;
  border-radius: 10px;
  cursor: pointer;
}
.test-app .question-row-checkbox {
  position: relative;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}
.test-app .question-row-checkbox:hover {
  background: #17b5cb;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.12);
}
.test-app .question-row-checkbox:hover .question-title,
.test-app .question-row-checkbox:hover .question-title::before {
  color: #fff;
  border-color: #fff;
}
.test-app .question-row-checkbox input[type=checkbox] {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  opacity: 0;
  z-index: 2;
  display: block;
}
.test-app .question-row-checkbox .question-title.checkbox {
  position: relative;
  padding-left: 28px;
}
.test-app .question-row-checkbox .question-title.checkbox::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 5px;
  border: 1.5px solid #17b5cb;
  background: transparent;
  box-sizing: border-box;
  transition: background-color 180ms ease, border-color 180ms ease;
}
.test-app .question-row-checkbox .question-title.checkbox::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 50%;
  width: 6px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: translateY(-60%) rotate(45deg);
  opacity: 0;
  transition: opacity 140ms ease;
  pointer-events: none;
}
.test-app .question-row-checkbox input[type=checkbox]:checked + .question-title.checkbox::after {
  opacity: 1;
}
.test-app .question-row-checkbox input[type=checkbox]:checked + .question-title.checkbox::before {
  border-color: #17b5cb;
  background: #17b5cb;
}
.test-app .question-row-checkbox input[type=checkbox]:focus + .question-title.checkbox::before {
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.14);
}
.test-app .question-row-checkbox input[type=checkbox]:checked + .question-title.checkbox {
  color: inherit;
}
.test-app .question-row-checkbox:hover .question-title.checkbox::before {
  background: #17b5cb;
  border-color: #fff;
}
.test-app .btn-multi-submit {
  align-self: flex-end;
  background: #17b5cb;
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 180ms ease, transform 120ms ease;
  min-width: 120px;
  width: 100%;
}
.test-app .btn-multi-submit:hover {
  background: #1396b0;
  transform: translateY(-1px);
}
.test-app .btn-multi-submit:active {
  transform: translateY(0);
}
@media (max-width: 480px) {
  .test-app .btn-multi-submit {
    align-self: stretch;
    padding: 14px 20px;
  }
}
.test-app .country-select-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 8px 0;
}
.test-app .country-select {
  width: 100%;
  padding: 16px 18px;
  border: 2px solid #17b5cb;
  border-radius: 10px;
  font-size: 16px;
  font-family: inherit;
  background: #fff;
  color: #1f2937;
  transition: border-color 180ms ease, box-shadow 180ms ease;
  outline: none;
  box-sizing: border-box;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%2317b5cb' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 16px;
  padding-right: 40px;
}
.test-app .country-select:focus {
  border-color: #0ea5e9;
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}
.test-app .country-select option {
  padding: 12px;
  background: #fff;
  color: #1f2937;
}
.test-app .country-select option:hover {
  background: #f1f5f9;
}
.test-app .btn-country-submit {
  align-self: flex-end;
  background: #17b5cb;
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 180ms ease, transform 120ms ease;
  min-width: 120px;
  width: 100%;
}
.test-app .btn-country-submit:hover {
  background: #1396b0;
  transform: translateY(-1px);
}
.test-app .btn-country-submit:active {
  transform: translateY(0);
}
@media (max-width: 480px) {
  .test-app .country-select-wrapper {
    gap: 12px;
  }
  .test-app .country-select {
    padding: 14px 16px;
    padding-right: 40px;
    font-size: 16px;
  }
  .test-app .btn-country-submit {
    align-self: stretch;
    padding: 14px 20px;
  }
}

.test-form {
  padding-top: 30px;
}
.test-form .test-head {
  font-size: 40px;
  font-weight: 900;
  color: #212529;
  margin-bottom: 40px;
}
.test-form .test-text {
  font-size: 17px;
  color: #212529;
  line-height: 1.8;
  margin-bottom: 30px;
}
.test-form .test-text p {
  margin-bottom: 15px;
}
.test-form .test-text em {
  font-size: 13px;
}
.test-form .test-questions .test-item {
  padding: 20px;
  border: 1px solid #e9ecef;
  margin-bottom: 30px;
  border-radius: 15px;
  color: #212529;
}
.test-form .test-questions .test-item .item-head {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 15px;
}
.test-form .test-questions .test-item .item-answers .radio-item {
  margin-bottom: 10px;
}
.test-form .test-questions .test-item .item-answers .radio-item input[type=radio] {
  display: none;
}
.test-form .test-questions .test-item .item-answers .radio-item input[type=radio]:checked + label {
  color: #fff;
  background-color: #3168f1;
}
.test-form .test-questions .test-item .item-answers .radio-item input[type=radio]:checked + label::before {
  border: 1px solid #fff;
}
.test-form .test-questions .test-item .item-answers .radio-item input[type=radio]:checked + label::after {
  width: 16px;
  height: 16px;
  background-color: #fff;
  position: absolute;
  content: "";
  border-radius: 100%;
  left: 20px;
  align-items: center;
  display: flex;
}
.test-form .test-questions .test-item .item-answers .radio-item label {
  width: 100%;
  border: 1px solid rgba(50, 104, 243, 0.5411764706);
  color: #222;
  text-align: left;
  border-radius: 12px;
  padding: 12px 16px 12px 48px;
  cursor: pointer;
  background-color: #fff;
  position: relative;
  transition: 0.1s;
  align-items: center;
  display: flex;
  font-size: 0.875rem;
}
.test-form .test-questions .test-item .item-answers .radio-item label:hover {
  color: #fff;
  background-color: #3168f1;
}
.test-form .test-questions .test-item .item-answers .radio-item label:hover::before {
  border: 1px solid #fff;
}
.test-form .test-questions .test-item .item-answers .radio-item label:hover::after {
  width: 16px;
  height: 16px;
  background-color: #fff;
  position: absolute;
  content: "";
  border-radius: 100%;
  left: 20px;
  align-items: center;
  display: flex;
}
.test-form .test-questions .test-item .item-answers .radio-item label::before {
  width: 24px;
  height: 24px;
  border: 1px solid rgba(50, 104, 243, 0.5411764706);
  position: absolute;
  content: "";
  border-radius: 100%;
  left: 16px;
}
.test-form .test-checkbox {
  display: flex;
  align-items: center;
  margin-top: 24px;
  padding-left: 30px;
  margin-bottom: 30px;
  color: #212529;
}
.test-form .test-checkbox input[type=checkbox] {
  display: none;
}
.test-form .test-checkbox label {
  position: relative;
  padding-left: 40px;
  cursor: pointer;
  font-size: 15px;
  color: #222;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: color 0.2s;
}
.test-form .test-checkbox label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border: 2px solid #3168f1;
  border-radius: 2px;
  background: #fff;
  box-sizing: border-box;
  transition: border-color 0.2s, background 0.2s;
}
.test-form .test-checkbox input[type=checkbox]:checked + label {
  color: #3168f1;
}
.test-form .test-checkbox input[type=checkbox]:checked + label::before {
  background: #3168f1;
  border-color: #3168f1;
}
.test-form .test-checkbox label::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%) scale(0);
  width: 7px;
  height: 9px;
  border-radius: 2px;
  border-left: 3px solid #fff;
  border-bottom: 3px solid #fff;
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55), opacity 0.2s;
  pointer-events: none;
}
.test-form .test-checkbox input[type=checkbox]:checked + label::after {
  opacity: 1;
  transform: translateY(-50%) scale(1) rotate(-45deg);
}
.test-form .test-warn {
  font-size: 15px;
  color: #484a4c;
  margin-bottom: 30px;
}
.test-form .test-submit {
  text-align: center;
}
.test-form .test-submit button {
  background-color: #17395c;
  color: #fff;
  padding: 11px 40px;
  font-size: 18px;
  border-radius: 10px;
  cursor: pointer;
  border: 0;
}
.test-form .test-submit button:hover {
  background-color: #222;
  color: #fff;
}

.page-psikolog-register .con {
  padding-top: 40px;
}
.page-psikolog-register .con .psikolog-register-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.page-psikolog-register .con .psikolog-register-form .form-row {
  display: flex;
  gap: 24px;
  width: 100%;
}
@media (max-width: 600px) {
  .page-psikolog-register .con .psikolog-register-form .form-row {
    flex-direction: column;
    gap: 0;
  }
}
.page-psikolog-register .con .psikolog-register-form .form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.page-psikolog-register .con .psikolog-register-form .form-group label {
  font-weight: 700;
  margin-bottom: 8px;
  color: #17395c;
  font-size: 1.05rem;
}
.page-psikolog-register .con .psikolog-register-form .form-group input {
  border: 1px solid #dbe2ea;
  border-radius: 14px;
  padding: 18px 18px;
  font-size: 1.1rem;
  font-family: "Urbanist", sans-serif;
  font-weight: 500;
  outline: none;
  transition: border 0.2s;
  background: #fff;
}
.page-psikolog-register .con .psikolog-register-form .form-group input:focus {
  border-color: #18b5ca;
}
.page-psikolog-register .con .psikolog-register-form .form-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}
.page-psikolog-register .con .psikolog-register-form .form-checkboxes .form-checkbox {
  display: flex;
  align-items: center;
}
.page-psikolog-register .con .psikolog-register-form .form-checkboxes .form-checkbox input[type=checkbox] {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}
.page-psikolog-register .con .psikolog-register-form .form-checkboxes .form-checkbox label {
  font-size: 1rem;
  color: #222;
}
.page-psikolog-register .con .psikolog-register-form .form-checkboxes .form-checkbox label a {
  color: #18b5ca;
  text-decoration: underline;
  font-weight: 700;
}
.page-psikolog-register .con .psikolog-register-form .register-submit {
  margin-top: 18px;
  width: 100%;
  background: #18b5ca;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  border: none;
  border-radius: 16px;
  padding: 18px 0;
  cursor: pointer;
  transition: background 0.2s;
  letter-spacing: 1px;
}
.page-psikolog-register .con .psikolog-register-form .register-submit:hover {
  background: #1499b0;
}/*# sourceMappingURL=style.css.map */