/* Temel Ayarlar */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
}
body {
  background-color: #f5f5f5;
  color: #111;
}
html {
  scroll-behavior: smooth;
}

/* HEADER / TOPBAR */
.topbar {
  background-color: #000;
  color: #fff;
  padding: 10px 30px;
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: padding 0.3s ease;
}
.topbar.shrink {
  padding: 10px 30px !important;
}
.logo img {
  height: 40px;
}

/* MENÜ */
.main-menu ul {
  display: flex;
  list-style: none;
  padding: 0;
}
.main-menu ul li {
  margin: 0 15px;
}
.main-menu ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}
.main-menu ul li a:hover,
.main-menu ul li a.active {
  color: #ffcb05;
}
.social-icons a {
  color: #fff;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}
.social-icons a:hover {
  color: #FFD700;
  text-shadow: 0 0 8px rgba(255,215,0,0.8);
}
.back-home {
  color: #ffcb05;
  text-decoration: none;
  font-size: 14px;
  padding: 6px 12px;
  border: 1px solid #ffcb05;
  border-radius: 4px;
}

/* HERO FLEX YAPISI */
.hero-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
}
.hero-image {
  flex: 1 1 300px;
  text-align: center;
  margin-bottom: 20px;
}
.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}
.hero-text {
  flex: 1 1 500px;
  padding: 20px;
  text-align: left;
}
.hero ul {
  margin-top: 20px;
  padding: 0;
  list-style: none;
  text-align: center;
}
.hero ul li {
  font-size: 18px;
  margin-bottom: 10px;
  color: #333;
}

/* Mobil Uyum */
@media (max-width: 768px) {
  .hero-text {
    text-align: center;
  }
}

/* GENEL BÖLÜMLER */
.section {
  padding: 60px 20px;
}

/* GÖRSELLER VE BAŞLIKLAR */
img {
  max-width: 100%;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.promo-img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin: 30px auto;
}
h1 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 25px;
  color: #000;
}
h2 {
  font-size: 24px;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #111;
}
p, li {
  font-size: 16px;
  margin-bottom: 15px;
  line-height: 1.7;
}
.centered-description {
  text-align: center;
}

/* HAKKIMIZDA SAYFASI STİLLERİ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}
.values {
  padding-left: 20px;
  list-style: none;
}
.values li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
}
.values li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #00796b;
  font-weight: bold;
}

/* HİZMET KUTULARI */
.features-column {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}
.feature-box {
  background: #f3f3f3;
  border-radius: 12px;
  padding: 20px;
  flex: 1 1 300px;
  max-width: 360px;
  display: flex;
  gap: 20px;
  align-items: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  text-align: left;
  min-height: 180px;
}
.feature-box i {
  color: #000;
  min-width: 40px;
}
.feature-box h3 {
  font-size: 18px;
  margin: 0 0 8px;
}
.feature-box p {
  margin: 0;
  font-size: 15px;
  color: #333;
}

/* CTA BUTON */
.cta-button {
  background-color: #00796b;
  color: #fff;
  border: none;
  padding: 15px 30px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 20px;
  display: inline-block;
  text-decoration: none;
}
.cta-button:hover {
  background-color: #004d40;
}

/* FORM ALANI */
.form-section {
  max-width: 600px;
  margin: 60px auto;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 5px;
}
.form-group input {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

/* WHATSAPP */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-align: center;
  line-height: 60px;
  font-size: 30px;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
  z-index: 1000;
}
.whatsapp-float:hover {
  background-color: #1ebea5;
}

/* FOOTER */
footer {
  background-color: #111;
  color: #fff;
  padding: 40px 20px;
  font-size: 14px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.footer-contact {
  flex: 1 1 300px;
  margin-bottom: 20px;
}
.footer-links {
  flex: 1 1 200px;
  text-align: right;
}
.footer-links a {
  color: #ffcb05;
  text-decoration: none;
}
.footer-links a i {
  margin-right: 5px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .main-menu ul {
    flex-direction: column;
    gap: 10px;
    display: none;
    background: #000;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    padding: 20px;
    z-index: 999;
  }
  .main-menu ul.show {
    display: flex;
  }
  .menu-toggle {
    display: flex;
    flex-direction: column;
    cursor: pointer;
  }
  .menu-toggle span {
    background: #fff;
    height: 3px;
    width: 25px;
    margin: 4px 0;
  }
  .logo img {
    height: 30px;
  }
  .container {
    margin: 20px 10px;
    padding: 15px;
  }
  h1 {
    font-size: 28px;
  }
  h2 {
    font-size: 20px;
  }
  .hero h1 {
    font-size: 34px;
  }
  .hero ul {
    font-size: 18px;
  }
  .features-column {
    flex-direction: column;
    gap: 20px;
  }
  .feature-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .feature-box i {
    font-size: 28px;
    margin-bottom: 10px;
  }
}

/* ORTALANMIŞ AÇIKLAMA BLOĞU */
.centered-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px auto;
  padding: 0 20px;
}
.centered-content h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #111;
}
.centered-content p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #333;
}
.centered-content .cta-button {
  background-color: #00796b;
  color: #fff;
  border: none;
  padding: 14px 28px;
  font-size: 15px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
}
.centered-content .cta-button:hover {
  background-color: #004d40;
}
footer a {
  color: #FFD700; /* Altın sarısı */
  text-decoration: none;
}

footer a:hover {
  color: #e6c200; /* Biraz daha koyu sarı tonu */
  text-decoration: underline;
}

