/* Temel Stiller */
.navbar {
  padding: 0;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar-brand img {
  height: 45px;
}

/* Ana Menü */
.navbar-nav .nav-item {
  position: static;
}

.navbar-nav .nav-link {
  padding: 25px 10px !important;
  color: #333;
  font-weight: 500;
}

/* Mega Menü */
.navbar .dropdown-menu {
  width: 100%;
  left: 0;
  right: 0;
  border: none;
  border-radius: 0;
  margin: 0;
  padding: 30px 0;
  border-top: 2px solid #e3a704;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  display: none;
}

.navbar .dropdown:hover .dropdown-menu {
  display: block;
}

/* Mega Menü İçeriği */
.dropdown-menu .container {
  max-width: 1400px;
}

.dropdown-menu .row {
  margin: 0 -15px;
}

.dropdown-menu .col-lg-3 {
  padding: 0 25px;
  border-right: 1px solid #eee;
}

.dropdown-menu .col-lg-3:last-child {
  border-right: none;
}

/* Liste Grupları */
.list-group-flush .list-group-item {
  padding: 10px 0;
  background: transparent;
  border: none;
  color: #333;
  transition: all 0.3s ease;
  font-size: 1.4rem;
  font-weight: 700;
}

.list-group-flush .list-group-item:hover {
  color: #e3a704;
  padding-left: 5px;
}

/* Mobil Düzenlemeler */
@media (max-width: 991px) {
  .navbar-nav .nav-item {
    position: relative;
  }

  .navbar .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    padding: 0;
    background: #f8f9fa;
  }

  .dropdown-menu .col-lg-3 {
    border-right: none;
    border-bottom: 1px solid #eee;
    padding: 15px;
  }

  .dropdown-menu .col-lg-3:last-child {
    border-bottom: none;
  }

  .list-group-flush .list-group-item {
    padding: 8px 15px;
  }
}

.navbar-nav .nav-item.active > .nav-link {
  border-top: 3px solid #e3a704;
}

/* Top Bar */
.top-bar {
  background: #fff;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

.contact-info {
  color: #000;
  font-weight: 800;
}

/* Search Container */
.search-container {
  position: relative;
  display: flex;
  align-items: center;
}

/* Search Button */
.search-btn {
  background: #f1f1f1;
  border: none;
  padding: 8px 15px;
  border-radius: 25px;
  color: #333;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
}

.search-btn:hover {
  background: #e5e5e5;
}

/* Search Input */
.search-input {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}

.search-input input {
  background: #f1f1f1;
  border: none;
  padding: 8px 40px 8px 15px;
  border-radius: 25px;
  width: 200px;
  outline: none;
}

.search-input input:focus {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Search Active State */
.search-container.active .search-input {
  visibility: visible;
  opacity: 1;
}
/* Responsive Ayarlar */
@media (max-width: 991px) {
  .navbar-collapse {
    background: #fff;
    padding: 15px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  }

  .navbar .dropdown {
    position: relative;
  }

  .navbar .dropdown-menu {
    position: static;
    width: 100%;
    padding: 15px;
    box-shadow: none;
    display: none;
  }

  .navbar .dropdown.show .dropdown-menu {
    position: fixed;
    top: auto;
    transform: none !important;
  }
  .navbar .dropdown-menu .col-lg-3 {
    border-right: none;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }

  .navbar .dropdown-menu .col-lg-3:last-child {
    border-bottom: none;
    margin-bottom: 0;
  }
}

@media (max-width: 991px) {
  .navbar-nav .nav-item.active > .nav-link {
    border-top: none;
    color: #e3a704 !important;
  }

  .dropdown-menu {
    display: none;
  }

  .dropdown-menu.show {
    display: block;
  }
}

.site-footer {
  background-color: #000;
  color: #fff;
  height: 600px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
  z-index: 2;
}

.footer-brand {
  margin-bottom: 30px;
}

.footer-logo {
  height: 60px;
  margin-bottom: 15px;
}

.slogan {
  color: #fff;
  font-size: 16px;
  margin-bottom: 20px;
}

.social-links a {
  color: #e3a704;
  font-size: 24px;
  margin-right: 15px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  color: #fff;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  columns: 1;
}

.footer-menu li {
  margin-bottom: 10px;
}

.footer-menu a {
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
}

.footer-menu a::before {
  content: "■";
  color: #e3a704;
  margin-right: 10px;
  font-size: 12px;
}

.footer-menu a:hover {
  color: #e3a704;
}

.footer-contact h5 {
  color: #fff;
  margin-bottom: 20px;
}

.contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-info li {
  margin-bottom: 15px;
  display: flex;
  align-items: start;
}

.contact-info i {
  color: #e3a704;
  margin-right: 10px;
  margin-top: 5px;
}

.footer-line {
  height: 1px;
  background: #e3a704;
  margin: 30px auto;
  max-width: 1400px;
  position: relative;
  z-index: 2;
  width: calc(100% - 60px);
}

.copyright {
  text-align: center;
  font-size: 14px;
  opacity: 0.8;
  position: relative;
  z-index: 2;
}

@media (max-width: 991px) {
  .footer-menu {
    columns: 1;
    margin-bottom: 30px;
  }

  .footer-contact {
    margin-top: 30px;
  }

  .site-footer {
    height: auto;
    padding: 60px 0 30px;
  }
}
