* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  margin: 0;
  padding: 0;
}
body {
  background-color: #051d40;
  color: white;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  position: relative;
  font-family: "Montserrat", sans-serif;
  overflow-x: hidden;
}

.phone-image {
  position: absolute;
  top: 0;
  right: 0;
  height: 110vh;
  opacity: 0.4;
  z-index: 1;
  object-fit: cover;
  clip-path: inset(0 50% 0 0);
  transform: translateX(50%);
}
@keyframes slideInFromRight {
  0% {
    opacity: 0;
    transform: translateX(150%);
  }
  100% {
    opacity: 0.8;
    transform: translateX(50%);
  }
}

.animate-slide-in {
  animation: slideInFromRight 1.2s ease-out forwards;
}

.navbar {
  background-color: rgba(255, 255, 255, 0.3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  margin: 20px 20px 0 20px;

  border-radius: 10px;
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 2;
}

.navbar-left {
  display: flex;
  align-items: center;
}
.navbar-right a {
  margin-left: 10px;
  color: white;
  border: 2px solid white;
  padding: 6px;
  border-radius: 5px;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  text-decoration: none;
  transition: background 0.3s;
}
.navbar-right a:hover {
  background-color: white;
  color: #0d2a55;
}
.logo {
  height: 30px;
  margin-right: 10px;
}
.brand {
  font-weight: bold;
  font-size: 24px;
  color: white;
}

.navbar-center a {
  color: white;
  text-decoration: none;
  margin: 0 12px;
  position: relative;
  font-size: 20px;
}
.navbar-center a:hover::after,
.navbar-center a.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: white;
}

.navbar-right a {
  margin-left: 10px;
}
.icon {
  height: 22px;
  width: 22px;
  border: 2px solid white;
  padding: 4px;
  border-radius: 4px;
}
.hero {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 60px;
  position: relative;
  z-index: 2;
  gap: 20px;
}

.hero-left {
  flex: 1;
  margin-top: 0;
}

.hero-logo {
  max-width: 500px;
  width: 100%;
  height: auto;
  display: block;
  vertical-align: top;
}
@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.animate-in {
  animation: fadeInScale 1s ease-out forwards;
}

.hero-right {
  flex: 1;
  text-align: left;
  margin-top: 150px;
  padding-left: 20px;
}

.hero-text {
  font-size: 24px;
  font-weight: 500;
  color: white;
  line-height: 1.5;

  margin-bottom: 50px;
}
.store-buttons {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.store-button {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: white;
  color: #051d40;
  padding: 12px 16px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s;
}

.store-button:hover {
  transform: scale(1.05);
}

.store-button i {
  font-size: 24px;
}
.store-button::after {
  content: attr(data-tooltip);
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffffff;
  color: #051d40;
  padding: 6px 10px;
  font-size: 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}
.store-button:hover::after {
  opacity: 1;
}
/*respnsive tablet*/
@media (max-width: 768px) {
  /* Navbar düzenlemeleri */
  .navbar {
    flex-wrap: wrap;
    padding: 10px 20px;
    margin: 10px;
  }
  .navbar-left {
    flex: 1 1 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 12px;
  }
  .navbar-center {
    flex: 1 1 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 12px;
  }
  .navbar-center a {
    font-size: 18px;
    margin: 6px;
  }
  .navbar-right {
    flex: 1 1 100%;
    display: flex;
    justify-content: center;
    margin-top: 6px;
  }
  .navbar-right a {
    width: 28px;
    height: 28px;
    padding: 4px;
    font-size: 16px;
  }

  .hero {
    flex-direction: column;
    align-items: center;
    padding: 20px;
    gap: 0;
  }
  .hero-left,
  .hero-right {
    width: 100%;
    margin: 0;
    text-align: center;
  }
  .hero-left .hero-logo {
    max-width: 80%;
    margin: 0 auto 20px auto;
  }
  .hero-right {
    margin-top: 20px;
    padding: 0 10px;
  }
  .hero-text {
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 30px;
  }

  .store-buttons {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
  .store-button {
    width: 180px;
    padding: 10px 12px;
    font-size: 13px;
  }
  .store-button i {
    font-size: 20px;
  }

  .phone-image {
    display: none;
  }
}

/* RESPONSIVE mobil*/

@media (max-width: 480px) {
  .navbar {
    flex-direction: column;
    align-items: center;
    padding: 8px 12px;
    margin: 8px;
  }
  .navbar-left {
    margin-bottom: 8px;
  }
  .navbar-left .logo {
    height: 24px;
  }
  .brand {
    font-size: 20px;
  }
  .navbar-center {
    gap: 6px;
  }
  .navbar-center a {
    font-size: 16px;
    margin: 4px;
  }
  .navbar-right a {
    width: 24px;
    height: 24px;
    padding: 3px;
  }

  .hero {
    padding: 12px;
  }
  .hero-left .hero-logo {
    max-width: 70%;
    margin-bottom: 16px;
  }
  .hero-text {
    font-size: 18px;
    line-height: 1.3;
    margin-bottom: 20px;
  }

  .store-buttons {
    gap: 8px;
  }
  .store-button {
    width: 160px;
    padding: 8px 10px;
    font-size: 12px;
  }
  .store-button i {
    font-size: 18px;
  }

  .phone-image {
    display: none;
  }
}
@media (max-width: 1126px) and (min-width: 769px) {
  /* Tam satırda tutmak için wrap’i kapatıyoruz */
  .navbar {
    flex-wrap: nowrap !important;
    white-space: nowrap;
    padding: 8px 12px;
    margin: 10px;
    justify-content: space-between;
  }
  /* Logo ve marka küçült */
  .navbar-left .logo {
    height: 32px;
  }
  .brand {
    font-size: 30px;
  }
  /* Ortadaki link konteynerini tek satıra zorla */
  .navbar-center {
    display: flex;
    flex: 1 1 auto;
    justify-content: center;
    white-space: nowrap;
    overflow: hidden;
  }
  .navbar-center a {
    font-size: 14px;
    margin: 0 5px;
    white-space: nowrap;
  }
  /* Sağdaki ikonları biraz daha ufalt */
  .navbar-right {
    display: flex;
    align-items: center;
    white-space: nowrap;
  }
  .navbar-right a {
    width: 28px;
    height: 28px;
    padding: 3px;
    margin-left: 6px;
  }
}

/*hakkimizda sayfasi*/
.about-section {
  background-color: #051d40;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px 0px 100px;
  position: relative;
  min-height: 100vh;
  z-index: 2;
  text-align: center;
}

.about-phone {
  position: fixed;
  top: 0;
  left: 0;
  height: 110vh;
  opacity: 0.35;
  z-index: 0;
  object-fit: cover;
  transform: none;
  animation: aboutPhoneFromLeft 0.7s ease-out forwards;
}
@keyframes aboutPhoneFromLeft {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  100% {
    opacity: 0.35;
    transform: translateX(0);
  }
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  z-index: 2;
}

.about-title {
  font-size: 32px;
  color: white;
  margin-bottom: 30px;
  font-weight: 600;
}

.about-text {
  color: white;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 24px;
}

.page-slide-from-left {
  opacity: 0;
  transform: translateX(-100%);
  animation: slideFromLeftToCenter 0.7s ease-out forwards;
}

@keyframes slideFromLeftToCenter {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/*nasil kullanilir sayfasi*/

.steps-section {
  padding: 60px 20px 0px 20px;
  text-align: center;
}

.steps-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
}

.steps-divider {
  width: 85%;
  height: 4px;
  margin: 0 auto 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border: none;
}

.steps-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px auto;
  max-width: 1200px;
  position: relative;
}

.steps-arrow {
  background-color: #f2f2f2;
  border: none;
  border-radius: 50%;
  font-size: 24px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  color: #051d40;
  font-weight: bold;
  z-index: 10;
}

.steps-wrapper {
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.steps-slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: fit-content;
}

.step-box {
  flex: 0 0 33.33%;
  box-sizing: border-box;
  padding: 20px;
  background: #f2f2f2;
  margin: 0 10px;
  border-radius: 20px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #051d40;
}

.step-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #051d40;
}

.step-box img {
  width: 100%;
  max-width: 180px;
  height: 200px;
  object-fit: contain;
  margin-bottom: 10px;
}

.step-box.dummy {
  flex: 0 0 calc(100% / 3);
  background: transparent;
  visibility: hidden;
}
/* Bize Ulaşın sayfası */

.contact-section {
  padding: 60px 20px 0px 20px;
  background-color: #051d40;
  color: white;
}

.contact-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.contact-box {
  flex: 1;
  min-width: 300px;
}

.contact-intro {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 16px 20px;
  border-radius: 12px;
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 1.6;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  color: #051d40;
}

.contact-form textarea {
  resize: vertical;
}

.submit-button {
  background-color: #7a5ef8;
  color: white;
  border: none;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  width: fit-content;
}

.image-box {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  padding-top: 0px;
}

.image-box img {
  width: 100%;
  max-width: 480px;
  transform: translateY(-170px) translateX(20px);
}
/*footer*/
.footer {
  background-color: #051d40;
  color: #fff;
  padding: 40px 20px 20px;
  font-family: "Montserrat", sans-serif;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 10px;
}
