@import url('https://fonts.googleapis.com/css2?family=Special+Gothic+Expanded+One&display=swap');

* {
  box-sizing: border-box;
}


img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Genel ayarlar */
body, html {
  margin: 0;
  padding: 0;
    font-family: "Special Gothic Expanded One", sans-serif;
  height: 100%;
}

/* Ana yapı - ikiye bölünmüş ekran */
.split-container {
  display: flex;
  flex-direction: row;
  height: 100vh;
}

/* Sol taraf - görsel alanı */
.left-image {
  flex: 5; /* %80 */
  background-color: #000;
  overflow: hidden;
}

.left-image img {
  width: 100%;
  height: 100%;
  object-fit: inherit;
}

/* Sağ taraf - form alanı */
.right-form {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  padding: 60px;
  background-color: #0b1118;
  color: #fff;
}

/* Form kutusu */
.form-box {
  background: none;
  box-shadow: none;
  padding: 0;
  width: 100%;
  max-width: 360px;
}

/* Başlık ve açıklama */
.form-box h2 {
  font-size: 28px;
  color: #f9c105;
  margin-bottom: 5px;
  text-align: center;
}

.form-box h3 {
  font-size: 20px;
  color: #fff;
  margin-bottom: 30px;
  text-align: center;
}

.form-box h4 {
  font-size: 16px;
  color: #fff;
  margin-bottom: 30px;
}

.form-box p {
  font-size: 16px;
  margin-bottom: 30px;
}

/* Form alanları */
.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #f9c105;
  font-weight: 500;
  text-align: center;
}

input,
textarea {
  width: 100%;
  border: none;
  border-bottom: 2px solid #f9c105;
  background-color: transparent;
  color: #fff;
  padding: 10px 5px;
  font-size: 16px;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

input::placeholder,
textarea::placeholder {
  color: #bbb;
  opacity: 1;
}

input:focus,
textarea:focus {
  outline: none;
  border-bottom: 2px solid #ffe083;
  background-color: transparent;
}

/* Checkboxlar */
.checkbox label {
  color: #ccc;
  font-size: 14px;
  display: block;
  margin-bottom: 10px;
}

.checkbox a {
  color: #f9c105;
  text-decoration: underline;
}

/* Gönder butonu */
button {
  background-color: #f9c105;
  color: #000;
  font-weight: bold;
  border: none;
  padding: 14px;
  width: 100%;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #ffe083;
}

/* Başarı mesajı */
.alert-message {
  margin-top: 20px;
  display: none;
  padding: 12px;
  border-radius: 6px;
  background-color: #d4edda;
  color: #155724;
  text-align: center;
}

/* Telefon numarası */
.phone-number {
  margin-top: 25px;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
}

/* Responsive yapı */
@media (max-width: 768px) {
  .split-container {
    flex-direction: column;
  }

  .left-image,
  .right-form {
    flex: none;
    width: 100%;
    height: auto;
  }

  .left-image img {
    height: 250px;
  }

  .form-box {
    padding: 20px;
  }
}

/* ——————————————————————————— */
/* reCAPTCHA */
/* ——————————————————————————— */
.grecaptcha-badge {
  transform: translateX(-75%);
  transform-origin: left center;
  transition: all .5s ease-in-out!important;
  bottom: 10px !important;
  left: 5px !important;
  z-index: 1000;
}

.grecaptcha-badge:hover {
  transition: all .5s ease-in-out!important;
  transform: translateX(0);
}

@media (max-width: 768px) {
  html, body {
    padding: 0;
    margin: 0;
    background-color: #0b1118; /* tüm mobil arka plan koyu */
  }

  .split-container {
    flex-direction: column;
    width: 100%;
  }

  .left-image {
    width: 100%;
    height: auto;
  }

  .left-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
  }

  .right-form {
    width: 100%;
    padding: 20px;
    background-color: #0b1118;
  }

  .form-box {
    width: 100%;
    max-width: 100%;
    padding: 0;
    background-color: transparent;
    box-shadow: none;
  }

  .form-box h2,
  .form-box p {
    text-align: center;
  }

  .form-group,
  input,
  textarea,
  button {
    font-size: 16px;
  }
  .left-image {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0;
  display: block;
}

.left-image img {
  width: 100vw; /* ekran genişliğini kapla */
  height: auto;
  display: block;
  object-fit: cover;
  max-width: 100%;
  margin: 0;
  padding: 0;
}
}