@import url("https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap");

body {
  font-family: "Figtree", serif;
  user-select: none;
  overflow-y: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

::-webkit-scrollbar {
  display: none;
}

/* ================= [Header] ================= */
header {
  color: #212529;
  font-size: 14px;
  background-color: #fff;
  border: 1px solid #e6e6e6;
}

.header-logo {
  max-width: 140px;
}

.footer-logo {
  max-width: 150px;
}

.navbar-toggler {
  border: none;
  background: transparent;
}

.navbar-toggler-icon {
  font-size: 30px;
  color: #f50808;
}

.navbar-nav .nav-item {
  margin-right: 15px;
}

.navbar-nav .nav-item:hover {
  color: #f50808;
}

.navbar-nav .nav-link:hover {
  color: #f50808;
}

.dropdown-menu {
  padding: 10px;
}

.dropdown-menu .dropdown-item {
  padding: 5px 15px;
  font-size: 13px;
}

.dropdown-menu .dropdown-item:hover {
  color: #f50808;
}

.dropdown-menu .dropdown-item:active {
  background-color: transparent !important;
  color: #f50808 !important;
  /* Seçili öğe turuncu */
}

.mobile-dropdown-title {
  font-size: 15px;
  font-weight: 700;
}

.mobile-dropdown-item {
  margin-top: 5px;
}

.mobile-dropdown-item a {
  font-size: 14px;
  margin-bottom: 10px;
}
/* ================= [Button] ================= */

.button-group {
  display: flex;
  gap: 10px;
}

.default-button {
  background-color: #f50808;
  color: white;
  border: 1px solid #f50808;
  width: auto;
  height: 40px;
  font-size: 13px;
  font-weight: 700;
  padding: 9px 30px;
  border-radius: 50px;
}

.default-button:hover {
  background-color: #212529;
  color: white;
}

.default-bordered-button {
  color: #f50808;
  border: 1px solid #f50808;
  width: auto;
  height: 40px;
  font-size: 13px;
  font-weight: 700;
  padding: 9px 30px;
  border-radius: 50px;
}

.default-bordered-button:hover {
  background-color: #212529;
  color: white;
}

.clear-button {
  color: #f50808;
  outline: none !important;
  border: none !important;
  background: transparent;
  box-shadow: none !important;
}

.clear-button:focus,
.clear-button:active {
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
  background: transparent !important;
}

.btn-close {
  all: unset !important;
  /* Bootstrap'in tüm stillerini sıfırla */
  cursor: pointer;
  font-size: 24px;
  color: #f50808 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  /* Buton genişliği */
  height: 30px;
  /* Buton yüksekliği */
}

.btn-close i {
  font-size: 24px;
  color: #f50808 !important;
}

/* ================= [Call Button] ================= */

.floating-icons {
  position: fixed;
  bottom: 60px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9999;
}

@media (max-width: 768px) {
  .floating-icons {
    bottom: 15px;
    right: 10px;
  }
}

.floating-icons a {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.floating-icons a.phone {
  color: #f50808;
  font-size: 24px;
}

.floating-icons img {
  width: 100%;
  height: 100%;
}

/* ================= [Text] ================= */

.title {
  color: #f50808;
  font-size: 30px;
  font-weight: 700;
  /* text-shadow: -1px 2px 4px rgba(163, 163, 163, 1); */
}

.subtitle {
  color: #f50808;
  font-size: 20px;
  font-weight: 700;
  /* text-shadow: -1px 2px 4px rgba(163, 163, 163, 1); */
}

.mini-text {
  color: #f50808;
  font-size: 12px;
  text-decoration: none;
}

.text-red {
  color: #f50808;
  text-decoration: none;
  /* text-shadow: -1px 2px 4px rgba(163, 163, 163, 1); */
}

.text-dark {
  color: #000;
  text-decoration: none;
}

.title--1 {
  font-size: 25px;
}

.text {
  font-size: 14px;
}

.small {
  font-size: 12px;
  font-weight: 600;
}

/* ================= [Input] ================= */

.form-label {
  font-size: 13px;
  font-weight: 500;
  color: #000;
}

.form-control {
  border: 1px solid #e6e6e6;
  border-radius: 3px;
  height: 45px;
  font-size: 13px;
}

.form-control:focus {
  box-shadow: none;
  border-color: #ced4da;
}

.form-select {
  border: 1px solid #e6e6e6;
  border-radius: 3px;
  height: 45px;
  font-size: 13px;
}

.form-select:focus {
  box-shadow: none;
  border-color: #ced4da;
}

textarea {
  resize: vertical; /* Yalnızca yukarı ve aşağı genişletilebilir */
  min-height: 100px; /* Minimum yükseklik belirleyerek kapanmasını önler */
  overflow: auto; /* İçerik kaydırılabilir olsun */
}

/* Varsayılan checkbox'ı gizle */
.form-check-input {
  width: 18px;
  height: 18px;
  appearance: none;
  background-color: #ffffff;
  border: none;
  outline: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 4px;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  box-shadow: inset 0 0 0 1px #ccc;
}

/* Tıklanınca içi turuncu olacak */
.form-check-input:checked {
  background-color: #f50808 !important;
  /* Turuncu */
  box-shadow: none;
  /* Dış border kaldırıldı */
}

/* Checkbox içine check işareti ekle */
.form-check-input:checked::after {
  font-size: 14px;
  color: #ffffff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-weight: bold;
}

/* ================= [Loader] ================= */

#loading-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 1); /* Hafif beyaz arka plan */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999999; /* En üstte olması için */
}

/* Spinner CSS */
.dot-spinner {
--uib-size: 2.8rem;
--uib-speed: 0.9s;
--uib-color: #183153;
position: relative;
display: flex;
align-items: center;
justify-content: flex-start;
height: var(--uib-size);
width: var(--uib-size);
}

.dot-spinner__dot {
position: absolute;
top: 0;
left: 0;
display: flex;
align-items: center;
justify-content: flex-start;
height: 100%;
width: 100%;
}

.dot-spinner__dot::before {
content: "";
height: 20%;
width: 20%;
border-radius: 50%;
background-color: var(--uib-color);
transform: scale(0);
opacity: 0.5;
animation: pulse0112 calc(var(--uib-speed) * 1.111) ease-in-out infinite;
box-shadow: 0 0 20px rgba(18, 31, 53, 0.3);
}

.dot-spinner__dot:nth-child(2) { transform: rotate(45deg); }
.dot-spinner__dot:nth-child(2)::before { animation-delay: calc(var(--uib-speed) * -0.875); }
.dot-spinner__dot:nth-child(3) { transform: rotate(90deg); }
.dot-spinner__dot:nth-child(3)::before { animation-delay: calc(var(--uib-speed) * -0.75); }
.dot-spinner__dot:nth-child(4) { transform: rotate(135deg); }
.dot-spinner__dot:nth-child(4)::before { animation-delay: calc(var(--uib-speed) * -0.625); }
.dot-spinner__dot:nth-child(5) { transform: rotate(180deg); }
.dot-spinner__dot:nth-child(5)::before { animation-delay: calc(var(--uib-speed) * -0.5); }
.dot-spinner__dot:nth-child(6) { transform: rotate(225deg); }
.dot-spinner__dot:nth-child(6)::before { animation-delay: calc(var(--uib-speed) * -0.375); }
.dot-spinner__dot:nth-child(7) { transform: rotate(270deg); }
.dot-spinner__dot:nth-child(7)::before { animation-delay: calc(var(--uib-speed) * -0.25); }
.dot-spinner__dot:nth-child(8) { transform: rotate(315deg); }
.dot-spinner__dot:nth-child(8)::before { animation-delay: calc(var(--uib-speed) * -0.125); }

@keyframes pulse0112 {
0%, 100% {
  transform: scale(0);
  opacity: 0.5;
}
50% {
  transform: scale(1);
  opacity: 1;
}
}