:root {
  --pressed: #3b7197;
  --primary: #73B0CD;
  --focus: #74bde0;
  --hover: #a8e0f1;
  --secondary: #a1e1fa;
  --background: #f5f9fc;
  --black-primary: #2c2c2c;
  --black-secondary: #5a5a5a;
  --pressed: #E0EBFF;

  --btn-primary-background: #73B0CD;
  --btn-primary-text: #ffffff;
  --btn-primary-hover-background: #A8E0F1;
  --btn-primary-pressed-background: #3C7C98;

  --btn-secondary-background: #E0EBFF;
  --btn-secondary-text: #A8E0F1;
  --btn-secondary-hover-background: #E0EBFF;
  --btn-secondary-hover-border: #A8E0F1;
  --btn-secondary-pressed-background: #E0EBFF;
  --btn-secondary-pressed-text: #3C7C98;

  --btn-tertiary-background: transparent;
  --btn-tertiary-text: #73B0CD;
  --btn-tertiary-hover-background: transparent;
  --btn-tertiary-hover-text: #A8E0F1;
  --btn-tertiary-pressed-background: transparent;
  --btn-tertiary-pressed-text: #3C7C98;

  --btn-outline-background: transparent;
  --btn-outline-border: #73B0CD;
  --btn-outline-text: #73B0CD;
  --btn-outline-hover-background: transparent;
  --btn-outline-hover-border: #A8E0F1;
  --btn-outline-hover-text: #A8E0F1;
  --btn-outline-pressed-background: transparent;
  --btn-outline-pressed-border: #3C7C98;
  --btn-outline-pressed-text: #3C7C98;

  --btn-disabled-background: #E6E6E6;
  --btn-disabled-text: #999999;
}


/* --- CSS RESET --- */
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td {
  margin: 0;
  padding: 0;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  color-scheme: dark light;
}

html {
  scrollbar-width: thin; /* Scrollbar genişliği */
  scrollbar-color: #73B0CD #e5e5e5; /* Thumb rengi ve track rengi */
}

body {
  background-color: var(--background);
  overflow-x: hidden;
}

*, **::before, **::after {
  box-sizing: border-box;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

fieldset, img {
  border: 0;
}

address, caption, cite, code, dfn, th, var {
  font-style: normal;
  font-weight: normal;
}

ol, ul {
  list-style: none;
}

caption, th {
  text-align: left;
}

h1, h2, h3, h4, h5, p, a, span, input, textarea {
  line-height: 150%;
  letter-spacing: 3%;
  color: var(--black-primary);
  resize: none;
}

label {
  color: var(--black-primary);
  resize: none;
}

a {
  text-decoration: none;
}

i {
  color: inherit;
}

q:before, q:after {
  content: '';
}

abbr, acronym {
  border: 0;
}

/* --- SCROLLBAR --- */
::-webkit-scrollbar {
  width: 6px; /* Scrollbar'ın genişliği */
}

::-webkit-scrollbar-track {
  background-color: #e5e5e5; /* Track arka plan rengi */
  border-radius: 100vw; /* Yuvarlatılmış köşeler */
  margin-block: 0.3rem; /* Track içinde boşluk */
}

::-webkit-scrollbar-thumb {
  background-color: #73B0CD; /* Thumb (kaydırıcı) rengi */
  border-radius: 100vw; /* Yuvarlatılmış köşeler */
}

::-webkit-scrollbar-thumb:hover {
  background-color: #3b7197; /* Hover durumunda thumb rengi */
}

/* Firefox için scrollbar stilleri */
scrollbar {
  width: 10px;
  height: 10px;
}

scrollbar-thumb {
  background-color: #73B0CD;
  border-radius: 100vw;
}

scrollbar-track {
  background-color: #e5e5e5;
  border-radius: 100vw;
  margin-block: 0.3rem;
}

/* --- PAGE LOADING --- */
#loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.01); /* Yarı saydam siyah arka plan */
  z-index: 9999; /* Diğer içeriklerin üstünde görünsün */
}

#loading-overlay .loading-logo {
  animation: fadeInOut 1s linear infinite;
  animation: bounce 1s ease infinite;
  animation: pulse 1.1s infinite ease-in-out;
}

#page-content {
  display: none; /* Başlangıçta içerik gizlensin */
  overflow: hidden;
}

/* Keyframes for fade effect */
@keyframes fadeInOut {
  0% {
      opacity: 0.3;
  }
  50% {
      opacity: 1;
  }
  100% {
      opacity: 0.3;
  }
}

@keyframes bounce {
  0%, 100% {
      transform: translateY(0);
  }
  50% {
      transform: translateY(-20px);
  }
}

@keyframes pulse {
  0% {
      transform: scale(1);
  }
  50% {
      transform: scale(1.1);
  }
  100% {
      transform: scale(1);
  }
}

/* --- GENERAL --- */
.overlay {
  z-index: 9998;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  background-color: rgba(255, 255, 255, 0.5);
}

ul li a:hover {
  color: var(--primary) !important;
}

ul li a.active {
  color: #3b7197;
  font-weight: 500;
  border-bottom: 2px solid #3b7197;
}

.social-links a:hover {
  opacity: .7;
  color: inherit;
}

form input, textarea {
  font-size: 14px;
}

form label {
  font-size: 14px;
}

.bg-secondary {
  background-color: var(--secondary) !important;
}

.subtitle {
  width: 60%;
  margin: auto;
}

.subtitle.sm {
  width: 50%;
  margin: auto;
}

.main-info-banner {
  width: 100%;
  height: 390px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.main-info-content {
  padding: 50px 70px;
  background-color: #fff;
  border-radius: 36px;
}

.main-info-content-html h1,
.main-info-content-html h2,
.main-info-content-html h3,
.main-info-content-html h4,
.main-info-content-html h5,
.main-info-content-html h6 {
  font-size: inherit;
  color: var(--primary);
  margin-bottom: 5px;
}

/* Paragraflar için stil */
.main-info-content-html p {
  font-size: inherit;
  margin-bottom: 15px;
}

/* Liste stilini düzenleyelim */
.main-info-content-html ul {
  font-size: inherit;
  list-style: disc;
  padding-left: 25px;
  margin-bottom: 15px;
}

/* Liste elemanları için stil */
.main-info-content-html li {
  font-size: inherit;
}


.detail-banner {
  width: 100%;
  height: 350px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.detail-banner-badge {
  position: absolute;
  display: flex;
  flex-direction: row;
  align-items: center;
  top: 35px;
  right: 35px;
  padding: 12px 15px;
  border-radius: 50px;
  background-color: rgba(255, 255, 255, .3);
}

.detail-banner-badge img{
  width: 24px;
  height: 24px;
  margin-right: 15px;
}

.splide {
  height: fit-content;
}

/* --- General Contact Form --- */
.contact-form {
  width: 850px;
  margin: auto;
  margin-top: 8rem;
}

.contact-form2 #contact-form {
  width: 75%;
  margin: auto;
}

.contact-info-card {
  padding: 50px 90px;
  background-color: #ffffff;
  border-radius: 36px;
}

.contact-info-card .contact-info-item-title {
  width: 110px;
  min-width: 110px;
  color: #5A5A5A
}

.contact-info-card .contact-info-item-content {
  flex-grow: 1; 
}

/* --- General Country Card --- */
.country-card {
  position: relative;
  border: none;
  height: 350px;
  border-radius: 24px;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

.country-card-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  color: white !important;
  padding: 13px 15px;
  background: rgba(44, 44, 44, 0.2);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.country-card-footer-logo {
  width: 24px;
  height: 24px;
  border-radius: 100%;
  margin-right: 10px;
}

/*
.country-card-slider {
  opacity: 0;
  display: none;
  visibility: hidden;
  transition: opacity 1s ease;
  -webkit-transition: opacity 1s ease;
}

.country-card-slider.slick-initialized {
  visibility: visible;
  display: block;
  opacity: 1;
}

.country-card-slider .slick-track {
  display: flex;
  gap: 25px;
}
*/

/* --- General Service Card --- */
.service-card {
  position: relative;
  border: none;
  width: 100%;
  height: 290px;
  background-color: #fff;
  border-radius: 24px;
  background-repeat: no-repeat;
  background-position: center;
  overflow: hidden;
}

.service-card-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  color: white !important;
  padding: 13px 15px;
  background: #d5d5d5;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.service-card-footer-logo {
  width: 20px;
  height: 20px;
  border-radius: 100%;
  margin-right: 10px;
}

/*
.services-card-slider {
  opacity: 0;
  display: none;
  visibility: hidden;
  transition: opacity 1s ease;
  -webkit-transition: opacity 1s ease;
}

.services-card-slider.slick-initialized {
  visibility: visible;
  display: block;
  opacity: 1;
}

.services-card-slider .slick-track {
  display: flex;
  gap: 25px;
}
*/

/* --- MARGIN --- */
.mt-6 { margin-top: 5rem !important; }
.mt-7 { margin-top: 8rem !important; }
.mt-8 { margin-top: 10rem !important; }
.mt-9 { margin-top: 12rem !important; }
.mt-10 { margin-top: 15rem !important; }

@media (min-width: 576px){
  .mt-sm-6 { margin-top: 5rem !important; }
  .mt-sm-7 { margin-top: 8rem !important; }
  .mt-sm-8 { margin-top: 10rem !important; }
  .mt-sm-9 { margin-top: 12rem !important; }
  .mt-sm-10 { margin-top: 15rem !important; }
}

@media (min-width: 768px) {
  .mt-md-6 { margin-top: 5rem !important; }
  .mt-md-7 { margin-top: 8rem !important; }
  .mt-md-8 { margin-top: 10rem !important; }
  .mt-md-9 { margin-top: 12rem !important; }
  .mt-md-10 { margin-top: 15rem !important; }
}

@media (min-width: 992px)  {
  .mt-lg-6 { margin-top: 5rem !important; }
  .mt-lg-7 { margin-top: 8rem !important; }
  .mt-lg-8 { margin-top: 10rem !important; }
  .mt-lg-9 { margin-top: 12rem !important; }
  .mt-lg-10 { margin-top: 15rem !important; }
}

@media (min-width: 1200px) {
  .mt-xl-6 { margin-top: 5rem !important; }
  .mt-xl-7 { margin-top: 8rem !important; }
  .mt-xl-8 { margin-top: 10rem !important; }
  .mt-xl-9 { margin-top: 12rem !important; }
  .mt-xl-10 { margin-top: 15rem !important; }
}

/* --- TEXT --- */
.text-primary {
  color: var(--primary) !important;
}

.text-black-primary {
  color: var(--black-primary) !important;
}

.text-black-secondary {
  color: var(--black-secondary) !important;
}

.font-bold {
  font-weight: 600;
}

.font-medium {
  font-weight: 500;
}

.font-normal {
  font-weight: 400;
}

.font-light {
  font-weight: 300;
}

.font-italic {
  font-style: italic;
}

.text-54 {
  font-size: 54px;
  line-height: 120%;
}

.text-36 {
  font-size: 36px;
}

.text-24 {
  font-size: 24px;
}

.text-18 {
  font-size: 18px;
}

.text-16 {
  font-size: 16px;
}

.text-14 {
  font-size: 14px;
}

.text-12 {
  font-size: 12px;
}

.text-10 {
  font-size: 10px;
}

/* --- SIZE --- */
.size-48 {
  width: 48px;
  min-width: 48px;
  height: 48px;
}

.size-36 {
  width: 36px;
  min-width: 36px;
  height: 36px;
}

.size-16 {
  width: 16px;
  min-width: 16px;
  height: 16px;
}

/* --- BUTTON --- */
.btn {
  width: auto;
  display: flex;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  box-sizing: border-box;
}

.btn .btn-icon {
  width: 14px;
  /* height: 14px; */
}

.btn i {
  color: inherit;
  align-self: center;
  line-height: 0;
}

.btn-icon.start-icon {
  margin-right: 15px;
}

.btn-icon.end-icon {
  margin-left: 15px;
}

/* --- PRIMARY BUTTON --- */
.btn.primary {
  background-color: var(--btn-primary-background);
  color: var(--btn-primary-text);
}

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

/*
.btn.primary:focus {
  background-color: var(--btn-primary-focus);
  border: 3px solid var(--btn-primary-focus-border);
  outline: none;
  box-shadow: 0 0 0 1px transparent;
}
  */

.btn.primary:active {
  background-color: var(--btn-primary-pressed-background);
}

.btn.primary:disabled {
  background-color: var(--btn-disabled);
  color: var(--btn-disabled-text);
  cursor: not-allowed;
}

/* --- SECONDARY BUTTON --- */
.btn.secondary {
  background-color: var(--btn-secondary-background);
  color: var(--btn-secondary-text);
  border: 1px solid transparent;
}

.btn.secondary:hover {
  background-color: var(--btn-secondary-hover-background);
  border-color: var(--btn-secondary-hover-border);
}

.btn.secondary:active {
  background-color: var(--btn-secondary-pressed-background);
  color: var(--btn-secondary-pressed-text);
}

.btn.secondary:disabled {
  background-color: var(--btn-disabled);
  color: var(--btn-disabled-text);
  cursor: not-allowed;
}

/* --- TERTIARY BUTTON --- */
.btn.tertiary {
  padding: 0;
  background-color: var(--btn-tertiary-background);
  color: var(--btn-tertiary-text);
  border: none;
}

.btn.tertiary:hover {
  background-color: var(--btn-tertiary-hover-background);
  color: var(--btn-tertiary-hover-text);
  border: none;
}

.btn.tertiary:active {
  background-color: var(--btn-tertiary-pressed-background);
  color: var(--btn-tertiary-pressed-text);
  border: none;
}

.btn.tertiary:disabled {
  background-color: var(--btn-disabled);
  color: var(--btn-disabled-text);
  cursor: not-allowed;
}

/* --- OUTLINE BUTTON --- */
.btn.outline {
  background-color: var(--btn-outline-background);
  color: var(--btn-outline-text);
  border: 1px solid var(--btn-outline-border);
}

.btn.outline:hover {
  background-color: var(--btn-outline-hover-background);
  color: var(--btn-outline-hover-text);
  border-color: var(--btn-outline-hover-border);
}

.btn.outline:active {
  background-color: var(--btn-outline-pressed-background);
  color: var(--btn-outline-pressed-text);
  border-color: var(--btn-outline-pressed-border);
}

.btn.outline:disabled {
  background-color: var(--btn-disabled);
  color: var(--btn-disabled-text);
  cursor: not-allowed;
}

.btn.outline-white {
  border-color: rgba(255, 255, 255, 1);
  color: rgba(255, 255, 255, 1);
}

.btn.outline-white:hover {
  border-color: rgba(255, 255, 255, .7);
  color: rgba(255, 255, 255, .7);
}

.icon-button {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: var(--btn-secondary-background);
  color: #fff;
  cursor: pointer;
}

.icon-button-blur-right::after{
  content: "";
  position: absolute;
  top: 0;
  right: -40px;
  bottom: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
  filter: blur(5px);
  width: 40px;
  z-index: 999;
}

.icon-button-blur-left::before{
  content: "";
  position: absolute;
  top: 0;
  left: -40px;
  bottom: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
  filter: blur(5px);
  width: 40px;
  z-index: 999;
}

.icon-button:hover {
  background-color: var(--btn-primary-background);
}

.icon-button i {
  color: inherit; /* Butonun yazı rengi ile aynı renk olur */
}

/* --- FORM --- */
input {
  width: 100%;
  padding: 12px 24px;
  background-color: #ffffff;
  border-radius: 50px;
  color: #2c2c2c;
  outline: none;
  text-decoration: none;
  border: none;
}

textarea {
  width: 100%;
  padding: 12px 24px;
  background-color: #ffffff;
  border-radius: 20px;
  color: #2c2c2c;
  outline: none;
  text-decoration: none;
  border: none;
}


.select2-container {
  width: 100% !important;
}

select {
  width: 100%;
  padding: 12px 24px;
  background-color: #ffffff;
  border-radius: 50px;
  color: #2c2c2c;
  outline: none;
  text-decoration: none;
  border: none;
}

.select2-selection--single {
  width: 100%;
  padding: 10.5px 24px;
  height: auto !important;
  border-radius: 50px !important;
  outline: none !important;
  text-decoration: none !important;
  border: none !important;
}

.select2-selection__rendered {
  line-height: normal !important;
  color: #2c2c2c !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.select2-selection__placeholder {
  font-size: 14px;
  color: #757575 !important;
}

.select2-selection__arrow {
  top: 10px !important;
  right: 8px !important;
}

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

.select2-search {
  margin-bottom: 20px;
}

.select2-search__field {
  border: 1px solid #000 !important;
  padding: 8px 12px !important;
  font-size: 14px;
}

.select2-dropdown {
  border: none;
  border-radius: 24px !important;
  padding: 20px;
  margin-top: 4px;
  box-shadow: 0 4px 8px #def1fa;
}

.select2-results__option {
  font-size: 14px !important;
  padding: 8px 4px;
  border-radius: 12px;
}

.select2-results__option:hover {
  background-color: #F5F9FC;
  cursor: pointer;
}


.iti {
  --iti-flag-height: 12px;
  --iti-flag-sprite-height: 12px;
  --iti-flag-width: 16px;
  --iti-path-flags-1x: url('../../../img/flags/flags@2x.webp');
  --iti-path-flags-2x: url('../../../img/flags/flags@2x.webp');
  --iti-path-globe-1x: url('../../../img/flags/globe.webp');
  --iti-path-globe-2x: url('../../../img/flags/globe@2x.webp');
  font-family: 'Poppins', sans-serif;
}

.iti--allow-dropdown {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.iti--allow-dropdown .iti__country-container:not(:has(+ input[disabled])):not(:has(+ input[readonly])) .iti__selected-country-primary:hover {
  background-color: transparent !important;
}

.iti__selected-flag {
  padding: 20px 25px;
  border-radius: 50px;
  background-color: #F1F3F4;
}

.iti__flag {
  width: 16px !important;
  height: 12px !important;
  border-radius: 4px;
  overflow: hidden;
}

.iti__selected-country-primary {
  background-color: transparent !important;
}

.iti__selected-dial-code {
  font-size: 14px;
  font-weight: 500;
  color: #5a5a5a;
}

.iti__dropdown-content {
  font-size: 14px;
  border-radius: 8px;
  margin-top: 4px;
}

/* --- HEADER --- */
.header-social {
  width: 100%;
  height: 48px;
  background-color: #f1f3f4;
  display: flex;
  align-items: center;
}

.navbar ul li .active {
  color: var(--primary) !important;
  border: none !important;
  font-weight: inherit !important;
}

/* Mobile Navbar */
.mobile-navbar {
  width: 100%;
  background-color: var(--background);
  z-index: 1000;
  transition: opacity 0.3s ease;
}

.mobile-navbar .mobile-navbar-header {
  padding: 10px 0px;
}


/* Mobile Navbar sabitleme (fixed) özelliği */
.mobile-navbar.fixed {
  position: fixed;
  /* Sabit pozisyon */
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.mobile-navbar.fixed .mobile-navbar-header {
  padding: 5px 0;
}

.mobile-navbar.fixed .mobile-navbar-logo {
  width: 60px;
}

.menu-icon {
  display: flex;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
}

.menu-icon .bar {
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background-color: #2E2B2B;
}

.mobile-navbar-logo {
  width: 80px;
}

.mobile-navbar-menu {
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  position: fixed;
  top: 0;
  left: -400px;
  height: 100%;
  width: calc(100% - 20px);
  max-width: 400px;
  padding: 25px;
  background-color: var(--btn-primary-pressed-background);
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
  z-index: 1001;
}

.mobile-navbar-menu .mobile-navbar-menu-header {
  display: flex;
  justify-content: end;
}

.mobile-navbar-menu .mobile-navbar-menu-header i {
  font-size: 24px;
  color: #ffffff;
  cursor: pointer;
}

.mobile-navbar-menu ul {
  margin-top: 50px;
}

.mobile-navbar-menu ul li a {
  width: 100%;
  display: block;
  padding: 12px 0px;
  border-radius: 30px;
  text-align: center;
  color: #ffffff;
}

.mobile-navbar-menu ul li a:hover {
  background-color: #E0EBFF;
  color: #3C7C98 !important;
}

.mobile-navbar-menu ul li .active {
  background-color: #E0EBFF;
  color: #3C7C98 !important;
}

.mobile-navbar-menu-logo {
  width: 140px;
  margin-top: 100px;
}


/* --- FOOTER --- */
.footer {
  position: relative;
  color: #ffffff !important;
  background-color: var(--primary);
  background-image: url('../img/footer-background-logo-1.png');
  background-size: 600px;
  background-position: right bottom;
  background-repeat: no-repeat;
  margin-top: 8rem;
}

.footer ul li a:hover {
  color: rgba(255, 255, 255, 0.7) !important;
}

.footer .footer-item-logo {
  width: 215px;
}

.footer .footer-grid {
  display: grid;
  grid-template-columns: 3fr 2fr 3fr 3fr;
  gap: 20px;
}

.footer .copyright {
  margin-top: 45px;
}

.footer .footer-tursab {
  width: 420px;
  margin: 30px auto;
}


/* --- HOME --- */
.hero {
  margin-top: 6rem;
}

.sec-3 {
  position: relative;
  margin-top: 6rem;
  background-image: url('../img/map.png');
  background-size: contain;
  background-position: 70% center;
  background-repeat: no-repeat;
}

.sec3-title {
  margin-left: 250px;
}

.sec4-card {
  border: 1px solid var(--primary);
  border-radius: 24px;
  padding: 2.35rem 1rem;
}

.sec4-card:hover {
  background-color: var(--hover);
}

.sec4-card .tertiary {
  color: var(--btn-tertiary-text) !important;
}

.sec-6 {
  background-image: url('../img/dashboard-sec6-background.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 15rem;
  margin-bottom: 5.5rem;
  padding-top: 65px;
  padding-bottom: 80px;
}

.sec6-right {
  position: absolute;
  height: 213%;
  top: -185px;
  right: -50%;
}


.review-card {
  display: flex !important;
  flex-direction: column;
  gap: 1rem;
  border-radius: 24px;
  background-color: #fff;
  padding: 30px 20px;
  border: 1px solid #91D1EF;
}

#sec7-slider .slick-track {
  display: flex;
  gap: 25px;
}


/* --- ABOUT --- */
.about-section2 {
  margin-top: 8rem;
  padding-bottom: 14rem;
  background-image: url(../img/map.png);
  background-size: auto;
  background-position: center -120%;
  background-repeat: no-repeat;
}

.about-section3 {
  margin-top: -103px;
}

.about-section3-card {
  height: 700px;
  border-radius: 24px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-origin: content-box;
}

.about-section3-card>div {
  margin-top: 6rem;
}

.about-section3-card-left {
  background-image: url(../img/about-section3-left-img.svg);
}

.about-section3-card-right {
  background-image: url(../img/about-section3-right-img.svg);
}

.about-section4 {
  height: 450px;
  background-color: #fff;
  position: relative;
  overflow: hidden;
}

.about-section4::before {
  background-image: url(../img/logo-watermark.svg);
  position: absolute;
  left: -96px;
  bottom: -80px;
  width: 640px;
  height: 450px;
  content: "";
  background-size: cover;
  background-position: center;
}

.about-section4::after {
  background-image: url(../img/about-section4-img.png);
  position: absolute;
  right: 0;
  top: 0;
  width: 45%;
  height: 100%;
  content: "";
  background-size: cover;
  background-position: center;
  border-top-left-radius: 24px;
  border-bottom-left-radius: 24px;
}

.about-section4-card-right {
  min-height: 470px;
  border-top-left-radius: 24px;
  border-bottom-left-radius: 24px;

  background-image: url(../img/about-section4-img.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


/* --- COUNTRIES --- */
.search-box #country-search-input {
  height: 60px;
  padding-right: 120px;
}

.country-search-button {
  position: absolute;
  top: 6px;
  right: 6px;
}

.country-search-results {
  position: absolute;
  top: 100%; /* input'un hemen altına gelecek şekilde ayarladık */
  left: 0;
  width: 100%;
  max-height: 300px;
  overflow-y: auto;
  padding: 25px;
  margin-top: 10px;
  background-color: white;
  border-radius: 24px;
  box-shadow: 0 4px 8px #def1fa;
  z-index: 10;
  display: none; /* Başlangıçta görünmez */
}

.country-search-result-item {
  max-height: 52px;
  padding: 8px 16px;
  margin-bottom: 10px;
  background-color: #F5F9FC;
  border-radius: 16px;
  cursor: pointer;
  box-sizing: border-box;
  -webkit-transition: border .4s ease-in;
  -moz-transition: border .4s ease-in;
  -o-transition: border .4s ease-in;
  transition: border .4s ease-in;
}

.country-search-result-item:last-child {
  margin-bottom: 0;
}

.country-search-result-item:hover {
  background-color: #E0EBFF;
  border: 1px solid #000;
}

.country-search-result-item img {
  width: 36px;
  height: 36px;
  margin-right: 10px;
}

.country-search-search-results .no-results {
  padding: 10px;
  color: #777;
}

.country-section2 #country-section2-prev {
  margin-left: -30px;
}

.country-section2 #country-section2-next {
  margin-right: -30px;
}


#country-section2-slider .country-info {
  width: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.country-detail-section2-banner {
  width: 100%;
  height: 350px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.country-detail-section2-banner-badge {
  position: absolute;
  display: flex;
  flex-direction: row;
  align-items: center;
  top: 35px;
  right: 35px;
  padding: 12px 15px;
  border-radius: 50px;
  background-color: rgba(255, 255, 255, .3);
}

.country-detail-section2-banner-badge img{
  width: 24px;
  height: 24px;
  margin-right: 15px;
}

.country-detail-section3-card-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr); 
  gap: 20px;
}

.country-detail-section3-card {
  padding: 35px;
  background-color: #fff;
  border-radius: 36px; 
}

.country-detail-section3-card:hover {
  background-color: var(--hover);
}

.country-detail-section3-card .btn.tertiary:hover {
  color: rgba(255, 255, 255, .6) !important;
}

.country-detail-section4-card-container {
  display: grid;
  grid-template-columns: repeat(6, minmax(120px, 1fr)); /* Üstte 6 sütun, her biri min 120px, max esnek */
  grid-template-rows: auto auto; /* 2 satır olacak */
  grid-column-gap: 20px;
  grid-row-gap: 40px;
  justify-content: center; /* Ortalamak için */
  align-items: center; /* Ortalamak için */
  grid-template-areas:
    "box1 box2 box3 box4 box5 box6"
    ". box7 box8 box9 box10 .";
}

.country-detail-section4-card {
  position: relative;
  width: 100%; 
  padding-top: 100%; 
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 18px;
  border-radius: 24px;
  background-size: cover !important;
}

.country-detail-section4-card span{
  position: absolute;
  bottom: 10px;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  text-align: center;
}

.box1 { grid-area: box1; }
.box2 { grid-area: box2; }
.box3 { grid-area: box3; }
.box4 { grid-area: box4; }
.box5 { grid-area: box5; }
.box6 { grid-area: box6; }
.box7 { grid-area: box7; }
.box8 { grid-area: box8; }
.box9 { grid-area: box9; }
.box10 { grid-area: box10; }

.info-card {
  padding: 15px 25px 50px 25px;
  background-color: #fff;
  border: 1px solid #91D1EF;
  border-radius: 24px;
}

.info-card-header {
  display: flex;
  align-items: center;
}

.info-card-header img{
  width: 40px;
  height: 45px;
  margin-right: 30px;
}

/* --- REFERENCES --- */
.references-section1-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 10px;
}

.references-section2-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}


/* --- CONTACT US --- */
.contactus-section2-card {
  border: 1px solid #91D1EF;
  border-radius: 24px;
  overflow: hidden;
}


/* --- FLOAT ACTION BUTTON --- */
.float-action-button-wrapper {
  width: 60px;
  height: 60px;
  position: fixed;
  right: 24px;
  bottom: 28px;
  border-radius: 100%;
}

.float-action-button-wrapper .fab {
  width: 60px;
  height: 60px;
  position: relative;
  z-index: 3;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fab-animation-reverse 0.4s ease-out forwards;
  border: 2px solid #fff;
  background-color: #91D1EF;
  cursor: pointer;
  color: white;
  font-size: 2em;
}

.float-action-button-wrapper .fac {
  width: 56px;
  height: 205px;
  top: -150px;
  left: 2px;
  border-radius: 64px;
  position: absolute;
  background: #E0EBFF;
  border: 2px solid #fff;
  z-index: 2;
  opacity: 0;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  padding-top: 20px;
  transition: opacity 0.2s ease-in, top 0.2s ease-in, width 0.1s ease-in;
}
.float-action-button-wrapper .fac a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3C7C98;
  border-radius: 100%;
  opacity: 1;
}

.float-action-button-wrapper .fac a:hover {
  transition: 0.2s;
  background-color: #3C7C98;
  color: #fff
}

.float-action-button-wrapper input {
  height: 100%;
  width: 100%;
  border-radius: 100%;
  cursor: pointer;
  position: absolute;
  z-index: 5;
  opacity: 0;
}
.float-action-button-wrapper input:checked ~ .fab {
  animation: fab-animation 0.4s ease-out forwards;
}
.float-action-button-wrapper input:checked ~ .fac {
  width: 56px;
  height: 205px;
  top: -150px;
  animation: fac-animation 0.4s ease-out forwards 0.1s;
  opacity: 1;
  display: flex;

}

@keyframes fab-animation {
  0% {
    transform: rotate(0) scale(1);
  }
  20% {
    transform: rotate(60deg) scale(0.93);
  }
  55% {
    transform: rotate(35deg) scale(0.97);
  }
  80% {
    transform: rotate(48deg) scale(0.94);
  }
  100% {
    transform: rotate(45deg) scale(0.95);
  }
}
@keyframes fab-animation-reverse {
  0% {
    transform: rotate(45deg) scale(0.95);
  }
  20% {
    transform: rotate(-15deg);
  }
  55% {
    transform: rotate(10deg);
  }
  80% {
    transform: rotate(-3deg);
  }
  100% {
    transform: rotate(0) scale(1);
  }
}
@keyframes fac-animation {
  0% {
    transform: scale(1, 1);
  }
  33% {
    transform: scale(0.95, 1.05);
  }
  66% {
    transform: scale(1.05, 0.95);
  }
  100% {
    transform: scale(1, 1);
  }
}