.gkt-contact-info {
    max-width: 610px;
    font-family: inherit;
	margin-bottom: 30px;
}

.gkt-contact-title {
    margin: 0 0 18px;
    color: #000;
    font-size: 32px;
    line-height: 1.25;
    font-weight: 800;
}

.gkt-contact-desc {
    max-width: 590px;
    margin-bottom: 32px;
    color: #5d6675;
    font-size: 15.5px;
    line-height: 1.65;
    font-weight: 600;
}

.gkt-contact-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.gkt-contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 100px;
    padding: 20px 24px;
    background: #f6f7f9;
    border-radius: 20px;
}

.gkt-contact-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
}

.gkt-contact-icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    display: block;
    filter: brightness(0) saturate(100%) invert(19%) sepia(98%) saturate(4073%) hue-rotate(348deg) brightness(105%) contrast(108%);
}

.gkt-contact-label {
    margin-bottom: 5px;
    color: #a3a9b4;
    font-size: 13px;
    line-height: 1.3;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.gkt-contact-text {
    color: #000;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 800;
}

.gkt-contact-text p {
    margin: 0;
}

.gkt-contact-text a {
    color: #000;
    text-decoration: none;
}

.gkt-contact-text a:hover {
    color: #ff0f17;
}

@media (max-width: 767px) {
    .gkt-contact-title {
        font-size: 28px;
    }

    .gkt-contact-desc {
        font-size: 15px;
        margin-bottom: 24px;
    }

    .gkt-contact-item {
        padding: 18px;
        gap: 14px;
        border-radius: 18px;
    }

    .gkt-contact-icon {
        width: 56px;
        height: 56px;
        min-width: 56px;
    }

    .gkt-contact-text {
        font-size: 16px;
    }
}
/* form */
.gkt-cf7-form {
  max-width: 605px;
  padding: 28px 25px 63px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.gkt-cf7-form h3 {
  margin: 0 0 12px;
  color: #ff0f17;
  font-size: 28px;
  line-height: 1.25;
  font-weight: 800;
}

.gkt-cf7-desc {
  margin: 0 0 34px;
  color: #6f6f6f;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 700;
}

.gkt-cf7-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 20px;
}

.gkt-cf7-form label {
  display: block;
  margin-bottom: 20px;
  color: #3d4655;
  font-size: 15px;
  font-weight: 800;
}

.gkt-cf7-form input,
.gkt-cf7-form textarea {
 	    margin-top: 10px;
       background: #f6f7fa;
       font-weight: 700;
    padding: 20px 10px !important;
    border-radius: 10px !important;
}

.gkt-cf7-form textarea {
  min-height: 120px;
  padding-top: 12px;
  resize: vertical;
}

.gkt-cf7-form input::placeholder,
.gkt-cf7-form textarea::placeholder {
  color: #777;
  opacity: 1;
}

.gkt-cf7-form input:focus,
.gkt-cf7-form textarea:focus {
  outline: none;
  border-color: #ff0f17;
  background: #fff;
}

.gkt-cf7-form input[type="submit"] {
  height: 86px;
  margin-top: 14px;
  border: none;
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  cursor: pointer;
  text-transform: none;
	width: 100%;
}

.gkt-cf7-form input[type="submit"]:hover {
  background: #e60007;
}

.gkt-cf7-form .wpcf7-spinner {
  display: none;
}
.gkt .wpcf7 .wpcf7-form-control-wrap input {
	border-radius: 10px;
	padding: 20px 10px;
}
@media (max-width: 767px) {
  .gkt-cf7-form {
    padding: 25px 18px 40px;
  }

  .gkt-cf7-row {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 0;
  }

  .gkt-cf7-form h3 {
    font-size: 25px;
  }

  .gkt-cf7-form input[type="submit"] {
    height: 80px;
    font-size: 18px;
  }
}