/* Temel Ayarlar */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
}
html {
  scroll-behavior: smooth;
}
body {
  background-color: #fff;
  color: #333;
  line-height: 1.6;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Header */
.topbar {
  background: linear-gradient(to bottom, #000, #0d0d0d);
  color: #fff;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 4px solid #1e90ff;
  gap: 20px;
}

.logo {
  flex: 1;
}
.logo img {
  height: 72px;
  object-fit: contain;
  border: 2px solid #fff;
  border-radius: 8px;
}

.main-menu {
  flex: 2;
  display: flex;
  justify-content: flex-start;
}
.main-menu ul {
  list-style: none;
  display: flex;
  gap: 95px;
  justify-content: flex-start;
  align-items: center;
  margin: 0;
  padding: 0;
}
.main-menu ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  transition: color 0.3s ease;
}
.main-menu ul li a:hover,
.main-menu ul li a.active {
  color: #ff6600;
}

/* Hamburger Menü */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}
.hamburger span {
  height: 3px;
  width: 25px;
  background: #fff;
  border-radius: 3px;
}

/* Hero */
.hero {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(to right, #1e90ff, #0077cc);
  color: white;
}
.hero h1 {
  font-size: 40px;
  margin-bottom: 20px;
}
.hero p {
  font-size: 18px;
  margin-bottom: 30px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* CTA Buton */
.cta-button {
  background-color: #ff6600;
  color: #fff;
  padding: 14px 32px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 8px;
  transition: background-color 0.3s;
}
.cta-button:hover {
  background-color: #e65c00;
}

/* Avantajlar */
.advantages {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}
.advantage-box {
  flex: 1 1 300px;
  max-width: 320px;
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.advantage-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}
.advantage-box h3 {
  color: #1e90ff;
  margin-bottom: 10px;
}

/* Partner Logoları */
.partners {
  padding: 60px 20px;
  text-align: center;
}
.partners h2 {
  font-size: 28px;
  margin-bottom: 30px;
}
.partner-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.partner-logos img {
  height: 50px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s ease, transform 0.3s ease;
}
.partner-logos img:hover {
  filter: none;
  transform: scale(1.05);
}

/* Footer – eski versiyon (korundu ama pasif bırakılabilir) */
footer {
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 30px 20px;
  margin-top: 40px;
}
.social-links {
  margin-top: 10px;
}
.social-links a {
  color: #fff;
  margin: 0 10px;
  font-size: 20px;
  transition: color 0.3s;
  display: inline-block;
}
.social-links a:hover {
  color: #ff6600;
}

/* WhatsApp Butonu */
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  padding: 12px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  z-index: 1000;
  font-size: 14px;
}
.whatsapp-button:hover {
  background-color: #1ebc59;
}

/* ============================   FOOTER YENİ YAPI ============================ */
.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  background-color: #000;
  color: #fff;
  padding: 12px 10px;
}

.footer-left, .footer-center, .footer-right {
  flex: 1 1 300px;
  padding: 10px;
}

.footer-left {
  text-align: left;
}
.footer-right {
  text-align: right;
}
.footer-center {
  text-align: center;
}

.footer-left h3 {
  font-size: 16px;
  margin-bottom: 6px;
}
.footer-left p,
.footer-left a,
.footer-right a {
  font-size: 13px;
  margin-bottom: 4px;
  display: block;
  color: #ffcc00;
  text-decoration: none;
}
.footer-right .social-links a {
  margin-right: 12px;
  font-size: 14px;
  color: #ffcc00;
  text-decoration: none;
}
.footer-right .social-links a:hover {
  color: #fff;
}
.footer-center p {
  font-size: 12px;
  color: #ccc;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-left, .footer-center, .footer-right {
    text-align: center !important;
    margin-bottom: 10px;
  }

  .footer-right .social-links a {
    display: inline-block;
    margin: 0 6px 6px 6px;
  }
}


/* Responsive */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  .main-menu {
    width: 100%;
    display: none;
    flex-direction: column;
    background-color: #000;
    padding: 20px;
  }
  .main-menu ul {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
  .main-menu.show {
    display: flex;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
  }
  .footer-left, .footer-right {
    margin-bottom: 20px;
  }
  .footer-right .social-links a {
    display: block;
  }
}
.currency-widget {  text-align: right;  font-size: 14px;  font-weight: 500;  color: #ffcc00;  line-height: 1.4;  min-width: 100px;}@media screen and (max-width: 768px) {  .currency-widget {    text-align: center;    margin-top: 10px;    width: 100%;  }}