.responseMessage8 {
  position: fixed;
  inset: 0;
  width: 100%;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: white;
  z-index: 1000;
  gap: 12px; /* space-y-3 (12px boşluq) */
}
.offline-page {
  position: relative;
  z-index: 1;
  background-color: #fff;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  flex-wrap: wrap-reverse;
  overflow: hidden;
}
.offline-right {
  width: 100%;
  padding: 50px 0;
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 400px;
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
}
.offline-right::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.8);
}
.offline-time {
  max-width: 380px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 3;
  display: flex;
  will-change: transform;
  transform: perspective(300px) rotateX(0deg) rotateY(0deg);
}
.time-card {
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  width: 120px;
  height: 120px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  display: flex;
  margin-right: 5px;
  margin-top: 5px;
  margin-left: 5px;
}
.time-card-time {
  font-size: 30px;
  line-height: 1;
  padding-bottom: 9px;
  color: #fff;
}
.time-card .text {
  font-size: 12px;
  line-height: 1;
  color: #fff;
  text-transform: uppercase;
}

.offline-left {
  max-width: 100%;
  min-height: fit-content;
  flex-direction: column;
  justify-content: space-between;
  flex-wrap: wrap;
  display: flex;
  padding-right: 15px;
  padding-left: 15px;
  padding-bottom: 15px;
  padding-top: 15px;
}
.offline-left .logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.offline-left .logo img {
  max-width: 210px;
  height: auto;
  margin: 0 auto;
  width: 100%;
}
.offline-left-text {
  padding: 20px 0;
  text-align: center;
}
.offline-left-text h3 {
  font-size: 28px;
  line-height: 1.5;
  color: #555;
  font-weight: bold;
  margin-bottom: 20px;
}
.offline-left-text p {
  font-size: 16px;
  line-height: 1.5;
  color: #505050;
}
.offline-left-text ul li {
  margin-bottom: 10px;
}
.offline-left-text ul li b {
  font-weight: bold;
  margin-right: 5px;
  font-size: 16px;
  color: #555;
}
.offline-left-text ul li a,
.offline-left-text ul li span {
  font-size: 14px;
}
.offline-left-text ul li a {
  color: #3dc513;
}
.contact100-form {
  width: 100%;
  margin: 20px 0;
}

.wrap-input100 {
  width: 100%;
  margin-bottom: 10px;
  position: relative;
  background-color: #fff;
  height: 50px;
  border: 2px solid #e6e6e6;
  border-radius: 5px;
}
.input100 {
  display: block;
  width: 100%;
  background: 0 0;
}
input.input100 {
  height: 100%;
  padding: 10px 22px;
}

.focus-input100 {
  position: absolute;
  display: block;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  top: -2px;
  left: -2px;
  pointer-events: none;
  border: 2px solid #57b846;
  border-radius: 5px;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-transform: scaleX(1.1) scaleY(1.2);
  -moz-transform: scaleX(1.1) scaleY(1.2);
  -ms-transform: scaleX(1.1) scaleY(1.2);
  -o-transform: scaleX(1.1) scaleY(1.2);
  transform: scaleX(1.1) scaleY(1.2);
}
.message-textarea {
  height: 100px;
}
.message {
  border: none;
  outline: none;
  resize: none;
  height: 100%;
  padding: 10px 22px;
}
.input100:focus + .focus-input100 {
  visibility: visible;
  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

.validate-input {
  position: relative;
}
.validate-input input {
  border: none;
  outline: none;
}
.send-email {
  margin-top: 10px;
}
.send-email button {
  border-radius: 5px;
  background: #57b846;
  width: 100%;
  height: 50px;
  font-size: 15px;
  line-height: 1.5;
  color: #fff;
  justify-content: center;
  align-items: center;
  display: flex;
  transition: all 0.4s;
  outline: none;
  border: none;
  cursor: pointer;
}
.social-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.social-list li a {
  border-radius: 50%;
  font-size: 18px;
  color: #fff;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
}
.social-list li a.facebook {
  background-color: #3b5998;
}
.social-list li a.instagram {
  background-color: #ee2a7b;
}
.social-list li a.youtube {
  background-color: #cd201f;
}

@media screen and (min-width: 992px) {
  .offline-left {
    max-width: 500px;
    min-height: 100vh;
  }
  .offline-left .logo img {
    margin: unset;
  }
  .offline-left .logo {
    justify-content: unset;
  }
  .offline-left-text {
    text-align: start;
  }

  .offline-right {
    width: calc(100% - 500px);
    min-height: 100vh;
  }
  .time-card-time {
    font-size: 40px;
  }
  .offline-page {
    align-items: stretch;
  }
  .time-card {
    width: 155px;
    margin-right: 10px;
    margin-top: 15px;
    margin-left: 10px;
    height: 155px;
  }
  .social-list {
    justify-content: flex-start;
  }
}
@media screen and (min-width: 1200px) {
  .offline-left {
    padding-right: 75px;
    padding-left: 75px;
    padding-bottom: 45px;
    padding-top: 45px;
    max-width: 600px;
  }
  .offline-right {
    width: calc(100% - 600px);
  }
}
