.header-content {

  background-color: #fff;
  color: var(--color-1);
  position: relative;
  padding-top: 28px;
  padding-bottom: 28px;
}

.menu-toggle {
  display: none;
  font-size: 40px;
}

.header-content .container {
  display: flex;
  gap: 20px;
  justify-content: space-between;
}

.header-logo {
  display: flex;
  max-width: 205px;
  max-height: 60px;
}


/* Ana menü genel stil */
.header-menu {
  display: flex;
  justify-content: flex-end;
}

.header-menu .navbar-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  /* Yatay düzenleme */
}

.header-menu .nav-item {
  position: relative;
  padding: 0 15px;
}

.header-menu .nav-link {
  position: relative;
  padding: 0;
  color: #444;
  font-size: 15px;
  line-height: 58px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: "Poppins", serif;
  background: transparent;
  border: 0;
  transition: 0.3s;
  display: block;

  margin-bottom: -1px;
}

/* Alt menülerin başlangıçta gizlenmesi */
.header-menu .dropdown-menu {
  display: block !important;
  visibility: hidden;
  position: absolute;
  top: 100%;
  left: -20px;
  pointer-events: none;
  opacity: 0;
  min-width: 230px;
  z-index: 1000;
  list-style: none;
  margin: 0;
  padding: 10px 0;
  text-align: left;
  transform: translateX(-20px);
  transition: 0s ease 0s;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.15) !important;
  border: 0;
  border-top: 2px solid var(--color-3);
  border-radius: 0;
  background: #fff;
}

/* Alt menü öğeleri */
.header-menu .dropdown-item {
  color: #444;
  font-size: 15px;
  line-height: 26px;
  font-weight: 500;
  font-family: "Poppins", serif;
  background-color: transparent;
  padding: 7px 20px;
  display: block;
}

.header-menu .dropdown-item:hover {
  color: var(--color-3);
}


/* Hover durumunda alt menülerin görünür olması */
.header-menu .nav-item:hover .dropdown-menu {
  transform: translateX(9px);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
  transition: 0.5s ease 0.1s;
}


.header-contact {
  display: flex;
  justify-content: center;
}

.header-info:hover [class*='icon-'] {
  color: #fff;
}

.header-info+*,
.header-phone+* {
  position: relative;
  margin-left: 29px;
  padding-left: 30px;
}

.header-info+*:before,
.header-phone+*:before {
  content: '';
  position: absolute;
  left: 0;
  top: -1px;
  width: 1px;
  height: 22px;
  background-color: rgba(255, 255, 255, 0.2);
}

.header-phone a {
  color: #fff;
}

.header-phone [class*='icon-'] {
  font-size: 16px;
  top: 2px;
  color: rgba(255, 255, 255, 0.6);
}

.header-social:not(:first-child) {
  margin-left: 6px;
}

.header-social a {
  display: inline-block;
  margin: 0 -4px 0 0;
  padding: 0;
  text-decoration: none;
  position: relative;
  border-radius: 50%;
}

.header-social a:hover {
  text-decoration: none;
}

.header-social a:hover [class*='icon-'] {
  opacity: .5;
}

.header-social a:before,
.header-social a:last-child:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 48px;
  background-color: rgba(255, 255, 255, 0.2);
}

.header-social a:last-child:after {
  right: 0;
  left: auto;
}

.header-social [class*='icon-'] {
  display: block;
  position: relative;
  height: 48px;
  padding: 0 13px;
  z-index: 1;
  font-size: 22px;
  line-height: 48px;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2);
  transition: all .2s;
  border-radius: 50%;
}