/* Genel Ayarlar */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

    body {
      /* 1. koddaki font ailesi */
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      margin: 0;
      padding: 0;
      background: #f9f9f9;
      color: #333;
      line-height: 1.6;
    }

/* Kapsayıcı */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 0;
}

/* === Top Bar (aynı kalabilir) */
.topbar {
  background-color: #222; /* koyu gri */
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 40px;
  font-size: 14px;
}

.topbar-left span {
  margin-right: 20px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.topbar-right a {
  color: white;
  margin-left: 12px;
  display: inline-block;
  width: 24px;
  height: 24px;
  border: 1px solid white;
  border-radius: 50%;
  text-align: center;
  line-height: 24px;
  font-size: 13px;
  transition: 0.3s;
}

.topbar-right a:hover {
  background: white;
  color: #222;
}

/* === Header & Logo */
.main-header {
  background: #fff;
  border-bottom: 1px solid #ddd;
  padding-bottom: 15px;
}

.header-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
  padding: 20px 15px 0;
}

.logo-center img {
  max-height: 80px;
  width: auto;
  margin-bottom: 20px;
}

/* === Menü ve Buton Satırı */
.nav-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

/* Menü */
.menu ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin: 0;
  padding: 0;
  justify-content: center;
}

.menu a {
  color: #000;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}

.menu a.active,
.menu a:hover {
  color: #ddb770;
}

/* Buton */
.quote-btn a {
  background-color: #ddb770;
  color: #fff;
  font-weight: bold;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.3s ease;
}

.quote-btn a:hover {
  background-color: #caa24f;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-row {
    flex-direction: column;
    align-items: center;
  }

  .quote-btn {
    margin-top: 10px;
  }
}
/* ------ Menü ------ */
.main-menu ul{
  list-style:none;
  margin:35px 0 0;
  padding:0;
  display:flex;
  justify-content:center;
  gap:55px;                         /* maddeler arası mesafe */
  flex-wrap:wrap;
}

.main-menu a{
  position:relative;                /* alt çizgi için */
  font-family:'Poppins',sans-serif;
  font-size:15px;
  font-weight:600;
  letter-spacing:.5px;
  text-decoration:none;
  color:#000;
  transition:color .25s ease;
}

/* Alt çizgi (pseudo-element) */
.main-menu a::after{
  content:'';
  position:absolute;
  left:0;
  bottom:-8px;                      /* metnin hemen altı */
  width:0;
  height:2px;
  background:#c6943e;               /* orijinal altın tonu */
  transition:width .45s ease;       /* yavaş soldan sağa */
  transform-origin:left center;
}

/* Hover & Active durumları */
.main-menu a:hover,
.main-menu a.active{
  color:#c6943e;
}

.main-menu a:hover::after,
.main-menu a.active::after{
  width:100%;
}

/* --------- Responsive küçük ekran dokunuşu --------- */
@media(max-width:768px){
  .main-menu ul{gap:25px}
  .logo-wrap img{max-height:90px}
}



/* Header */
.header {
  background-color: #fff;
  padding: 20px 0;
  border-bottom: 1px solid #ddd;
  position: sticky;
  top: 0;
  z-index: 999;
}

.header .logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #333;
  float: left;
}

.header nav {
  float: right;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-list li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  padding: 8px 12px;
  transition: all 0.3s ease;
}

.nav-list li a:hover {
  color: #007bff;
}



    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 3rem 1rem;
    }
    .measure-header {
      text-align: center;
      margin-bottom: 2rem;
    }
    .measure-header h1 {
      margin-bottom: 0.5rem;
      font-size: 2rem;
    }
    .measure-header p {
      font-size: 1rem;
      color: #555;
    }
    .measure-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      align-items: start;
      margin-bottom: 2rem;
    }
    .measure-item {
      background: #fff;
      border-radius: 8px;
      padding: 1.5rem;
      box-shadow: 0 4px 16px rgba(0,0,0,0.05);
      display: flex;
      flex-direction: column;
    }
    .measure-item img {
      max-height: 180px;
      width: auto;
      display: block;
      margin: 0 auto 1rem;
    }
    .measure-item h3 {
      font-size: 1.25rem;
      margin-bottom: 0.75rem;
      font-weight: 600;
      text-align: center;
    }
    .measure-item p {
      font-size: 0.95rem;
      color: #555;
      margin-bottom: 1rem;
      flex-grow: 0;
    }
    .divider {
      border: none;
      border-top: 1px solid #ddd;
      margin: 2rem 0;
    }
    .notice-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
      gap: 2rem;
    }
    .notice {
      background: #fff;
      border-radius: 8px;
      padding: 1.5rem;
      box-shadow: 0 4px 16px rgba(0,0,0,0.05);
    }
    .notice h4 {
      font-size: 1rem;
      margin-bottom: 0.5rem;
      font-weight: 600;
      text-align: center;
    }
    .notice p {
      font-size: 0.9rem;
      color: #555;
      line-height: 1.4;
    }
    @media (max-width: 640px) {
      .measure-grid, .notice-grid {
        grid-template-columns: 1fr;
      }
      .measure-item img {
        max-height: 150px;
      }
    }

    .footer {
  background: #191919;
  color: #fff;
  padding-top: 2rem;
}
.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1rem;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.feature-box {
  display: flex;
  gap: 1rem;
  max-width: 250px;
  flex: 1;
}
.feature-number {
  font-size: 2.5rem;
  color: #eab85b;
  font-weight: bold;
}
.feature-content strong {
  display: block;
  color: #fff;
}
.footer-main {
  display: flex;
  justify-content: space-between;
  padding: 3rem 0;
  flex-wrap: wrap;
  text-align: left;
  gap: 2rem;
}
.footer-col {
  flex: 1;
  min-width: 200px;
  padding: 1rem;
}
.footer-col h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #fff;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  line-height: 2;
}
.footer-col ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: #eab85b;
}
.footer-col .tag {
  background-color: #eab85b;
  color: #111;
  padding: 0 5px;
  border-radius: 5px;
  font-size: 0.7rem;
  margin-left: 5px;
}
.footer-bottom {
  text-align: center;
  font-size: 0.9rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.logo-col img {
  max-width: 100px;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .footer-top, .footer-main {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .feature-box {
    max-width: 100%;
    justify-content: center;
  }
  .footer-col {
    padding: 0.5rem;
  }
}

.social-fixed {
  position: fixed;
  top: 45%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9999;
}

.social-fixed a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background-color: white;
  border-radius: 0 6px 6px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease;
}

.social-fixed a:hover {
  background-color: #f2f2f2;
}

.social-fixed svg {
  width: 24px;
  height: 24px;
}