* {
  font-family: 'Segoe UI', sans-serif;
}

/* Header Tasarımı */
.main-header {
  position: absolute;
  top: 30px;
  left: 0;
  width: 100%;
  z-index: 100;
  display: flex;
  justify-content: center;
}

.header-pill {
  background: white;
  width: 90%;
  max-width: 1660px;
  height: 70px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
}

.logo img {
  height: 55px;
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
    color: #333;
    font-size: 16px;
    font-weight: 500;
}

.nav-links i {
  font-size: 10px;
}

.btn-contact {
  background: #79a300;
  /* Innocon Yeşili */
  color: white !important;
  padding: 10px 25px;
  border-radius: 25px;
  font-size: 12px;
  font-weight: bold;
  text-decoration: none;
}

.btn-login {
  background: #f1f1f1;
  color: #666;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 12px;
  border: 1px solid #ddd;
  text-decoration: none;
}

/* HERO ALANI - Yüksekliği düşürülmüş (basık) yapı */
.hero {
  padding: 15px;
  /* Yanlardan değil, sadece genel çerçeve payı */
}

.hero-inner {
  top: 50px;
  height: 300px;
  /* Yüksekliği alt taraftan küçülttüm */
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1500&q=80');
  background-size: cover;
  background-position: center;
  border-radius: 40px;
  /* Köşe kavisleri */
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 87px;
}

.hero-content h1 {
  color: white;
  font-size: 42px;
  font-weight: 700;
}

/* Sağ Alttaki Sosyal Medya */
.hero-social {
  position: absolute;
  right: 40px;
  bottom: 30px;
  display: flex;
  gap: 15px;
}

.hero-social a {
  color: white;
  font-size: 16px;
  opacity: 0.8;
}

:root {
  --box-height: 120px;
  /* KUTU BOYU */
  --box-radius: 18px;
  /* KÖŞE */
  --logo-height: 60px;
  /* LOGO */
  --grid-gap: 24px;
  /* BOŞLUK */
}

* {

  padding: 0;
  box-sizing: border-box;
}

.page-container {
  padding: 60px;
  font-family: Arial, sans-serif;
  min-height: 100vh;
}

/* ANA ALAN */
.brand-section {
  width: 100%;
}

/* GRID */
.brand-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--grid-gap);
}

/* KART */
.brand-box {
  height: var(--box-height);
  background: #ffffff;
  border: 1px solid #e4e4e4;
  border-radius: var(--box-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

/* HOVER */
.brand-box:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* LOGO */
.brand-box img {
  max-height: var(--logo-height);
  max-width: 80%;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.75;
  transition: all 0.3s ease;
}

/* LOGO HOVER */
.brand-box:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* TABLET */
@media (max-width: 1024px) {
  .brand-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBİL */
@media (max-width: 600px) {
  .brand-grid {
    grid-template-columns: 1fr;
  }
}

* {
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #fff;
}

/* ANA ALAN */
.logos-container {
  width: 1330px;
  margin: 110px auto;
  text-align: center;
}

/* GRID */
.logos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

/* LOGO KUTUSU */
.logo-box {
  height: 120px;
  border: 1px solid #e6e6e6;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.logo-box img {
  max-width: 80%;
  max-height: 60%;
}

/* GİZLİ */
.hidden {
  display: none;
}

/* BUTON */
.load-more-btn {
  margin-top: 40px;
  padding: 12px 30px;
  border-radius: 22px;
  border: none;
  background: #7f9272;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
}

/* MOBİL */
@media (max-width: 767px) {
  .logos-container {
    width: 94%;
  }

  .logos-grid {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .logo-box {
    width: 100%;
    height: 90px;
  }

  .logo-box img {
    max-width: 60%;
    max-height: 150pxpx;
  }

  .load-more-btn {
    width: 100%;
  }

}

/* DESKTOP ACCORDION */
.nav-item {
  position: relative;
}

.nav-toggle {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #000;
}

.nav-toggle i {
  font-size: 12px;
  transition: transform 0.2s ease;
}

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: 36px;
  left: 0;
  min-width: 200px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  padding: 10px 0;
  display: none;
  flex-direction: column;
  z-index: 100;
}

.dropdown-menu a {
  padding: 10px 16px;
  font-size: 14px;
  text-decoration: none;
  color: #000;
}

.dropdown-menu a:hover {
  background: #f4f4f4;
}

/* ACTIVE */
.nav-item.active .dropdown-menu {
  display: flex;
}

.nav-item.active .nav-toggle i {
  transform: rotate(180deg);
}