/* Temel Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.header {
  background: #000;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.nav .logo img {
  height: 50px;

}

.nav .menu {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav .menu li a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase; /* Menü başlıklarını büyük harf yapar */
  transition: 0.3s;
}

.nav .menu li a:hover {
  color: #f1c40f;
}

/* MOBILE MENU */
.menu-toggle {
  display: none;
  background: #fff;
  color: #000;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  font-weight: bold;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .nav .menu {
    display: none;
    flex-direction: column;
    background: #000;
    position: absolute;
    top: 70px;
    right: 0;
    width: 200px;
    padding: 20px;
  }
  .nav .menu.active {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
}


/* HERO SLIDER */
.hero {
  position: relative;
  width: 100%;
  height: 576px; /* Sabit yükseklik */
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
}

.slide.active {
  display: block;
}

.slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.slide-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 20px;
}

.slide-content h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.slide-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.slide-content .city {
  color: #f1c40f; /* Sarı renk */
  text-transform: uppercase; /* Büyük harf */
}

.slide-content .btn {
  display: inline-block;
  background: #fff;
  color: #000;
  padding: 10px 25px;
  text-decoration: none;
  margin-bottom: 15px;
  font-weight: bold;
}

.slide-content p {
  font-size: 16px;
}

/* Slider navigation */
.slider-nav {
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 3;
}

.slider-nav button {
  background: rgba(0,0,0,0.5);
  border: none;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
  padding: 5px 15px;
}



/* ACCOUNTS */
.accounts {
  background: #000;
  color: #fff;
  padding: 80px 0;
}
.accounts-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.account-card {
  background: #111;
  padding: 30px;
  border: 1px solid rgba(255,255,255,0.1);
}
.account-card.small {
  flex: 1 1 30%;
}
.account-row {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}
.account-card.large {
  flex: 1 1 48%;
}

/* SERVICES */
.services {
  padding: 80px 0;
  background: #f5f5f5;
}
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.service-card {
  flex: 1 1 23%;
  background: #fff;
  padding: 20px;
  text-align: center;
}
.service-card img {
  width: 100%;
  height: auto;
  margin-top: 15px;
}

/* BLOG */
.blog {
  padding: 80px 0;
}
.blog-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.blog-card {
  flex: 1 1 30%;
  background: #eee;
  padding: 20px;
}

/* FOOTER */
.footer {
  background: #000;
  color: #fff;
  padding: 50px 0 30px 0;
  font-size: 14px;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 30px;
}

.footer-col {
  flex: 1 1 200px;
}

.footer-col h4 {
  margin-bottom: 15px;
  font-size: 16px;
  color: #fff;
}

.footer-col ul {
  list-style: none;
  padding-left: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 15px;
}



/* BUTTON */
.btn {
  display: inline-block;
  background: #fff;
  color: #000;
  padding: 10px 20px;
  text-decoration: none;
  margin-top: 10px;
}
.btn-small {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 5px 10px;
  text-decoration: none;
  margin-top: 10px;
}
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  z-index: 1000;
  cursor: pointer;
  transition: transform 0.3s;
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* About Us Overlay */
.about-overlay {
  background-color: rgba(0, 0, 0, 0.85); /* siyah zemin */
  color: #fff; /* yazılar beyaz */
  padding: 80px 20px;
  text-align: center;
}

.about-overlay h2 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.about-overlay p {
  font-size: 1.2rem;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto 15px auto;
}

.business-form {
  display: flex;
  flex-direction: column;
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.business-form label {
  margin-top: 15px;
  font-weight: bold;
}

.business-form input,
.business-form textarea {
  margin-top: 5px;
  padding: 10px;
  border: none;
  border-radius: 5px;
}

.business-form button.btn {
  margin-top: 20px;
  width: 150px;
  align-self: center;
}

